From 6d835a6a64dfd591def77855a3f9898a27a7fcc5 Mon Sep 17 00:00:00 2001 From: "tibo.depeuter" Date: Sun, 13 Mar 2022 08:57:54 +0100 Subject: [PATCH] Update F --- i3/config | 6 ++---- i3/i3status.conf | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 i3/i3status.conf diff --git a/i3/config b/i3/config index 78b9dd3..3d6202e 100644 --- a/i3/config +++ b/i3/config @@ -16,10 +16,6 @@ exec xrandr --dpi 125 # https://wiki.archlinux.org/index.php/XDG_Autostart exec --no-startup-id dex --autostart --environment i3 -# NetworkManager is the most popular way to manage wireless networks on Linux, -# and nm-applet is a desktop environment-independent system tray GUI for it. -# exec nm-applet - # Set background exec --no-startup-id xsetroot -solid "#333333" exec --no-startup-id feh --bg-scale '/usr/share/backgrounds/yvonne_dark.jpg' @@ -257,6 +253,8 @@ mode "$mode_system" { # Styling # ======= +# TODO Change cursor style + # Start i3bar to display a workspace bar (plus the system information i3status # finds out, if available) bar { diff --git a/i3/i3status.conf b/i3/i3status.conf new file mode 100644 index 0000000..fce5255 --- /dev/null +++ b/i3/i3status.conf @@ -0,0 +1,49 @@ +# i3status configuration file +# see "man i3status" for documentation + +general { + interval = 5 + colors = true + color_good="#FFFFFF" + color_degraded="#ffd75f" + color_bad="#d75f5f" +} + +order += "wireless _first_" +order += "ethernet _first_" +order += "volume master" +order += "battery 0" +order += "disk /" +order += "memory" +order += "tztime local" + +tztime local { + format = "%d/%m/%Y %H:%M" +} + +disk "/home" { + format = " %avail " +} + +volume master { + format = "VOL %volume " + format_muted = "VOL %volume " + device = "default" + mixer = "Master" + mixer_idx = 0 +} + +battery 0 { + format = " %status %percentage " + format_down = " ??? " + status_chr = " CHARGING " + status_bat = " PKCELL " + status_unk = " UNKNOWN " + #last_full_capacity = true + status_full = " FULL " + path = "/sys/class/power_supply/BAT%d/uevent" +} + +memory { + format = "MEM %used" +}