#Sway Help

2 messages · Page 1 of 1 (latest)

fossil fulcrum
#

Hello. I recently installed Ubuntu Sway on my computer. Here is the /home/user/.config/sway/config:

#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.

# Styles
set $theme /usr/share/themes/yaru-sway

# theme variables
include $theme/variables

# Global variables
include /etc/sway/variables

# User variables
include $HOME/.config/sway/variables.d/*.conf

include /etc/sway/outputs/*.conf
include /etc/sway/inputs/*.conf

# include modes
include /etc/sway/modes/*.conf

# Additional configs
include /etc/sway/config.d/*.conf

# User config
include $HOME/.config/sway/config.d/*.conf

# Include nwg-displays config's (if exists)
include ~/.config/sway/outputs
include ~/.config/sway/workspaces
include pointer
include touchpad```
Notice the `# User config` part. This is where they want me to put my custom settings. So, I created a new file `/home/user/.config/sway/config.d/custom_config.conf` with the following two lines:
```set $term xfce4-terminal
set $mod Mod1```
And I reloaded Sway with `mod+R+Shift`, but nothing happened. It's still the same, as if I didn't just try to add my own custom config. What am I doing wrong?
#

In other words, why is it not reading my config?