diff options
author | Matthew Lemon <y@yulqen.org> | 2023-08-20 15:46:51 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-08-20 15:46:51 +0100 |
commit | d88e25d2282df5c08f1551d3435f65adda5a6b29 (patch) | |
tree | 67a467cc2b36902693adcd246cbf342d7989a76f | |
parent | f2eb0fd35861a69c6171e16f688d1234661a0bbd (diff) |
Moves the i3 bar to bottom and removes stuff unneeded
Diffstat (limited to '')
-rw-r--r-- | i3-config | 9 | ||||
-rw-r--r-- | i3status_config | 54 |
2 files changed, 60 insertions, 3 deletions
@@ -301,12 +301,15 @@ bindsym $mod+r mode "resize" # bar { + tray_output primary status_command i3status - position top - font pango:Jetbrains Mono 11 + position bottom + font pango:Iosevka Regular 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..82bd2e7 --- /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" +} |