diff options
Diffstat (limited to 'i3wm.conf')
-rw-r--r-- | i3wm.conf | 44 |
1 files changed, 36 insertions, 8 deletions
@@ -1,8 +1,6 @@ # dotfiles -- i3config # author: johannst -# i3 config file (v4) - # helpful cmdline tools: # * xev # * xmodmap @@ -12,15 +10,18 @@ set $mod Mod1 # super key #set $mod Mod4 -font pango:Terminus 10 +#font pango:Terminus 12 +font pango:xos4 Terminus 12 # mouse+$mod to move/rezie window in floating mode floating_modifier $mod # launch terminal -bindsym $mod+Return exec st +bindsym $mod+Return exec i3-sensible-terminal # launch dmenu_run bindsym $mod+d exec dmenu_run +# launch dmenu_run +bindsym $mod+p exec passmenu # kill focused Window bindsym $mod+Shift+c kill # reload the configuration file @@ -142,7 +143,23 @@ bindsym XF86AudioMute exec "amixer set Master toggle" #}}} #{{{ lock/suspend -set $lock_cmd i3lock --inactivity-timeout 30s -d --ignore-empty-password -c 455a64 +#set $lock_cmd i3lock --inactivity-timeout 30s -d --ignore-empty-password -c 455a64 -i ~/.i3/lock.png +set $lock_cmd i3lock \ + --ignore-empty-password \ + -B=100 \ + --indicator \ + --indpos="100:800" \ + --radius 30 \ + --insidecolor=00000000 \ + --insidevercolor=00000000 \ + --insidewrongcolor=00000000 \ + --ringcolor=ffffff80 \ + --ringvercolor=fffffff0 \ + --ringwrongcolor=ff0000ff \ + --veriftext="" \ + --wrongtext="" \ + --keyhlcolor=00ff0080 \ + --bshlcolor=ff000080 # lock screen bindsym $mod+Control+l exec $lock_cmd @@ -164,17 +181,28 @@ mode "$power_mode" { # Start i3bar bar { - status_command i3status --config ~/.i3/i3status.conf + font pango: xos4 Terminus, Font Awesome 5 Free, Ionicons 10 + position top + height 26 + status_command i3blocks -c ~/.i3/i3blocks.conf + #status_command i3status --config ~/.i3/i3status.conf + + #separator_symbol "■" + #tray_output LVDS-1 + #tray_padding 0 } #}}} # PLAYGROUND +gaps outer 0 +gaps inner 5 + # pin applications to specific workspace # helpfull to get name: 'xprop | grep WM_CLASS' (then click window) -assign [class="Firefox"] 9 +#assign [class="Firefox"] 9 -bindsym $mod+p exec "notify-send \\"Hello, i3; $USER\\"" +#bindsym $mod+p exec "notify-send \\"Hello, i3; $USER\\"" #% vim:fen:fdm=marker:fmr={{{,}}}:fdl=0:fdc=1 |