diff options
Diffstat (limited to 'config')
-rw-r--r-- | config | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -9,6 +9,7 @@ | |||
9 | # | 9 | # |
10 | # Please see http://i3wm.org/docs/userguide.html for a complete reference! | 10 | # Please see http://i3wm.org/docs/userguide.html for a complete reference! |
11 | 11 | ||
12 | fake-outputs 3840x1080+0+0 | ||
12 | set $mod Mod4 | 13 | set $mod Mod4 |
13 | 14 | ||
14 | # Font for window titles. Will also be used by the bar unless a different font | 15 | # Font for window titles. Will also be used by the bar unless a different font |
@@ -127,6 +128,11 @@ bindsym $mod+Shift+8 move container to workspace 8 | |||
127 | bindsym $mod+Shift+9 move container to workspace music | 128 | bindsym $mod+Shift+9 move container to workspace music |
128 | bindsym $mod+Shift+0 move container to workspace background | 129 | bindsym $mod+Shift+0 move container to workspace background |
129 | 130 | ||
131 | # Pulse Audio controls | ||
132 | bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume 0 +5% #increase sound volume | ||
133 | bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume 0 -5% #decrease sound volume | ||
134 | bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute 0 toggle # mute sound | ||
135 | |||
130 | workspace 1 output DP-1 | 136 | workspace 1 output DP-1 |
131 | workspace 2 output DP-1 | 137 | workspace 2 output DP-1 |
132 | workspace 3 output DP-1 | 138 | workspace 3 output DP-1 |
@@ -153,6 +159,7 @@ bindsym $mod+Shift+m scratchpad show ; resize set 1920 920 ; move position cente | |||
153 | for_window [class="^.*"] border normal 2 | 159 | for_window [class="^.*"] border normal 2 |
154 | for_window [title="^.*Thunderbird"] border pixel 0 | 160 | for_window [title="^.*Thunderbird"] border pixel 0 |
155 | for_window [title="^.*Chromium"] border pixel 0 | 161 | for_window [title="^.*Chromium"] border pixel 0 |
162 | for_window [class="Gvim"] border pixel 0 | ||
156 | # for_window [title="^.*\|"] border pixel 4 | 163 | # for_window [title="^.*\|"] border pixel 4 |
157 | for_window [title="^HexChat.*"] border pixel 0 | 164 | for_window [title="^HexChat.*"] border pixel 0 |
158 | for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks | 165 | for_window [title="^.*"] exec pkill -SIGRTMIN+11 i3blocks |
@@ -178,9 +185,9 @@ bar { | |||
178 | # background #2a3448 | 185 | # background #2a3448 |
179 | # statusline #ffffff | 186 | # statusline #ffffff |
180 | background #ffffff | 187 | background #ffffff |
181 | statusline #000000 | 188 | statusline #6060af |
182 | focused_workspace #ffffff #ffffff #000000 | 189 | focused_workspace #6060af #ffffff #6060af |
183 | active_workspace #ffffff #ffffff #888888 | 190 | active_workspace #6060af #ffffff #888888 |
184 | inactive_workspace #ffffff #ffffff #888888 | 191 | inactive_workspace #ffffff #ffffff #888888 |
185 | urgent_workspace #2f343a #900000 #ffffff | 192 | urgent_workspace #2f343a #900000 #ffffff |
186 | binding_mode #2f343a #900000 #ffffff | 193 | binding_mode #2f343a #900000 #ffffff |
@@ -284,6 +291,8 @@ assign [class="^Thunderbird$"] → background | |||
284 | exec --no-startup-id setxkbmap -option caps:escape | 291 | exec --no-startup-id setxkbmap -option caps:escape |
285 | exec --no-startup-id xset r rate 330 40 | 292 | exec --no-startup-id xset r rate 330 40 |
286 | 293 | ||
294 | |||
295 | |||
287 | exec --no-startup-id dbus-launch gnome-settings-daemon | 296 | exec --no-startup-id dbus-launch gnome-settings-daemon |
288 | exec --no-startup-id dbus-launch nm-applet | 297 | exec --no-startup-id dbus-launch nm-applet |
289 | 298 | ||
@@ -294,8 +303,11 @@ exec xrandr --output HDMI-1 --right-of DP-1 | |||
294 | 303 | ||
295 | # start compositor... | 304 | # start compositor... |
296 | exec --no-startup-id dbus-launch nitrogen --restore | 305 | exec --no-startup-id dbus-launch nitrogen --restore |
297 | exec --no-startup-id dbus-launch compton -b --config /home/max/.config/i3/compton.conf | 306 | exec --no-startup-id dbus-launch compton -b --config ~/.config/i3/compton.conf |
298 | exec --no-startup-id dbus-launch setsid udiskie -2 -s | 307 | exec --no-startup-id dbus-launch setsid udiskie -2 -s |
299 | exec --no-startup-id dbus-launch nextcloud | 308 | exec --no-startup-id dbus-launch setsid pidgin |
309 | exec --no-startup-id dbus-launch setsid hexchat | ||
310 | # exec --no-startup-id dbus-launch nextcloud | ||
300 | 311 | ||
301 | 312 | ||
313 | # vim: iskeyword+=\$,\-,\# nospell | ||