aboutsummaryrefslogtreecommitdiff
path: root/linux/i3/config/i3status
diff options
context:
space:
mode:
authorjakob.stendahl <jakob.stendahl@infomedia.dk>2024-01-23 11:13:18 +0100
committerjakob.stendahl <jakob.stendahl@infomedia.dk>2024-01-23 11:13:18 +0100
commit72efe134f645a5212f875c153dd8db4a64cbe968 (patch)
treed23229285071bf381515657b94919852ebf426c9 /linux/i3/config/i3status
parente33d5f8d10d34e5a3a4bb292015961dd574f4c93 (diff)
downloaddotfiles-72efe134f645a5212f875c153dd8db4a64cbe968.tar.gz
dotfiles-72efe134f645a5212f875c153dd8db4a64cbe968.zip
changes
Diffstat (limited to 'linux/i3/config/i3status')
-rw-r--r--linux/i3/config/i3status/config74
1 files changed, 74 insertions, 0 deletions
diff --git a/linux/i3/config/i3status/config b/linux/i3/config/i3status/config
new file mode 100644
index 0000000..b129807
--- /dev/null
+++ b/linux/i3/config/i3status/config
@@ -0,0 +1,74 @@
+general {
+ output_format = "i3bar"
+ colors = false
+ markup = pango
+ interval = 5
+ color_good = '#2f343f'
+ color_degraded = '#ebcb8b'
+ color_bad = '#ba5e57'
+}
+
+order += "load"
+order += "cpu_temperature 0"
+#order += "disk /"
+#order += "disk /home"
+#order += "ethernet enp1s0"
+order += "wireless wlp0s20f3"
+order += "volume master"
+order += "battery 0"
+order += "tztime local"
+
+load {
+ format = "<span background='#f59335'>  %5min Load </span>"
+}
+
+cpu_temperature 0 {
+ format = "<span background='#bf616a'>  %degrees °C </span>"
+ path = "/sys/class/thermal/thermal_zone0/temp"
+}
+
+disk "/" {
+ format = "<span background='#fec7cd'>  %free Free </span>"
+}
+
+disk "/home" {
+ format = "<span background='#a1d569'>  %free Free </span>"
+}
+
+ethernet enp1s0 {
+ format_up = "<span background='#88c0d0'>  %ip </span>"
+ format_down = "<span background='#88c0d0'>  Disconnected </span>"
+}
+
+wireless wlp0s20f3 {
+ format_up = "<span background='#b48ead'>  %essid </span>"
+ format_down = "<span background='#b48ead'>  Disconnected </span>"
+}
+
+volume master {
+ format = "<span background='#ebcb8b'>  %volume </span>"
+ format_muted = "<span background='#ebcb8b'>  Muted </span>"
+ device = "default"
+ mixer = "Master"
+ mixer_idx = 0
+}
+
+battery 0 {
+ last_full_capacity = true
+ format = "<span background='#a3be8c'>  %status %percentage </span>"
+ format_down = "No Battery"
+ status_chr = "Charging"
+ status_bat = "Battery"
+ status_unk = "Unknown"
+ status_full = "Charged"
+ path = "/sys/class/power_supply/BAT%d/uevent"
+ low_threshold = 10
+ #on_click 1 = "exec --no-startup-id ~/.config/rofi/bin/applet_battery"
+}
+
+tztime local {
+ #format = "<span background='#81a1c1'> %time </span>"
+ #format_time = " %a %-d %b %H:%M"
+ format = "<span background='#81a1c1'>  %a %-d %b %H:%M </span>"
+}
+