# Read `man 5 sway` for a complete reference. ### Variables # # Logo key. Use Mod1 for Alt. set $mod Mod4 # Home row direction keys, like vim set $left h set $down j set $up k set $right l # Your preferred terminal emulator #set $term kitty --single-instance -d ~ set $term footclient # Your preferred application launcher set $menu ~/.local/bin/wofi_run ### Mouse # # Please tweak wofi_run when enabling this focus_follows_mouse no ### Output configuratjon # # Default wallpaper output * bg ~/.local/wallpaper/default.jpg fill # # Example configuration: # # output HDMI-A-1 resolution 1920x1080 position 1920,0 # # You can get the names of your outputs by running: swaymsg -t get_outputs #output eDP-1 scale 1 position 4000 0 #output DP-4 position 1440 -540 #output DP-1 position 0 0 ### Idle configuration # # Example configuration: # # exec swayidle -w \ # timeout 300 'swaylock -f -c 000000' \ # timeout 600 'swaymsg "output * dpms off"' \ # resume 'swaymsg "output * dpms on"' \ # before-sleep 'swaylock -f -c 000000' # # This will lock your screen after 300 seconds of inactivity, then turn off # your displays after another 300 seconds, and turn your screens back on when # resumed. It will also lock your screen before your computer goes to sleep. set $swaylock 'swaylock -f --color 000000 --font "IBM Plex Sans" --image ~/.local/wallpaper/default.jpg' set $dpms_on 'swaymsg "output * dpms on"' set $dpms_off 'swaymsg "output * dpms off"' exec swayidle -w \ lock $swaylock \ timeout 300 $dpms_off \ resume $dpms_on \ timeout 360 $swaylock \ resume $dpms_on \ timeout 1200 'systemctl suspend' \ after-resume $dpms_on set $cmd_lock exec $swaylock set $cmd_sleep exec $swaylock; exec sh -c 'sleep 1 && killall -USR1 swayidle' bindsym $mod+Shift+o $cmd_lock bindsym XF86ScreenSaver $cmd_lock bindsym $mod+Shift+p $cmd_sleep bindsym XF86Sleep $cmd_sleep ### Input configuration # # Example configuration: # # input "2:14:SynPS/2_Synaptics_TouchPad" { # dwt enabled # tap enabled # natural_scroll enabled # middle_emulation enabled # } # # You can get the names of your inputs by running: swaymsg -t get_inputs # Read `man 5 sway-input` for more information about this section. input * { xkb_layout "us,us" xkb_variant "dvp," xkb_options "lv3:menu_switch,ctrl:nocaps,altwin:swap_lalt_lwin,compose:ralt" scroll_factor 1 } # Switch keyboard layouts bindsym $mod+F9 input * xkb_switch_layout 0, input * xkb_options "lv3:menu_switch,ctrl:nocaps,altwin:swap_lalt_lwin,compose:ralt" bindsym $mod+F10 input * xkb_switch_layout 1, input * xkb_options "lv3:menu_switch,compose:ralt" input type:touchpad { natural_scroll enabled scroll_method two_finger click_method clickfinger pointer_accel 0.15 } input type:pointer { natural_scroll enabled } # Disable pointer and touchpad bindsym $mod+p input type:pointer events toggle enabled disabled; input type:keyboard events enabled ### Key bindings # # Basics: # # start a terminal bindsym $mod+Return exec $term # kill focused window bindsym $mod+Shift+q kill # start your launcher bindsym $mod+d exec $menu # Drag floating windows by holding down $mod and left mouse button. # Resize them with right mouse button + $mod. # Despite the name, also works for non-floating windows. # Change normal to inverse to use left mouse button for resizing and right # mouse button for dragging. floating_modifier $mod normal # reload the configuration file bindsym $mod+Shift+c reload # exit sway (logs you out of your wayland session) bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit' # # Moving around: # # Move your focus around bindsym $mod+$left focus left bindsym $mod+$down focus down bindsym $mod+$up focus up bindsym $mod+$right focus right # or use $mod+[up|down|left|right] bindsym $mod+Left focus left bindsym $mod+Down focus down bindsym $mod+Up focus up bindsym $mod+Right focus right # _move_ the focused window with the same, but add Shift bindsym $mod+Shift+$left move left bindsym $mod+Shift+$down move down bindsym $mod+Shift+$up move up bindsym $mod+Shift+$right move right # ditto, with arrow keys bindsym $mod+Shift+Left move left bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right # # Workspaces: # # switch to workspace bindcode $mod+10 workspace 1 bindcode $mod+11 workspace 2 bindcode $mod+12 workspace 3 bindcode $mod+13 workspace 4 bindcode $mod+14 workspace 5 bindcode $mod+15 workspace 6 bindcode $mod+16 workspace 7 bindcode $mod+17 workspace 8 bindcode $mod+18 workspace 9 bindcode $mod+19 workspace 10 # move focused container to workspace bindcode $mod+Shift+10 move container to workspace 1 bindcode $mod+Shift+11 move container to workspace 2 bindcode $mod+Shift+12 move container to workspace 3 bindcode $mod+Shift+13 move container to workspace 4 bindcode $mod+Shift+14 move container to workspace 5 bindcode $mod+Shift+15 move container to workspace 6 bindcode $mod+Shift+16 move container to workspace 7 bindcode $mod+Shift+17 move container to workspace 8 bindcode $mod+Shift+18 move container to workspace 9 bindcode $mod+Shift+19 move container to workspace 10 # Note: workspaces can have any name you want, not just numbers. # We just use 1-10 as the default. # back and forth bindsym $mod+period workspace back_and_forth # # Displays: # # move workspace to output bindsym $mod+Control+Shift+$left move workspace to output left bindsym $mod+Control+Shift+$down move workspace to output down bindsym $mod+Control+Shift+$up move workspace to output up bindsym $mod+Control+Shift+$right move workspace to output right # TODO # # Layout stuff: # # You can "split" the current object of your focus with # $mod+b or $mod+v, for horizontal and vertical splits # respectively. bindsym $mod+b splith bindsym $mod+v splitv # Switch the current container between different layout styles bindsym $mod+n layout default bindsym $mod+s layout stacking bindsym $mod+w layout tabbed bindsym $mod+e layout toggle split # Make the current focus fullscreen bindsym $mod+f fullscreen # Toggle the current focus between tiling and floating mode bindsym $mod+Shift+space floating toggle # Swap focus between the tiling area and the floating area bindsym $mod+space focus mode_toggle # move focus to the parent container bindsym $mod+a focus parent # # Scratchpad: # # Sway has a "scratchpad", which is a bag of holding for windows. # You can send windows there and get them back later. # Move the currently focused window to the scratchpad bindsym $mod+Shift+minus move scratchpad # Show the next scratchpad window or hide the focused scratchpad window. # If there are multiple scratchpad windows, this command cycles through them. bindsym $mod+minus scratchpad show # # Resizing containers: # mode "resize" { # left will shrink the containers width # right will grow the containers width # up will shrink the containers height # down will grow the containers height bindsym $left resize shrink width 12 px bindsym $down resize grow height 12 px bindsym $up resize shrink height 12 px bindsym $right resize grow width 12 px # ditto, with arrow keys bindsym Left resize shrink width 12 px bindsym Down resize grow height 12 px bindsym Up resize shrink height 12 px bindsym Right resize grow width 12 px # return to default mode bindsym Return mode "default" bindsym Escape mode "default" } bindsym $mod+r mode "resize" # # Sticky: # # Toggle the current focus sticky bindsym $mod+Shift+backslash floating enable, sticky toggle # # Status Bar: # # Read `man 5 sway-bar` for more information about this section. bar { position top colors { background #20202080 statusline #93a1a1dd separator #839496dd focused_workspace #cb4b16ff #cb4b16ff #ffffffff active_workspace #b58900ff #b58900ff #ffffffff inactive_workspace #2d2d2dff #2d2d2dff #a3a3a3ff urgent_workspace #dc322fff #dc322fff #ffffffff binding_mode #d33682ff #d33682ff #ffffffff } swaybar_command waybar } ### Customisations # # Colors: # client.focused #cb4b16ff #cb4b16ff #ffffffff #268bd2ff #cb4b16dd client.focused_inactive #b58900ff #b58900ff #ffffffff #268bd200 #b5890000 client.unfocused #2d2d2d80 #2d2d2d80 #a3a3a3ff #268bd200 #2d2d2d00 client.urgent #dc322fff #dc322fff #ffffffff #268bd200 #dc322fff # # Fonts: # font pango:Fira Code normal 9.5 # # Media controls: # bindsym --locked XF86AudioRaiseVolume exec "pactl set-sink-volume @DEFAULT_SINK@ +2%" bindsym --locked XF86AudioLowerVolume exec "pactl set-sink-volume @DEFAULT_SINK@ -2%" bindsym --locked XF86AudioMute exec "pactl set-sink-mute @DEFAULT_SINK@ toggle" bindsym --locked XF86AudioMicMute exec "pactl set-source-mute @DEFAULT_SOURCE@ toggle" bindsym --locked XF86AudioPlay exec "playerctl play-pause" bindsym --locked XF86AudioPause exec "playerctl pause" bindsym --locked XF86AudioNext exec "playerctl next" bindsym --locked XF86AudioPrev exec "playerctl previous" bindsym --locked XF86AudioStop exec "playerctl stop" bindsym --locked XF86MonBrightnessDown exec "brightnessctl set 5%-" bindsym --locked XF86MonBrightnessUp exec "brightnessctl set +5%" bindsym --locked Shift+XF86AudioLowerVolume exec "brightnessctl set 5%-" bindsym --locked Shift+XF86AudioRaiseVolume exec "brightnessctl set +5%" # # Screenshot controls: # set $screenshots $HOME/Pictures/screenshots bindsym Print exec grim -t png $screenshots"/Screenshot $(date '+%Y-%m-%d at %H-%m-%S').png" bindsym Shift+Print exec grim -g "$(slurp)" -t png $screenshots"/Screenshot $(date '+%Y-%m-%d at %H-%m-%S').png" # TODO: bindsym $mod+Shift+Print exec grim-upload -s # # Gaps: # default_border pixel 4 default_floating_border pixel 4 hide_edge_borders smart #for_window [class="^.*"] border pixel 2 smart_gaps on # 12 - border - border = 8 gaps inner 4 # 16 - inner - border = 8 gaps outer 8 # Toggle large gaps bindsym $mod+g gaps inner current set 34, gaps outer current set 10 bindsym $mod+Shift+g gaps inner current set 4, gaps outer current set 8 bindsym $mod+Shift+Ctrl+g gaps inner current set 0, gaps outer current set 0 # # Special sizes # bindsym $mod+F8 resize set 1912 px 1072 px bindsym $mod+Shift+F8 resize set 1928 px 1088 px ### Workspaces # # 10: Spotify # # Does not work: assign [instance="spotify"] 10 #for_window [instance="spotify"] move to workspace 10 # # 2: Chat # bindsym $mod+F5 \ [instance="(discord|element)"] move container to workspace 2; \ [app_id="org.telegram.desktop.*"] move container to workspace 2; \ [title="^Telegram$"] move container to workspace 2 ### Floating windows # # Firefox # for_window [title="Firefox — Sharing Indicator"] floating enable, move position 50 ppt 0 px for_window [title="About Mozilla Firefox"] floating enable for_window [title="Picture-in-Picture"] floating enable, sticky enable for_window [title="Picture-in-picture"] floating enable, sticky enable # # Tandem # for_window [instance="tandem"] floating enable, sticky enable for_window [instance="tandem" title="^Tandem$"] sticky disable ### Fixes # # Enable GNOME Keyring: # exec gnome-keyring-daemon --start --components=pkcs11,secrets,ssh # # Import systemd environments for GNOME Keyring: # exec systemctl --user import-environment XDG_SESSION_TYPE XDG_SEAT XDG_SESSION_DESKTOP XDG_SESSION_CLASS XDG_SESSION_ID XDG_RUNTIME_DIR DISPLAY WAYLAND_DISPLAY SWAYSOCK SSH_AUTH_SOCK XDG_CURRENT_DESKTOP exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway SWAYSOCK # # Enable PolicyKit: # exec lxpolkit # # Start foot server: # exec foot --server # # Enable mako: # exec mako # # Enable blueman tray icon: # exec blueman-applet ### Setup-specific configuration # # Enables custom monitor layouts on other desktop environments include ~/.config/sway/enabled/* # vim: ai ts=4 sw=4 et