diff options
-rw-r--r-- | i3-config | 15 | ||||
-rw-r--r-- | i3status_config | 54 |
2 files changed, 62 insertions, 7 deletions
@@ -46,12 +46,11 @@ set $mod Mod4 # Font for window titles. Will also be used by the bar unless a different font # is used in the bar {} block below. #font pango:monospace 8 -font pango:mono 10 +#font pango:mono 10 +font pango:Iosevka Regular 8 # This font is widely installed, provides lots of unicode glyphs, right-to-left # text rendering and scalability on retina/hidpi displays (thanks to pango). -#font pango:DejaVu Sans Mono 8 - # Before i3 v4.8, we used to recommend this one as the default: # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 # The font above is very space-efficient, that is, it looks good, sharp and @@ -108,7 +107,7 @@ bindsym $mod+Shift+g gaps inner current minus 5 bindsym $mod+Shift+q kill # start dmenu (a program launcher) -bindsym $mod+d exec "dmenu_run -nf '#F8F8F2' -nb '#282A36' -sb '#6272A4' -sf '#F8F8F2' -fn 'monospace-10' -p 'dmenu%'" +bindsym $mod+d exec "dmenu_run -nf '#F8F8F2' -nb '#282A36' -sb '#6272A4' -sf '#F8F8F2' -fn 'IosevkaNerdFont-10' -p 'dmenu%'" # There also is the (new) i3-dmenu-desktop which only displays applications # shipping a .desktop file. It is a wrapper around dmenu, so you need that @@ -298,11 +297,13 @@ bindsym $mod+r mode "resize" bar { status_command i3status - position top - font pango:Jetbrains Mono 11 + position bottom + font pango:IosevkaNerdFont 11 + mode dock colors { - background #282A36 +# background #282A36 + background #000000 statusline #F8F8F2 separator #44475A diff --git a/i3status_config b/i3status_config new file mode 100644 index 0000000..598079c --- /dev/null +++ b/i3status_config @@ -0,0 +1,54 @@ +# i3status configuration file. +# see "man i3status" for documentation. + +# It is important that this file is edited as UTF-8. +# The following line should contain a sharp s: +# ß +# If the above line is not correctly displayed, fix your editor first! + +general { + colors = true + interval = 5 +} + +# order += "ipv6" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +# order += "disk /" +# order += "load" +order += "memory" +order += "tztime local" + +wireless _first_ { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +ethernet _first_ { + format_up = "E: %ip (%speed)" + format_down = "E: down" +} + +battery all { + format = "%status %percentage %remaining" +} + +# disk "/" { +# format = "%avail" +# } + +# load { +# format = "%1min" +# } + + +memory { + format = "%used | %available" + threshold_degraded = "1G" + format_degraded = "MEMORY < %available" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} |