From b97c40d41caa802474b9a807849fed9387f61b56 Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 31 Jul 2018 15:07:25 -0500 Subject: [PATCH] wmstartup: Look in the right places for rc scripts Whups --- .config/dtfscripts/wmstartup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/dtfscripts/wmstartup.sh b/.config/dtfscripts/wmstartup.sh index 8e5e0c6b..5024fc30 100755 --- a/.config/dtfscripts/wmstartup.sh +++ b/.config/dtfscripts/wmstartup.sh @@ -31,9 +31,9 @@ if [[ "$PATH" != "*$HOME/.local/bin*" ]]; then fi ## Load device-specific scripts -if [[ -x ".config/bspwm/$(hostname).rc" ]]; then - printf "[INFO] Sourcing .config/bspwm/$(hostname).rc\n" - source .config/bspwm/$(hostname).rc +if [[ -x ".config/dtfscripts/$(hostname).rc" ]]; then + printf "[INFO] Sourcing .config/dtfscripts/$(hostname).rc\n" + source .config/dtfscripts/$(hostname).rc fi printf "[INFO] Performing simple configuration\n"