diff options
| author | navewindre <boneyaard@gmail.com> | 2025-07-28 00:06:11 +0200 |
|---|---|---|
| committer | navewindre <boneyaard@gmail.com> | 2025-07-28 00:06:11 +0200 |
| commit | f1d39a663cab14dee36efe1117df49c63afff19c (patch) | |
| tree | ff74ed4a638dc652848719b4d24dc268f5737ceb | |
| parent | 63426e5c6afdd4a5c38dc740afe7a7c59e2ced36 (diff) | |
a
| -rw-r--r-- | home/.Xresources | 13 | ||||
| -rwxr-xr-x | home/.projector_off | 4 | ||||
| -rwxr-xr-x | home/.projector_on | 6 |
3 files changed, 15 insertions, 8 deletions
diff --git a/home/.Xresources b/home/.Xresources index 26fc791..d09b0f9 100644 --- a/home/.Xresources +++ b/home/.Xresources @@ -42,10 +42,10 @@ URxvt.scrollBar: false URxvt.depth: 32 URxvt.urgentOnBell: true URxvt.Iso14755: false -URxvt.keysym.Shift-Up: command:\033]720;1\007 -URxvt.keysym.Shift-Down: command:\033]721;1\007 -URxvt.keysym.Control-Up: \033[1;5A -URxvt.keysym.Control-Down: \033[1;5B +URxvt.keysym.Control-Up: command:\033]720;1\007 +URxvt.keysym.Control-Down: command:\033]721;1\007 +// URxvt.keysym.Control-Up: \033[1;5A +// URxvt.keysym.Control-Down: \033[1;5B URxvt.keysym.Control-Right: \033[1;5C URxvt.keysym.Control-Left: \033[1;5D URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select @@ -63,4 +63,7 @@ URxvt.urlLauncher: firefox URxvt.underlineURLs: true URxvt.urlButton: 1 URxvt.geometry: 84x24 -URXvt.inputMethod: ibus +URxvt*keysym.Shift-Up: \033[1;2A +URxvt*keysym.Shift-Down: \033[1;2B +URxvt*keysym.Shift-Left: \033[1;2D +URxvt*keysym.Shift-Right: \033[1;2CURXvt.inputMethod: ibus diff --git a/home/.projector_off b/home/.projector_off index f1e72f7..bfcd926 100755 --- a/home/.projector_off +++ b/home/.projector_off @@ -1,7 +1,9 @@ #!/bin/sh -killall spacefm +pkill -9 -f spacefm screen -d -m "$HOME/.config/openbox/spacefm" xrandr --output DP-2 --off +pkill -9 -f xfce4-panel +screen -d -m xfce4-panel diff --git a/home/.projector_on b/home/.projector_on index 2f2cd12..535e016 100755 --- a/home/.projector_on +++ b/home/.projector_on @@ -7,6 +7,9 @@ if [ ! -d "$HOME/Pictures/Wall" ]; then exit 1 fi +pkill -9 -f xfce4-panel +screen -d -m xfce4-panel + while IFS= read -r file; do if [ -n "$files_string" ]; then files_string+=" " @@ -20,10 +23,9 @@ sorted_file_list=$(printf "%s " "${sorted_files[@]}") echo $sorted_file_list -killall spacefm +pkill -9 -f spacefm screen -d -m "$HOME/.config/openbox/spacefm" - sleep 1 feh --bg-fill $sorted_file_list |
