diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-12-23 17:25:53 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-12-23 17:25:53 +0100 |
commit | 71bbe1752e1b22ec177a0634866f0c38022606c0 (patch) | |
tree | 37712b234156342bd7804c5dd400b54c8a87c4cf | |
parent | be2f1f75711db065630598390decea56ac7d316e (diff) |
forgor to remove debug return from `mode`
-rwxr-xr-x | .local/share/bin/mode | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.local/share/bin/mode b/.local/share/bin/mode index 5e49f82..60683b6 100755 --- a/.local/share/bin/mode +++ b/.local/share/bin/mode @@ -297,10 +297,9 @@ reload_gtk() { # reloading, and i don't like having it running constantly because it fucks # up fcitx5 and xbindkeys ( - xfsettingsd & - PID=$! + fork xfsettingsd sleep 1 - kill $PID + killall xfsettingsd ) } @@ -332,7 +331,6 @@ reload_apps() { reload_polybar reload_dunst - return reload_terms reload_fcitx5 reload_gtk |