aboutsummaryrefslogtreecommitdiff
path: root/herbstluftwm/bar/sysinfo_bar
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-12-25 20:58:03 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-12-25 20:58:03 +0530
commitb7487a098cc140448a633e763d1e7dd2fd087653 (patch)
treea5721c56fdf06a83775bfdf671733d2df87fe06f /herbstluftwm/bar/sysinfo_bar
parent93657d7a40972e39ea8d059efad608a39b372985 (diff)
moved lemonbar to different folder
Diffstat (limited to 'herbstluftwm/bar/sysinfo_bar')
-rwxr-xr-xherbstluftwm/bar/sysinfo_bar25
1 files changed, 0 insertions, 25 deletions
diff --git a/herbstluftwm/bar/sysinfo_bar b/herbstluftwm/bar/sysinfo_bar
deleted file mode 100755
index 83158c50..00000000
--- a/herbstluftwm/bar/sysinfo_bar
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/zsh
-BAR_COLOR="#171520"
-COLOR1="#0d0c13"
-COLOR2="#70638F"
-
-A0="%{B"$COLOR1"}%{F"$COLOR2"}%{B"$COLOR2"}%{F"$COLOR1"}"
-A1="%{B"$COLOR2"}%{F"$COLOR1"}%{B"$COLOR1"}%{F"$COLOR2"}"
-A2="%{B"$COLOR1"}%{F"$COLOR2"}%{B"$COLOR2"}%{F"$COLOR1"}"
-
-right_modules() {
- clock=$(</home/zt/.cache/lemon/clock)
- volume=$(</home/zt/.cache/lemon/volume)
- root=$(</home/zt/.cache/lemon/disk_root)
- home=$(</home/zt/.cache/lemon/disk_home)
- mem=$(</home/zt/.cache/lemon/mem)
- cpu_load=$(</home/zt/.cache/lemon/cpu_load)
- cpu_temp=$(</home/zt/.cache/lemon/cpu_temp)
- weather=$(</home/zt/.cache/lemon/weather)
- echo $A0$A1$weather$A2$cpu_temp$A1$cpu_load$A2$mem$A1$root$A2$home$A1$volume$A2$clock$A1
-}
-
-while :; do
- echo "%{r}"$(right_modules)
- sleep 0.1
-done