.config/sway/config
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# Default config for sway # # Copy this to ~/.config/sway/config and edit it to your liking. # # Read `man 5 sway` for a complete reference. # styles - set the folder for your theme definition file set $theme /usr/share/sway/themes/matcha-green # theme variables include $theme/definitions # global variables include $HOME/.config/sway/definitions # user variables include $HOME/.config/sway/definitions.d/*.conf include $HOME/.config/sway/inputs/* include $HOME/.config/sway/outputs/* # enable modes include $HOME/.config/sway/modes/* # only enable this if every app you use is compatible with wayland # xwayland disable # user config include $HOME/.config/sway/config.d/*.conf # TODO: customize lockscreen set $lockscreen swaylock -c 000000 bindsym $mod+q exec $lockscreen # disables monitor going to sleep if window fullscreen for_window [app_id=".*"] inhibit_idle fullscreen |