diff options
Diffstat (limited to 'i3.conf')
-rw-r--r-- | i3.conf | 25 |
1 files changed, 15 insertions, 10 deletions
@@ -2,8 +2,9 @@ # Please see https://i3wm.org/docs/userguide.html for a complete reference! set $mod Mod4 -set $lock i3lock -n -f -e -i ~/Pictures/Lockscreens/mountain.png -c 555555 +set $lock i3lock -n -f -e -i ~/Pictures/Lockscreens/milkyway.png -c 555555 set $bg feh --randomize --bg-scale ~/Pictures/Backgrounds +set $transparent #00000000 font pango:Waree 9 # Pre-programs @@ -12,7 +13,7 @@ exec --no-startup-id nm-applet # Some necessary attributes focus_follows_mouse no -for_window [class="^.*"] border pixel 5 +for_window [class="^.*"] border pixel 10 # Scratchpad bindsym $mod+Shift+minus move scratchpad @@ -20,8 +21,8 @@ bindsym $mod+minus scratchpad show bindsym $mod+slash exec qutebrowser # Gaps and border -gaps outer 0 -gaps inner 10 +gaps outer 5 +gaps inner 15 # Volume binds set $refresh_i3status killall -SIGUSR1 i3status @@ -90,11 +91,9 @@ bindsym $mod+Shift+Down move down bindsym $mod+Shift+Up move up bindsym $mod+Shift+Right move right -# split in horizontal orientation -bindsym $mod+Ctrl+h split v - -# split in vertical orientation -bindsym $mod+Ctrl+v split h +# split orientation settings +bindsym $mod+Ctrl+z split v +bindsym $mod+Ctrl+x split h # enter fullscreen mode for the focused container bindsym $mod+f fullscreen toggle @@ -174,9 +173,15 @@ client.focused_inactive #333333 #5f676a #ffffff #2e9ef4 #285577 bar { status_command i3status position top - separator_symbol " || " workspace_buttons yes font pango:Arial 9.5 + colors { + focused_workspace $transparent $transparent $darkwhite + inactive_workspace $transparent $transparent $white + active_workspace $transparent $transparent $white + urgent_workspace $darkred $darkred $transparent + binding_mode $darkred $darkred $transparent + } } exec --no-startup-id $bg |