31 lines
		
	
	
		
			805 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			805 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
### Input configuration
 | 
						|
#
 | 
						|
# Example configuration:
 | 
						|
# You can get the names of your inputs by running: swaymsg -t get_inputs
 | 
						|
# Put your touchpad's ID to replace "Touchpad-ID" (keep the quotation marks)
 | 
						|
 | 
						|
input type:touchpad {
 | 
						|
    dwt enabled
 | 
						|
    tap enabled
 | 
						|
    natural_scroll enabled
 | 
						|
}
 | 
						|
 | 
						|
# Read `man 5 sway-input` for more information about this section.
 | 
						|
#
 | 
						|
#input type:keyboard xkb_layout "us"
 | 
						|
input * {
 | 
						|
    xkb_layout "us"
 | 
						|
    # xkb_variant "colemak_dh"
 | 
						|
    # xkb_options "ctrl:nocaps"
 | 
						|
}
 | 
						|
 | 
						|
input type:keyboard {
 | 
						|
   repeat_rate 40
 | 
						|
   repeat_delay 175 
 | 
						|
}
 | 
						|
 | 
						|
exec_always {
 | 
						|
    'swaymsg input type:keyboard xkb_layout "$(localectl status | grep "X11 Layout" | sed -e "s/^.*X11 Layout://")"'
 | 
						|
    'swaymsg input type:keyboard xkb_variant "$(localectl status | grep "X11 Variant" | sed -e "s/^.*X11 Variant://")"'
 | 
						|
}
 |