From f041e90d7561ee98f0247d6c2e7ad309e1da0ab1 Mon Sep 17 00:00:00 2001 From: Christophe Robillard Date: Tue, 18 Feb 2025 19:44:46 +0100 Subject: [PATCH] [sway] add user config file --- sway/config | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 sway/config diff --git a/sway/config b/sway/config new file mode 100644 index 0000000..d54518c --- /dev/null +++ b/sway/config @@ -0,0 +1,34 @@ +# 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/theme.conf + +# user theme variable can override the global theme +include $HOME/.config/sway/definitions.d/theme.conf + +# global variables +include /etc/sway/definitions + +# user variables can override global definitions +include $HOME/.config/sway/definitions.d/*.conf + +include /etc/sway/inputs/* + +# enable modes +include /etc/sway/modes/* + +# only enable this if every app you use is compatible with wayland +# xwayland disable + +# include additional configs e.g. to autostart applications +include /etc/sway/config.d/* + +# user config +include $HOME/.config/sway/config.d/*.conf