.config/i3status/i3status.conf (1410B)
1 # i3status configuration file. 2 # see "man i3status" for documentation. 3 4 # It is important that this file is edited as UTF-8. 5 # The following line should contain a sharp s: 6 # ß 7 # If the above line is not correctly displayed, fix your editor first! 8 9 general { 10 colors = true 11 interval = 1 12 } 13 14 order += "volume master" 15 order += "cpu_usage" 16 order += "memory" 17 order += "battery 0" 18 order += "tztime local" 19 order += "tztime buenos_aires" 20 21 22 wireless _first_ { 23 format_up = " 📶: connected" 24 format_down = " 📶: down" 25 } 26 27 ethernet _first_ { 28 format_up = " E: Connected" 29 format_down = " E: unpluggled" 30 } 31 32 battery 0 { 33 format = " %status %percentage %remaining" 34 format_down = " No battery" 35 status_chr = "⚡:" 36 status_bat = "🔋:" 37 status_unk = "? UNK" 38 status_full = "🔌:" 39 path = "/sys/class/power_supply/BAT%d/uevent" 40 low_threshold = 20 41 threshold_type = percentage 42 last_full_capacity = true 43 integer_battery_capacity = true 44 } 45 46 memory { 47 format = " 🧮: %used" 48 threshold_degraded = "4G" 49 # format_degraded = "MEMORY < %available" 50 } 51 52 volume master { 53 format = " 🔊: %volume" 54 format_muted = " 🔇: %volume" 55 device = "pulse" 56 } 57 58 tztime local { 59 format = " 📅: %a %e %b" 60 } 61 # 62 tztime buenos_aires { 63 format = " 🕒: %H:%M" 64 } 65 66 tztime berlin { 67 format = "" 68 } 69 70 read_file uptime { 71 path = "/proc/uptime" 72 } 73 74 cpu_usage { 75 format = " 📟: %usage" 76 }