diff --git a/src/configuration.md b/src/configuration.md new file mode 100644 index 0000000..249fd0a --- /dev/null +++ b/src/configuration.md @@ -0,0 +1,203 @@ +# Configuration + +This document contains some popular settings that you may wish to adopt. + +## General + +### Enable Dropshadows + +``` + + yes + +``` + +### Enable automatic window placement policy + +``` + + automatic + +``` + +## Window Switcher + +### Show windows regardless of what workspace they are on + +``` + + yes + +``` + +## Keybinds + +### Unbind alt + arrow + +...because they interfere with brower forward/backward binds + +``` + + + + +``` + +### Lock Session + +``` + +``` + +### Bind Super to a Menu + +Supported since `0.7.3` + +``` + + + +``` + +### Take Screenshot + +``` + + + sh -c 'grim -g "$(slurp)"' + + +``` + +### Screen Record + +``` + + +``` + +### Alt-Tab Backwards + +``` + +``` + +### MoveToEdge, ShrinkToEdge and GrowToEdge + +``` + + + + + + + + + + + + + + + + + + + + + + + + +``` + +### SnapToEdge + +``` + + + + + + + + + + + + +``` + +## Mousebinds + +### Unfosus all windows when clicking on desktop + +This relates to `Desktop` in the sense of a layer-shell client such as `swaybg` +which does not receive mouse-events. + +Note: Clients such as `xfdesktop` and `pcmanfm --desktop` behave like this +anyway. + +``` + + + + + +``` + +### Directional maximize + +``` + + + + + + + + + + + + + + + + + + + + +``` + +### Magnification + +Supported since `0.7.3` + +``` + + + + + + + + +``` + +### Switch workspace with super + scroll + +Supported since `0.7.3` + +``` + + + + + + + + +``` + diff --git a/src/more.md b/src/more.md index dff14d0..916edc0 100644 --- a/src/more.md +++ b/src/more.md @@ -1,3 +1,4 @@ +- [configuration](configuration.html) - [troubleshooting](troubleshooting.html) - [tips and tricks](tips-and-tricks.html) - [hidpi scaling](hidpi-scaling.html)