-
Notifications
You must be signed in to change notification settings - Fork 0
/
sway
237 lines (186 loc) · 6.41 KB
/
sway
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
### Variables
set $mod Mod4
set $left h
set $down j
set $up k
set $right l
### Look
gaps inner 10
default_border pixel 4
font pango:DejaVu Sans Mono 12
output * bg ~/.background.jpg fill
### Execs
# WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=GNOME:sway SSH_AUTH_SOCK
exec dbus-update-activation-environment --systemd --all
exec waybar
exec mako
exec nm-applet --indicator
exec pasystray
exec wl-paste --type image --watch cliphist store
exec wl-paste --type UTF8_STRING --watch cliphist store
exec wlsunset -S 06:00 -s 18:00 -t 3000 -T 5000 -d 1800
exec swayidle -w timeout 300 'swaymsg exec lockscreen dpms' before-sleep 'swaymsg exec lockscreen'
# exec flatpak run com.github.wwmm.easyeffects --gapplication-service
exec_always "killall kanshi; kanshi"
### Key bindings
# start a terminal
bindsym $mod+Return exec alacritty -e tmux
# start a file manager
bindsym $mod+Shift+Return exec nautilus
# keep cool
bindsym Control+q exec true
# lock screen
bindsym Ctrl+Alt+l exec lockscreen
# clipboard management
# bindsym $mod+p exec clipman pick -t rofi
bindsym $mod+p exec cliphist list | fuzzel -d | cliphist decode | wl-copy
# kill focused window
bindsym $mod+Shift+q kill
# launcher
bindsym $mod+d exec fuzzel
# screenshot
bindsym Print exec slurp | grim -g - - | wl-copy
bindsym Shift+Print exec grim
# drag and resize modifier
floating_modifier $mod normal
# sticky windows
bindsym $mod+w sticky toggle
# reload the configuration file
bindsym $mod+Shift+c reload
# exit sway (logs you out of your wayland session)
bindsym $mod+Shift+e exit
### Make some windows floating
for_window [window_role="pop-up"] floating enable
for_window [window_role="bubble"] floating enable
for_window [window_role="task_dialog"] floating enable
for_window [window_role="Preferences"] floating enable
for_window [window_type="dialog"] floating enable
for_window [window_type="menu"] floating enable
for_window [app_id="wdisplays"] floating enable
for_window [app_id="org.gnome.Calculator"] floating enable
for_window [title="Firefox - Choose User Profile"] floating enable
for_window [title="Firefox — Sharing Indicator"] kill
for_window [app_id="firefox" title="^Extension.*"] floating enable
for_window [instance="TeamViewer.exe"] floating enable
for_window [class="TeamViewer"] floating enable
for_window [app_id="com.paulolieuthier.Sheepdog"] floating enable
for_window [app_id="sheepdog"] floating enable
### 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
bindsym $mod+1 workspace 1
bindsym $mod+2 workspace 2
bindsym $mod+3 workspace 3
bindsym $mod+4 workspace 4
bindsym $mod+5 workspace 5
bindsym $mod+6 workspace 6
bindsym $mod+7 workspace 7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
# move focused container to workspace
bindsym $mod+Shift+1 move container to workspace 1
bindsym $mod+Shift+2 move container to workspace 2
bindsym $mod+Shift+3 move container to workspace 3
bindsym $mod+Shift+4 move container to workspace 4
bindsym $mod+Shift+5 move container to workspace 5
bindsym $mod+Shift+6 move container to workspace 6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
### Layout stuff
# splits
bindsym $mod+b splith
bindsym $mod+v splitv
bindsym $mod+o split toggle
# switch the current container between layout styles
bindsym $mod+s layout stacking
bindsym $mod+t layout tabbed
bindsym $mod+e layout toggle split
# 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 <-> child
bindsym $mod+a focus parent
bindsym $mod+Shift+a focus child
### Scratchpad
# wove window to the scratchpad
bindsym $mod+minus move scratchpad
# show windows in scratchpad
bindsym $mod+Shift+minus scratchpad show
### Resizing containers
mode "resize" {
bindsym $left resize shrink width 10 px or 10 ppt
bindsym $down resize grow height 10 px or 10 ppt
bindsym $up resize shrink height 10 px or 10 ppt
bindsym $right resize grow width 10 px or 10 ppt
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
bindsym Return mode "default"
bindsym Escape mode "default"
}
bindsym $mod+r mode "resize"
### Device setup
input type:keyboard {
repeat_delay 250
repeat_rate 50
xkb_layout us
xkb_variant intl
xkb_layout arrowsinhomerow
# xkb_layout br
}
input type:touchpad {
dwt disabled
tap enabled
natural_scroll enabled
middle_emulation enabled
tap_button_map lmr
pointer_accel 0.2
}
bindswitch --reload --locked lid:on output eDP-1 disable
bindswitch --reload --locked lid:off output eDP-1 enable
### Leave menu
set $leaveMode "Leave: [l]ock [e]xit [s]uspend [p]oweroff [r]estart"
bindsym $mod+z mode $leaveMode
mode $leaveMode {
bindsym l exec "lockscreen"; mode "default"
bindsym e exit; mode "default"
bindsym s exec "systemctl suspend"; mode "default"
bindsym p exec "systemctl poweroff"; mode "default"
bindsym r exec "systemctl reboot"; mode "default"
bindsym Escape mode "default"
}
### Special keyboard keys
bindsym XF86AudioRaiseVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+ --limit 1
bindsym XF86AudioLowerVolume exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
bindsym XF86AudioMute exec wpctl set-mute @DEFAULT_SINK@ toggle
bindsym XF86MonBrightnessDown exec light -U 1
bindsym Shift+XF86MonBrightnessDown exec light -U 5
bindsym XF86MonBrightnessUp exec light -A 1
bindsym Shift+XF86MonBrightnessUp exec light -A 5