5f279c7ff738d80116b353f33262ef55e40c1599
[~bandali/configs] / .config / sway / config
1 ### Variables
2 # super
3 set $mod Mod4
4 # alt
5 set $mod2 Mod1
6 set $left h
7 set $down j
8 set $up k
9 set $right l
10 set $term urxvt
11 set $menu rofi -show run -display-run '> ' -display-window ' 🗔 '
12 set $pass rofi-pass
13
14 ### Output configuration
15 #
16 # Default wallpaper (more resolutions are available in __DATADIR__/backgrounds/sway/)
17 output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
18 #
19 # Example configuration:
20 #
21 # output HDMI-A-1 resolution 1920x1080 position 1920,0
22 #
23 # You can get the names of your outputs by running: swaymsg -t get_outputs
24
25 # output DP-1 res 2560x1440 pos 1366,0
26 # # 672 = 1440 - 768
27 # output LVDS-1 pos 0,760
28
29 output DP-1 res 2560x1440 pos 0,0
30 # 672 = 1440 - 768
31 output LVDS-1 pos 2560,760
32
33 ### Input configuration
34
35 input "65261:24672:technomancy_Atreus" {
36 repeat_delay 200
37 repeat_rate 45
38 }
39
40 ### Idle configuration
41
42 exec swayidle \
43 timeout 120 '[ -f ~/.nosleep ] || swaymsg "output * dpms off"' \
44 resume '[ -f ~/.nosleep ] || swaymsg "output * dpms on"' \
45
46
47 ### Key bindings
48 #
49 # Basics:
50 #
51
52 set $floating_term $term -name floating
53 for_window [class="URxvt" instance="floating"] floating enable
54
55 set $mode_launch (⏎)urxvt | | (e)macs | (i)cecat/weasel
56 mode "$mode_launch" {
57 bindsym Return exec $floating_term, mode "default"
58 bindsym p exec $pass, mode "default"
59 bindsym e exec emacs, mode "default"
60
61 # back to normal: Escape, or q
62 bindsym Escape mode "default"
63 bindsym q mode "default"
64 }
65 bindsym $mod+tab mode "$mode_launch"
66 bindsym XF86Launch1 mode "$mode_launch"
67
68 # start a terminal
69 bindsym $mod+Return exec $term
70 bindsym $mod+Shift+Return exec $floating_term
71
72 # kill focused window
73 bindsym $mod+Shift+q kill
74
75 # start your launcher
76 bindsym $mod+space exec $menu
77
78 # start your launcher
79 bindsym $mod+Shift+space exec $pass
80
81 # Drag floating windows by holding down $mod and left mouse button.
82 # Resize them with right mouse button + $mod.
83 # Despite the name, also works for non-floating windows.
84 # Change normal to inverse to use left mouse button for resizing and right
85 # mouse button for dragging.
86 floating_modifier $mod normal
87
88 # reload the configuration file
89 bindsym $mod+Shift+c reload
90
91 # exit sway (logs you out of your wayland session)
92 # bindsym $mod+Shift+e exit
93
94 bindsym $mod+apostrophe exec rofi-light # rofi-based brightness chooser
95 bindsym XF86MonBrightnessUp exec light -A 5 # increase screen brightness
96 bindsym XF86MonBrightnessDown exec light -U 5 # decrease screen brightness
97
98 bindsym XF86AudioRaiseVolume exec pamixer --allow-boost --increase 5
99 bindsym XF86AudioLowerVolume exec pamixer --allow-boost --decrease 5
100 bindsym XF86AudioMute exec pamixer --toggle-mute
101 bindsym XF86AudioMicMute exec pactl set-source-mute 1 toggle
102
103 bindsym $mod+Shift+apostrophe exec rofi-remmina # choose remmina connection
104
105 # original sway workspace switch and window move
106 bindsym $mod+bracketleft workspace prev
107 bindsym $mod+bracketright workspace next
108 bindsym $mod+braceleft move container to workspace prev
109 bindsym $mod+braceright move container to workspace next
110
111 # bspwm-esque workspace switch and window move
112 bindsym $mod2+bracketleft exec sway-ws-util switch prev
113 bindsym $mod2+bracketright exec sway-ws-util switch next
114 bindsym $mod2+braceleft exec sway-ws-util move prev follow
115 bindsym $mod2+braceright exec sway-ws-util move next follow
116 #
117 # Moving around:
118 #
119 # Move your focus around
120 bindsym $mod+$left focus left
121 bindsym $mod+$down focus down
122 bindsym $mod+$up focus up
123 bindsym $mod+$right focus right
124 # or use $mod+[up|down|left|right]
125 bindsym $mod+Left focus left
126 bindsym $mod+Down focus down
127 bindsym $mod+Up focus up
128 bindsym $mod+Right focus right
129
130 # _move_ the focused window with the same, but add Shift
131 bindsym $mod+Shift+$left move left
132 bindsym $mod+Shift+$down move down
133 bindsym $mod+Shift+$up move up
134 bindsym $mod+Shift+$right move right
135 # ditto, with arrow keys
136 bindsym $mod+Shift+Left move left
137 bindsym $mod+Shift+Down move down
138 bindsym $mod+Shift+Up move up
139 bindsym $mod+Shift+Right move right
140 #
141 # Workspaces:
142 #
143 # switch to workspace
144 bindsym $mod+1 workspace 1
145 bindsym $mod+2 workspace 2
146 bindsym $mod+3 workspace 3
147 bindsym $mod+4 workspace 4
148 bindsym $mod+5 workspace 5
149 bindsym $mod+6 workspace 6
150 bindsym $mod+7 workspace 7
151 bindsym $mod+8 workspace 8
152 bindsym $mod+9 workspace 9
153 bindsym $mod+0 workspace 10
154 # move focused container to workspace
155 bindsym $mod+Shift+1 move container to workspace 1
156 bindsym $mod+Shift+2 move container to workspace 2
157 bindsym $mod+Shift+3 move container to workspace 3
158 bindsym $mod+Shift+4 move container to workspace 4
159 bindsym $mod+Shift+5 move container to workspace 5
160 bindsym $mod+Shift+6 move container to workspace 6
161 bindsym $mod+Shift+7 move container to workspace 7
162 bindsym $mod+Shift+8 move container to workspace 8
163 bindsym $mod+Shift+9 move container to workspace 9
164 bindsym $mod+Shift+0 move container to workspace 10
165 # Note: workspaces can have any name you want, not just numbers.
166 # We just use 1-10 as the default.
167 #
168 # Layout stuff:
169 #
170 # You can "split" the current object of your focus with
171 # $mod+b or $mod+v, for horizontal and vertical splits
172 # respectively.
173 bindsym $mod+b splith
174 bindsym $mod+v splitv
175
176 # Switch the current container between different layout styles
177 bindsym $mod+s layout stacking
178 bindsym $mod+w layout tabbed
179 bindsym $mod+e layout toggle split
180
181 # Make the current focus fullscreen
182 bindsym $mod+f fullscreen
183
184 # Toggle sticky-ness of the current (floating) window
185 bindsym $mod+Shift+s sticky toggle
186
187 # Toggle the current focus between tiling and floating mode
188 bindsym $mod+Shift+f floating toggle
189
190 # Swap focus between the tiling area and the floating area
191 bindsym $mod+grave focus mode_toggle
192
193 # move focus to the parent container
194 bindsym $mod+a focus parent
195 bindsym $mod+Shift+a focus child
196 #
197 # Scratchpad:
198 #
199 # Sway has a "scratchpad", which is a bag of holding for windows.
200 # You can send windows there and get them back later.
201
202 # Move the currently focused window to the scratchpad
203 bindsym $mod+Shift+minus move scratchpad
204
205 # Show the next scratchpad window or hide the focused scratchpad window.
206 # If there are multiple scratchpad windows, this command cycles through them.
207 bindsym $mod+minus scratchpad show
208 #
209 # Resizing containers:
210 #
211 mode "resize" {
212 # left will shrink the containers width
213 # right will grow the containers width
214 # up will shrink the containers height
215 # down will grow the containers height
216 bindsym $left resize shrink width 10px
217 bindsym $down resize grow height 10px
218 bindsym $up resize shrink height 10px
219 bindsym $right resize grow width 10px
220
221 # ditto, with arrow keys
222 bindsym Left resize shrink width 10px
223 bindsym Down resize grow height 10px
224 bindsym Up resize shrink height 10px
225 bindsym Right resize grow width 10px
226
227 # return to default mode
228 bindsym Return mode "default"
229 bindsym Escape mode "default"
230 }
231 bindsym $mod+Shift+r mode "resize"
232
233 #
234 # Power button
235 #
236
237 set $mode_system System (l)ock | (e)xit sway | (s)uspend | (h)ibernate | (r)eboot | (S)hutdown
238 mode "$mode_system" {
239 bindsym l exec swaylock, mode "default"
240 bindsym e exec swaymsg exit, mode "default"
241 bindsym s exec systemctl suspend, mode "default"
242 bindsym h exec systemctl hibernate, mode "default"
243 bindsym r exec systemctl reboot, mode "default"
244 bindsym Shift+s exec systemctl poweroff -i, mode "default"
245
246 # back to normal: Enter, Escape, or q
247 bindsym Return mode "default"
248 bindsym Escape mode "default"
249 bindsym q mode "default"
250 }
251 # bindsym XF86PowerOff mode "$mode_system"
252 bindsym $mod+Shift+e mode "$mode_system"
253 bindsym XF86ScreenSaver exec swaylock
254
255 #
256 # Presentation mode
257 #
258
259 bindsym $mod+$mod2+p exec ([ ! -e ~/.nosleep ] && touch ~/.nosleep || rm ~/.nosleep) && killall -USR1 i3status
260
261 #
262 # Notifications
263 #
264
265 bindsym $mod+Shift+n mode notifications
266 mode notifications {
267 bindsym Return exec makoctl invoke; exec makoctl dismiss; mode default
268 bindsym d exec makoctl dismiss; mode default
269 bindsym Shift+d exec makoctl dismiss -a; mode default
270
271 bindsym Escape mode default
272 bindsym q mode default
273 }
274
275 #
276 # Screenshotting
277 #
278
279 set $mode_screenshot (a)ll | (r)egion
280 mode "$mode_screenshot" {
281 bindsym a exec grim $(xdg-user-dir PICTURES)/shots/$(date +'%Y-%m-%d-%H%M%S.png'); mode default
282 bindsym r exec grim -g "$(slurp)" $(xdg-user-dir PICTURES)/shots/$(date +'%Y-%m-%d-%H%M%S.png'); mode default
283
284 bindsym Escape mode default
285 bindsym q mode default
286 }
287 bindsym Print mode "$mode_screenshot"
288
289 #
290 # Window configurations
291 #
292 for_window [class="mpv"] floating enable
293 for_window [class="TelegramDesktop"] floating enable
294 for_window [app_id="pavucontrol"] floating enable
295 for_window [app_id="meld"] floating enable
296 for_window [app_id="nm-connection-editor"] floating enable
297
298 set $blue #285577
299 set $gray #1e1f21
300 set $red #900000
301
302 #
303 # Status Bar:
304 #
305 # Read `man 5 sway-bar` for more information about this section.
306 bar {
307 position bottom
308 colors {
309 background $gray
310 inactive_workspace $gray $gray #888888
311 active_workspace $gray $gray #ffffff
312 urgent_workspace $red $red #ffffff
313 focused_workspace $blue $blue #ffffff
314 }
315 status_command i3status | my-i3status
316 }
317
318 client.focused $blue $blue #ffffff $blue $blue
319 client.unfocused $gray $gray #ffffff $gray $gray
320 client.focused_inactive $gray $gray #ffffff $gray $gray
321
322 # font pango: benis uushi 9
323 # font pango: Ubuntu Mono 11
324 # font pango: Inconsolata 11
325 font pango: DejaVu Sans Mono 9
326 # font pango: Liberation Mono 9
327
328 # get rid of title bars
329 default_border pixel 4
330
331 exec xrdb .Xresources
332 # exec pgrep -x "systemd-inhibit" || \
333 # systemd-inhibit --what=handle-power-key --who=aminb \
334 # --why="Handle power button in sway" sleep infinity
335 exec mako 2>&1 >/tmp/mako.log
336 exec /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
337
338 include /etc/sway/config.d/*
339 include ~/.config/sway/`hostname`
340
341 exec systemd-notify --ready || true