35 lines
		
	
	
		
			876 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			876 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
### Variables
 | 
						|
#
 | 
						|
set $mod Mod4
 | 
						|
set $ctrl Control
 | 
						|
set $left h
 | 
						|
set $down j
 | 
						|
set $up k
 | 
						|
set $right l
 | 
						|
set $term kitty
 | 
						|
set $scripts  $HOME/.config/sway/scripts
 | 
						|
set $tty-popup $scripts/tty-popup
 | 
						|
 | 
						|
set $menu bash $scripts/menu
 | 
						|
set $pass_menu $tty-popup pass $scripts/fzf-pass
 | 
						|
 | 
						|
set $printscreen bash $scripts/printscreen
 | 
						|
 | 
						|
# Support for picture in picture mode.
 | 
						|
# There is currently no support for automatically positioning it in the bottom
 | 
						|
# left corner as xdotool doesn't exist in wayland
 | 
						|
set $PIP floating enabled ; sticky enabled ; border pixel 0
 | 
						|
for_window [class="mpv"] $PIP
 | 
						|
for_window [class="pip"] $PIP
 | 
						|
for_window [class="feh"] $PIP
 | 
						|
for_window [app_id="firefox" title="^Picture-in-Picture$"] $PIP
 | 
						|
for_window [app_id="tty-popup"] focus; $PIP
 | 
						|
for_window [app_id="tty-popup" title="^pass$"] resize set 33 ppt 33 ppt
 | 
						|
 | 
						|
# Status Bar:
 | 
						|
bar {
 | 
						|
  swaybar_command waybar
 | 
						|
}
 | 
						|
 | 
						|
include config.d/*
 |