Files
dotfiles/Scripts/.local/scripts/spawn_everything
Aryadev Chavali bb4c5af86c 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.
2025-10-26 13:57:08 +00:00

14 lines
203 B
Bash
Executable File

#!/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