Initial configuration
This commit is contained in:
commit
4802279787
28 changed files with 1890 additions and 0 deletions
43
config/packages/i3status/config
Normal file
43
config/packages/i3status/config
Normal file
|
@ -0,0 +1,43 @@
|
|||
# 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 = true
|
||||
color_good = "#63C5DA"
|
||||
interval = 5
|
||||
}
|
||||
|
||||
order += "ethernet _first_"
|
||||
order += "disk /"
|
||||
order += "load"
|
||||
order += "memory"
|
||||
order += "tztime local"
|
||||
|
||||
ethernet _first_ {
|
||||
format_up = "E: %ip (%speed)"
|
||||
format_down = "E: down"
|
||||
}
|
||||
|
||||
disk "/" {
|
||||
format = "%avail"
|
||||
}
|
||||
|
||||
load {
|
||||
format = "%1min"
|
||||
}
|
||||
|
||||
memory {
|
||||
format = "%used | %available"
|
||||
threshold_degraded = "1G"
|
||||
format_degraded = "MEMORY < %available"
|
||||
}
|
||||
|
||||
tztime local {
|
||||
format = "%a %d/%m/%Y %H:%M"
|
||||
}
|
||||
|
3
config/packages/i3status/default.nix
Normal file
3
config/packages/i3status/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
home.file."/home/vylpes/.config/i3status/config".source = ./config;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue