-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
86 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,53 @@ | ||
super + {h,j,k,l} | ||
./waitron window_move {-20 0, 0 20, 0 -20, 20 0} | ||
waitron window_move {-20 0, 0 20, 0 -20, 20 0} | ||
|
||
super + alt + {h,j,k,l} | ||
./waitron window_resize {-20 0, 0 20, 0 -20, 20 0} | ||
waitron window_resize {-20 0, 0 20, 0 -20, 20 0} | ||
|
||
super + shift + {h,j,k,l} | ||
./waitron window_move {-50 0, 0 50, 0 -50, 50 0} | ||
waitron window_move {-50 0, 0 50, 0 -50, 50 0} | ||
|
||
super + shift + alt + {h,j,k,l} | ||
./waitron window_resize {-50 0, 0 50, 0 -50, 50 0} | ||
waitron window_resize {-50 0, 0 50, 0 -50, 50 0} | ||
|
||
super + ctrl {h,j,k,l} | ||
./waitron window_cardinal_focus {left,down,up,right} | ||
alt + {h,j,k,l} | ||
waitron window_cardinal_focus {left,down,up,right} | ||
|
||
super + alt + Escape | ||
./waitron wm_quit 0 | ||
waitron wm_quit 0 | ||
|
||
super + f | ||
./waitron window_maximize | ||
waitron window_maximize | ||
|
||
super + w | ||
./waitron window_close | ||
waitron window_close | ||
|
||
super + b | ||
./waitron window_hor_maximize | ||
waitron window_hor_maximize | ||
|
||
super + v | ||
./waitron window_ver_maximize | ||
waitron window_ver_maximize | ||
|
||
super + m | ||
./waitron window_monocle | ||
waitron window_monocle | ||
|
||
alt + Tab | ||
./waitron window_cycle | ||
waitron window_cycle | ||
|
||
alt + shift + Tab | ||
./waitron window_rev_cycle | ||
waitron window_rev_cycle | ||
|
||
super + {_,shift +}{1-4} | ||
./waitron {group_toggle,group_add_window} {1-4} | ||
super + {_,shift +}{1-10} | ||
waitron {group_toggle,group_add_window} {1-10} | ||
|
||
super + ctrl + r | ||
./waitron group_remove_window | ||
waitron group_remove_window | ||
|
||
super + alt + ctrl + {1-4} | ||
./waitron group_remove_all_windows {1-4} | ||
waitron group_remove_all_windows {1-4} | ||
|
||
super + Return | ||
urxvt | ||
|
||
super + {Insert,Prior,Delete,Next,End} | ||
./waitron window_snap {topleft,topright,bottomleft,bottomright,middle} | ||
|
||
super + {_,alt +}t | ||
./waitron mouse_toggle {move,resize} | ||
waitron window_snap {topleft,topright,bottomleft,bottomright,middle} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#!/bin/sh | ||
|
||
./waitron wm_config border_width 5 | ||
./waitron wm_config color_focused 0x97a293 | ||
./waitron wm_config color_unfocused 0x393638 | ||
./waitron wm_config gap_width all 20 | ||
./waitron wm_config cursor_position middle | ||
./waitron wm_config groups_nr 4 | ||
./waitron wm_config enable_sloppy_focus true | ||
./waitron wm_config sticky_windows false | ||
./waitron wm_config enable_borders true | ||
waitron wm_config border_width 5 | ||
waitron wm_config color_focused 0x97a293 | ||
waitron wm_config color_unfocused 0x393638 | ||
waitron wm_config gap_width all 0 | ||
waitron wm_config grid_gap_width 0 | ||
waitron wm_config cursor_position middle | ||
waitron wm_config groups_nr 10 | ||
waitron wm_config enable_sloppy_focus true | ||
waitron wm_config sticky_windows false | ||
waitron wm_config enable_borders true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
#!/bin/sh | ||
|
||
cleanup() { | ||
rm windowchefrc sxhkdrc | ||
exit 0 | ||
} | ||
|
||
trap 'cleanup' INT | ||
|
||
D=${D:-80} | ||
|
||
Xephyr -screen 1280x720 :$D& | ||
sleep 1 | ||
|
||
export DISPLAY=:$D | ||
sxhkd -c examples/sxhkdrc & | ||
exec ./windowchef -c examples/windowchefrc | ||
cp examples/sxhkdrc sxhkdrc | ||
cp examples/windowchefrc windowchefrc | ||
sed -i 's/waitron/.\/waitron/g' sxhkdrc windowchefrc | ||
sxhkd -c sxhkdrc & | ||
./windowchef -c examples/windowchefrc |