aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i3status54
-rw-r--r--symlink.sh1
2 files changed, 55 insertions, 0 deletions
diff --git a/i3status b/i3status
new file mode 100644
index 0000000..2550dc2
--- /dev/null
+++ b/i3status
@@ -0,0 +1,54 @@
1general {
2 colors = true
3 interval = 5
4}
5
6order += "cpu_temperature 0"
7order += "load"
8order += "memory"
9order += "disk /"
10order += "ethernet enp5s0"
11order += "tztime brisbane"
12order += "tztime ny"
13order += "tztime local"
14
15load {
16 format = "CPU: %5min"
17}
18
19memory {
20 format = "RAM: %free"
21}
22
23disk "/" {
24 format = "DISK: %free"
25}
26
27ethernet enp5s0 {
28 format_up = "NET: %ip (%speed)"
29 format_down = "E: down"
30}
31
32cpu_temperature 0 {
33 format = "TEMP: %degrees°C"
34 path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
35}
36
37tztime local {
38 format = "%Y-%m-%d %H:%M:%S"
39}
40
41tztime brisbane {
42 format = "Brisbane: %H:%M"
43 timezone = "Australia/Brisbane"
44}
45
46tztime ny {
47 format = "NY: %H:%M"
48 timezone = "America/New_York"
49}
50
51tztime local {
52 format = "Local: %Y-%m-%d %H:%M:%S"
53}
54
diff --git a/symlink.sh b/symlink.sh
index a026315..82ddad6 100644
--- a/symlink.sh
+++ b/symlink.sh
@@ -2,5 +2,6 @@ ln -s ~/.dotfiles/shenanigans.sh ~/.shenanigans.sh
2ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf 2ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
3ln -s ~/.dotfiles/vimrc ~/.vimrc 3ln -s ~/.dotfiles/vimrc ~/.vimrc
4ln -s ~/.dotfiles/i3config ~/.config/i3/config 4ln -s ~/.dotfiles/i3config ~/.config/i3/config
5ln -s ~/.dotfiles/i3status ~/.config/i3status/config
5ln -s ~/.dotfiles/rssfeeds ~/.newsboat/urls 6ln -s ~/.dotfiles/rssfeeds ~/.newsboat/urls
6 7