1
0
Fork 0
vdotfiles/dot_config/sway/config
2025-03-24 21:55:48 +02:00

242 lines
8 KiB
Text

# Logo key. Use Mod1 for Alt.
set $mod Mod1
# Home row direction keys, like vim
set $left h
set $down j
set $up k
set $right l
set $term foot
set $font_symb Font Awesome 6 Free
set $font_face Cascadia Mono
set $font_size 10
font pango:$font_face, $font_symb $font_size
set $wallpaper $HOME/.wallpaper
default_border pixel
default_floating_border pixel
hide_edge_borders --i3 smart
workspace_layout tabbed
seat seat0 xcursor_theme Vanilla-DMZ-AA
output * bg $wallpaper fill
output Virtual-1 resolution 1920x1080 scale 2
#exec swayidle -w \
# timeout 300 'swaylock -f -i '$wallpaper \
# timeout 600 'swaymsg "output * dpms off"' \
# resume 'swaymsg "output * dpms on"' \
# before-sleep 'swaylock -f -i '$wallpaper
#bindsym --to-code $mod+z exec 'swaylock -f -i '$wallpaper
# 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.
# keys:
# Start a terminal
bindsym --to-code $mod+x exec $term
# Kill focused window
bindsym --to-code $mod+Shift+c kill
# Start your launcher
bindsym --to-code Mod1+d exec bemenu-run -i --fn "$font_face $font_size" --no-exec | xargs swaymsg exec --
# 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 --to-code $mod+Shift+r reload
# Exit sway (logs you out of your Wayland session)
bindsym --to-code $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'
# Screenshot
bindsym --to-code $mod+Shift+s exec screenshot-tool
#
# Moving around:
#
# Move your focus around
bindsym --to-code $mod+$left focus left
bindsym --to-code $mod+$down focus down
bindsym --to-code $mod+$up focus up
bindsym --to-code $mod+$right focus right
# Or use $mod+[up|down|left|right]
bindsym --to-code $mod+Left focus left
bindsym --to-code $mod+Down focus down
bindsym --to-code $mod+Up focus up
bindsym --to-code $mod+Right focus right
# Move the focused window with the same, but add Shift
bindsym --to-code $mod+Shift+$left move left
bindsym --to-code $mod+Shift+$down move down
bindsym --to-code $mod+Shift+$up move up
bindsym --to-code $mod+Shift+$right move right
# Ditto, with arrow keys
bindsym --to-code $mod+Shift+Left move left
bindsym --to-code $mod+Shift+Down move down
bindsym --to-code $mod+Shift+Up move up
bindsym --to-code $mod+Shift+Right move right
#
# Workspaces:
#
# move to another screen
bindsym --to-code $mod+Shift+o move workspace to output left
# switch between recent workspaces
bindsym --to-code $mod+o workspace back_and_forth
# Switch to workspace
bindsym --to-code $mod+1 workspace 1
bindsym --to-code $mod+2 workspace 2
bindsym --to-code $mod+3 workspace 3
bindsym --to-code $mod+4 workspace 4
bindsym --to-code $mod+5 workspace 5
bindsym --to-code $mod+6 workspace 6
bindsym --to-code $mod+7 workspace 7
bindsym --to-code $mod+8 workspace 8
bindsym --to-code $mod+9 workspace 9
bindsym --to-code $mod+0 workspace 10
# Move focused container to workspace
bindsym --to-code $mod+Shift+1 move container to workspace 1
bindsym --to-code $mod+Shift+2 move container to workspace 2
bindsym --to-code $mod+Shift+3 move container to workspace 3
bindsym --to-code $mod+Shift+4 move container to workspace 4
bindsym --to-code $mod+Shift+5 move container to workspace 5
bindsym --to-code $mod+Shift+6 move container to workspace 6
bindsym --to-code $mod+Shift+7 move container to workspace 7
bindsym --to-code $mod+Shift+8 move container to workspace 8
bindsym --to-code $mod+Shift+9 move container to workspace 9
bindsym --to-code $mod+Shift+0 move container to workspace 10
# Note: workspaces can have any name you want, not just numbers.
# We just use 1-10 as the default.
#
# Layout stuff:
#
# You can "split" the current object of your focus with
# $mod+b or $mod+v, for horizontal and vertical splits
# respectively.
bindsym --to-code $mod+semicolon splith
bindsym --to-code $mod+colon splitv
# Switch the current container between different layout styles
bindsym --to-code $mod+s layout stacking
bindsym --to-code $mod+w layout tabbed
bindsym --to-code $mod+e layout toggle split
# Make the current focus fullscreen
bindsym --to-code $mod+f fullscreen
# Toggle the current focus between tiling and floating mode
bindsym --to-code $mod+Shift+Return floating toggle
# Swap focus between the tiling area and the floating area
bindsym --to-code $mod+Return focus mode_toggle
# Move focus to the parent container
bindsym --to-code $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 --to-code $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 --to-code $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 --to-code $left resize shrink width 10px
bindsym --to-code $down resize grow height 10px
bindsym --to-code $up resize shrink height 10px
bindsym --to-code $right resize grow width 10px
# Ditto, with arrow keys
bindsym --to-code Left resize shrink width 10px
bindsym --to-code Down resize grow height 10px
bindsym --to-code Up resize shrink height 10px
bindsym --to-code Right resize grow width 10px
# Return to default mode
bindsym --to-code Return mode "default"
bindsym --to-code Escape mode "default"
}
bindsym --to-code $mod+r mode "resize"
bindsym --to-code XF86AudioRaiseVolume exec "pactl set-sink-volume 0 +5%"
bindsym --to-code XF86AudioLowerVolume exec "pactl set-sink-volume 0 -5%"
bindsym --to-code XF86AudioMute exec "pactl set-sink-volume 0 0%"
# theming, gruvbox
set $light #ebdbb2
set $dark #3c3836
set $focused #3c3836
set $inactive #282828
set $unfocused #282828
set $urgent #b8bb26
client.focused $focused $focused $light $focused $focused
client.focused_inactive $inactive $inactive $light $inactive $inactive
client.unfocused $unfocused $unfocused $light $unfocused $unfocused
client.urgent $urgent $urgent $light $urgent $urgent
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
status_command "i3status-rs"
colors {
separator $focused
background $inactive
statusline $light
focused_workspace $focused $focused $light
active_workspace $focused $focused $light
inactive_workspace $inactive $inactive $light
urgent_workspace $urgent $urgent $light
}
}
input "type:keyboard" {
xkb_layout "us,ru"
xkb_variant ",typewriter"
xkb_options "grp:win_space_toggle,compose:menu,ctrl:nocaps"
}
input "type:touchpad" {
dwt disabled
tap disabled
natural_scroll disabled
click_method clickfinger
}
# scratchpad
for_window [app_id="keepassxc"] move scratchpad, scratchpad show
bindsym --to-code $mod+i [app_id="keepassxc"] scratchpad show
# other settings
workspace_auto_back_and_forth yes
focus_wrapping yes
# autostart
exec mako
include /etc/sway/config.d/*