diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-26 13:57:08 +0000 |
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-26 13:57:08 +0000 |
| commit | bb4c5af86ce53699d64119cf2b008f7d6053ae51 (patch) | |
| tree | 9fa99f72ee8820219121ae3b70402bd7ec864dc0 /Scripts/.local/scripts/spawn_everything | |
| parent | 56afe2e109c8d2228c00f9b14882cb53381b60c0 (diff) | |
| download | dotfiles-bb4c5af86ce53699d64119cf2b008f7d6053ae51.tar.gz dotfiles-bb4c5af86ce53699d64119cf2b008f7d6053ae51.tar.bz2 dotfiles-bb4c5af86ce53699d64119cf2b008f7d6053ae51.zip | |
Two new scripts with bindings in sxhkd
browser: open http://loopback via xdg-open (allows us to abstract away
details and reuse the script)
spawn_everything: launch all the stuff I require for my full desktop
experience on boot.
Diffstat (limited to 'Scripts/.local/scripts/spawn_everything')
| -rwxr-xr-x | Scripts/.local/scripts/spawn_everything | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Scripts/.local/scripts/spawn_everything b/Scripts/.local/scripts/spawn_everything new file mode 100755 index 0000000..19d97cd --- /dev/null +++ b/Scripts/.local/scripts/spawn_everything @@ -0,0 +1,13 @@ +#!/usr/bin/env sh + +processes="st btop +emacsclient -c -a emacs +$HOME/.local/scripts/browser +steam +spotify" + + +printf '%s\n' "$processes" | \ + while IFS= read -r proc; do + $proc & disown + done |
