From 8c1ecff38afe44dc3abbc340ae10e94e83f106ea Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sat, 24 Dec 2022 16:09:15 -0500 Subject: [PATCH] Differentiate between host-specific startup progs and profiles Mainly, that startup progs are programs/commands that need to be run when starting a window manager, whereas profiles are generally sourced at login time (including over ssh or tty) and don't necessarily have anything to do with starting window managers. --- .config/chaman.profile => .local/bin/chaman/startup | 0 .local/bin/startup-progs | 4 ++++ 2 files changed, 4 insertions(+) rename .config/chaman.profile => .local/bin/chaman/startup (100%) diff --git a/.config/chaman.profile b/.local/bin/chaman/startup similarity index 100% rename from .config/chaman.profile rename to .local/bin/chaman/startup diff --git a/.local/bin/startup-progs b/.local/bin/startup-progs index cc641bf..2040de2 100755 --- a/.local/bin/startup-progs +++ b/.local/bin/startup-progs @@ -3,6 +3,10 @@ resources="$HOME/.Xresources $HOME/.Xresources.d/$(hostname)" for res in $resources; do [ -f "$res" ] && xrdb -merge "$res"; done +if [ -f "$HOME/.local/bin/$(hostname)/startup" ]; then + . "$HOME/.local/bin/$(hostname)/startup" +fi + xsetroot -cursor_name left_ptr xset r rate 200 45 xset b off -- 2.20.1