1
0
Fork 0
env/.config/sway/config

375 lines
11 KiB
Plaintext
Raw Normal View History

2018-10-09 17:39:51 +08:00
# 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
2019-12-23 12:09:17 +08:00
set $term kitty --single-instance -d ~
2018-10-09 17:39:51 +08:00
# Your preferred application launcher
set $menu ~/.local/bin/wofi_run
2018-10-09 17:39:51 +08:00
2020-05-27 16:00:52 +08:00
### Mouse
#
# Please tweak wofi_run when enabling this
2020-06-03 16:40:18 +08:00
focus_follows_mouse no
2020-05-27 16:00:52 +08:00
### Output configuratjon
2018-10-09 17:39:51 +08:00
#
# Default wallpaper
2021-09-24 14:25:33 +08:00
output * bg ~/.local/wallpaper/default.jpg fill
2018-10-09 17:39:51 +08:00
#
# 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.
2022-07-08 13:31:45 +08:00
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 \
2022-07-08 13:31:45 +08:00
lock $swaylock \
timeout 10 '' \
resume $dpms_on \
timeout 300 $dpms_off \
resume $dpms_off \
timeout 360 $swaylock \
timeout 1200 'systemctl suspend' \
after-resume $dpms_on
bindsym $mod+Pause exec $swaylock
bindsym XF86ScreenSaver exec $swaylock; exec $dpms_off
bindsym $mod+Shift+Ctrl+p exec $swaylock; exec $dpms_off
2018-10-09 17:39:51 +08:00
### 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.
2019-03-19 12:35:04 +08:00
input * {
2022-02-09 14:31:13 +08:00
xkb_layout "us,us"
xkb_variant "dvp,"
2022-02-09 14:31:13 +08:00
xkb_options "lv3:menu_switch,ctrl:nocaps,altwin:swap_lalt_lwin,compose:ralt"
2021-10-15 09:43:35 +08:00
scroll_factor 1
2019-12-23 12:09:17 +08:00
}
2021-03-23 20:40:22 +08:00
# Switch keyboard layouts
2022-02-09 14:31:13 +08:00
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"
2019-12-23 12:09:17 +08:00
input type:touchpad {
natural_scroll enabled
2019-03-19 12:35:04 +08:00
}
2020-05-27 16:56:16 +08:00
input type:pointer {
natural_scroll enabled
}
# Disable pointer and touchpad
2022-07-08 13:31:45 +08:00
bindsym $mod+p input type:pointer events toggle enabled disabled; input type:keyboard events enabled
2018-10-09 17:39:51 +08:00
### Key bindings
#
# Basics:
#
# start a terminal
bindsym $mod+Return exec $term
# kill focused window
2021-09-30 14:49:13 +08:00
bindsym $mod+Shift+q kill
2018-10-09 17:39:51 +08:00
# 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
2019-12-23 12:09:17 +08:00
bindsym $mod+Shift+c reload
2018-10-09 17:39:51 +08:00
# exit sway (logs you out of your wayland session)
2022-02-28 10:56:12 +08:00
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'
2018-10-09 17:39:51 +08:00
#
# 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
2018-10-09 17:39:51 +08:00
# 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
2018-10-09 17:39:51 +08:00
# 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
2018-10-09 17:39:51 +08:00
#
# Displays:
#
# TODO
#
2018-10-09 17:39:51 +08:00
# 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
2019-12-23 12:09:17 +08:00
bindsym $mod+n layout default
2018-10-09 17:39:51 +08:00
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
2018-10-09 17:39:51 +08:00
#
# 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
2022-02-28 11:20:42 +08:00
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
2018-10-09 17:39:51 +08:00
# ditto, with arrow keys
2022-02-28 11:20:42 +08:00
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
2018-10-09 17:39:51 +08:00
# 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
2018-10-09 17:39:51 +08:00
#
# Status Bar:
#
# Read `man 5 sway-bar` for more information about this section.
bar {
position top
colors {
2021-09-23 19:41:38 +08:00
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
2018-10-09 17:39:51 +08:00
}
swaybar_command waybar
2018-10-09 17:39:51 +08:00
}
### Customisations
2018-10-09 23:25:49 +08:00
#
# Colors:
#
2021-09-23 19:41:38 +08:00
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
2018-10-09 23:25:49 +08:00
#
# Fonts:
#
2021-09-27 14:34:07 +08:00
font pango:Fira Code normal 9.5
2018-10-09 23:25:49 +08:00
#
2020-05-27 21:14:20 +08:00
# 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"
2020-05-27 22:12:08 +08:00
bindsym --locked XF86AudioPause exec "playerctl pause"
2020-05-27 21:14:20 +08:00
bindsym --locked XF86AudioNext exec "playerctl next"
bindsym --locked XF86AudioPrev exec "playerctl previous"
bindsym --locked XF86AudioStop exec "playerctl stop"
2020-05-27 22:12:08 +08:00
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
2020-05-27 21:14:20 +08:00
#
# Gaps:
2018-10-09 23:25:49 +08:00
#
default_border pixel 4
default_floating_border pixel 4
2019-12-23 12:09:17 +08:00
hide_edge_borders smart
2021-09-23 19:41:38 +08:00
#for_window [class="^.*"] border pixel 2
2018-10-09 23:25:49 +08:00
smart_gaps on
2021-09-23 19:41:38 +08:00
# 12 - border - border = 8
gaps inner 4
# 16 - inner - border = 8
gaps outer 8
# Toggle large gaps
2021-09-23 19:41:38 +08:00
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
#
# Special sizes
#
bindsym $mod+F8 resize set 1912 px 1072 px
2021-10-15 21:09:29 +08:00
bindsym $mod+Shift+F8 resize set 1928 px 1088 px
2018-10-09 23:25:49 +08:00
### 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; \
[title = "^Telegram$"] move container to workspace 2
2021-09-24 17:38:24 +08:00
### Floating windows
#
# Firefox
#
2021-09-24 17:49:51 +08:00
for_window [title = "Firefox — Sharing Indicator"] floating enable
2021-09-24 17:38:24 +08:00
for_window [title = "About Mozilla Firefox"] floating enable
for_window [title = "Picture-in-Picture"] floating enable, sticky enable
2021-09-24 17:38:24 +08:00
#
# Tandem
#
for_window [instance = "tandem"] floating enable, sticky enable
for_window [instance = "tandem" title = "^Tandem$"] sticky disable
2021-09-24 17:38:24 +08:00
### Fixes
2018-10-09 23:25:49 +08:00
#
# Import systemd environments for GNOME Keyring:
2018-10-09 23:25:49 +08:00
#
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
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY XDG_CURRENT_DESKTOP SWAYSOCK
#
# Enable PolicyKit:
#
exec lxpolkit
2021-09-06 16:12:47 +08:00
#
2021-09-24 17:38:24 +08:00
# Enable mako:
#
exec mako
#
2021-09-06 16:12:47 +08:00
# Enable GNOME Keyring:
#
exec gnome-keyring-daemon --start
2018-10-09 23:25:49 +08:00
### Setup-specific configuration
#
# Enables custom monitor layouts on other desktop environments
include ~/.config/sway/enabled/*
2018-10-09 23:25:49 +08:00
# vim: ai ts=4 sw=4 et