Compare commits

...

3 Commits

2 changed files with 12 additions and 1 deletions

View File

@ -1,2 +1,8 @@
Simple bash scripts I have in `/usr/local/bin` that may be trivial to recreate,
but why reinvent the wheel
but why reinvent the wheel.
## Does this make sense for Flatpaks?
```bash
tail -n +1 /var/lib/flatpak/exports/bin/*
```

5
bash/usr-local-bin/codium Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -x
flatpak run com.vscodium.codium --no-sandbox --new-window $@
set +x