diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-01-22 18:18:32 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-01-22 18:18:32 +0100 |
commit | db653634b7ab2efb3f927a35d5066af158e3a2a6 (patch) | |
tree | fa9d01157f78276e0136c74b5c3b8147b3209117 | |
parent | 8e29239737c41e5260007a0925c7f448e1466787 (diff) |
add super+alt+p for panic
-rw-r--r-- | .config/xbindkeys/main##template | 2 | ||||
-rwxr-xr-x | .local/share/bin/panic | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.config/xbindkeys/main##template b/.config/xbindkeys/main##template index 85136c1..abb427c 100644 --- a/.config/xbindkeys/main##template +++ b/.config/xbindkeys/main##template @@ -10,6 +10,8 @@ Mod4 + Return "st -T '[floating]'" Mod4 + Mod1 + Return +"panic" + Mod4 + Mod1 + p "bwmenu" Mod4 + p "maim -usb 4 -c 0,0,0 | xclip -selection clipboard -t image/png" diff --git a/.local/share/bin/panic b/.local/share/bin/panic new file mode 100755 index 0000000..e2451a6 --- /dev/null +++ b/.local/share/bin/panic @@ -0,0 +1,5 @@ +#!/bin/sh +i3-msg focus output primary > /dev/null +i3-msg workspace 'panic1' > /dev/null +i3-msg focus output right > /dev/null +i3-msg workspace 'panic2' > /dev/null |