diff --git a/g13/planet-coaster.bind b/g13/planet-coaster.bind index 9c394e9..07dc8de 100644 --- a/g13/planet-coaster.bind +++ b/g13/planet-coaster.bind @@ -16,4 +16,18 @@ bind G12 KEY_D bind G3 KEY_Q bind G5 KEY_E +# Pause +bind G22 KEY_P + +# Path Length +bind M3 KEY_MINUS +bind MR KEY_EQUAL +# Path Width +bind M1 KEY_LEFTBRACE +bind M2 KEY_RIGHTBRACE + +# History +bind G1 KEY_LEFTCTRL+KEY_Z +bing G2 KEY_LEFTCTRL+KEY_Y + rgb 0 120 181 diff --git a/scripts/i3wm-for-window-gen.sh b/scripts/i3wm-for-window-gen.sh new file mode 100644 index 0000000..5a743ac --- /dev/null +++ b/scripts/i3wm-for-window-gen.sh @@ -0,0 +1,8 @@ +#! /bin/bash + +# A script to make creating i3wm window actions easier. + +info=$(xprop) +title=$(echo "$info" | grep "WM_NAME(STRING)" | cut -d "\"" -f2 | cut -d "\"" -f1) +class=$(echo "$info" | grep "WM_CLASS(STRING)" | cut -d "\"" -f2 | cut -d "\"" -f1) +echo for_window [class=\"$class\" title=\"$title\"]