From bb4c5af86ce53699d64119cf2b008f7d6053ae51 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 26 Oct 2025 13:57:08 +0000 Subject: 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. --- Scripts/.local/scripts/spawn_everything | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 Scripts/.local/scripts/spawn_everything (limited to 'Scripts/.local/scripts/spawn_everything') 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 -- cgit v1.2.3-13-gbd6f