From 83f0a5314758880bc24846c500eecf30dc40dde8 Mon Sep 17 00:00:00 2001 From: lickthecheese Date: Sat, 11 Jul 2020 17:08:19 -0400 Subject: [PATCH] i3 configuration --- .config/.i3status | 54 +++++++++++++++++++++++++++++++++++++++++++++++ .config/i3 | 1 + 2 files changed, 55 insertions(+) create mode 100644 .config/.i3status create mode 160000 .config/i3 diff --git a/.config/.i3status b/.config/.i3status new file mode 100644 index 0000000..5a9c0b7 --- /dev/null +++ b/.config/.i3status @@ -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 = false + interval = 5 +} + +order += "disk /home/" +order += "wireless _first_" +order += "ethernet _first_" +order += "battery all" +order += "cpu_temperature 0" +order += "load" +order += "tztime utc" +order += "tztime local" + +wireless _first_ { + format_up = "W: (%quality at %essid) %ip" + format_down = "W: down" +} + +battery all { + format = "%status %percentage %remaining" + last_full_capacity = true + hide_seconds = false +} + +tztime utc { + format = "%H:%M" + timezone = "Etc/UTC" +} + +tztime local { + format = "%Y-%m-%d %H:%M:%S" +} + +load { + format = "%1min" +} + +cpu_temperature 0 { + format = "%degrees C" + path = "/sys/class/thermal/thermal_zone0/temp" +} + +disk "/home/" { + format = "%avail" +} diff --git a/.config/i3 b/.config/i3 new file mode 160000 index 0000000..7000b46 --- /dev/null +++ b/.config/i3 @@ -0,0 +1 @@ +Subproject commit 7000b46c9cf273548868de8c8c4927e45c345cd0