aboutsummaryrefslogtreecommitdiff
path: root/.i3status.conf
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-08-26 23:53:25 +0200
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-08-26 23:53:25 +0200
commit0c62d680eeb05b7fd0430bc4ab3eb9a6d23611e1 (patch)
tree4aa79460ee0df7f16dd2388c90a0a3e7e0f10d06 /.i3status.conf
parent609a2c4ed5947074b9bfcaad1075c0975fac1d85 (diff)
downloaddotfiles-0c62d680eeb05b7fd0430bc4ab3eb9a6d23611e1.tar.gz
dotfiles-0c62d680eeb05b7fd0430bc4ab3eb9a6d23611e1.zip
Remove i3 setup
I am no longer on i3, and if I ever want to switch back to it, I can always go back to git's logs. Let's reduce maintenance surface. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to '.i3status.conf')
-rw-r--r--.i3status.conf66
1 files changed, 0 insertions, 66 deletions
diff --git a/.i3status.conf b/.i3status.conf
deleted file mode 100644
index 92576a4..0000000
--- a/.i3status.conf
+++ /dev/null
@@ -1,66 +0,0 @@
-# i3status configuration file.
-# see "man i3status" for documentation.
-# Largely based on https://github.com/flavio/dotfiles.
-
-# 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
- color_good = "#859900"
- color_degraded = "#b58900"
- color_bad = "#dc322f"
- interval = 5
-}
-
-order += "disk /"
-order += "disk /home"
-order += "disk /home/backup"
-order += "ethernet br0"
-# NOTE: uncomment this and remove the previous line if you are using a laptop.
-#order += "wireless wlan0"
-order += "load"
-order += "volume master"
-order += "tztime local"
-
-# Yes, I'm weird :P Use whatever ethernet interface you have here.
-# NOTE: remove this if you are using a laptop.
-ethernet br0 {
- format_up = "E: %ip"
- format_down = "E: down"
-}
-
-# NOTE: use this if you are using a laptop.
-#wireless wlp3s0 {
-#format_up = "W: (%quality at %essid) %ip"
-#format_down = "W: down"
-#}
-
-tztime local {
- format = "%Y-%m-%d %H:%M"
-}
-
-load {
- format = "%1min"
-}
-
-disk "/" {
- format = "/ %free"
-}
-
-disk "/home" {
- format = "/home %free"
-}
-
-disk "/home/backup" {
- format = "/home/backup %free"
-}
-
-volume master {
- format = "♪: %volume"
- device = "default"
- mixer = "Master"
- mixer_idx = 0
-}