aboutsummaryrefslogtreecommitdiff
path: root/.config/lemonblocks
diff options
context:
space:
mode:
Diffstat (limited to '.config/lemonblocks')
-rw-r--r--.config/lemonblocks/config.txt5
-rwxr-xr-x.config/lemonblocks/modules/cpu_load.sh10
-rwxr-xr-x.config/lemonblocks/modules/cpu_temp.sh5
-rwxr-xr-x.config/lemonblocks/modules/date.sh3
-rwxr-xr-x.config/lemonblocks/modules/mem_usage.sh4
-rwxr-xr-x.config/lemonblocks/modules/volume.sh9
-rwxr-xr-x.config/lemonblocks/start.sh41
7 files changed, 0 insertions, 77 deletions
diff --git a/.config/lemonblocks/config.txt b/.config/lemonblocks/config.txt
deleted file mode 100644
index 62991c3..0000000
--- a/.config/lemonblocks/config.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-0,5,NULL,/usr/bin/lbscripts/volume.sh,r,NULL,130F23,fe6c69,pamixer -t; killall lemonblocks -5,NULL,pavucontrol && killall lemonblocks -5,pamixer -i 5; killall lemonblocks -5,pamixer -d 5; killall lemonblocks -5, ,
-5,4,NULL,/usr/bin/lbscripts/cpu_temp.sh,r,NULL,130F23,1045cc,NULL,NULL,NULL,NULL,NULL, ,
-5,3,NULL,/usr/bin/lbscripts/cpu_load.sh,r,NULL,130F23,7410cc,st -e htop,NULL,NULL,NULL,NULL, ,
-5,2,NULL,/usr/bin/lbscripts/mem_usage.sh,r,NULL,130F23,10cc8e,NULL,NULL,NULL,NULL,NULL, ,
-30,1,NULL,/usr/bin/lbscripts/date.sh,r,NULL,130F23,6C71C4,NULL,NULL,NULL,NULL,NULL, ,
diff --git a/.config/lemonblocks/modules/cpu_load.sh b/.config/lemonblocks/modules/cpu_load.sh
deleted file mode 100755
index 1a677a9..0000000
--- a/.config/lemonblocks/modules/cpu_load.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-read cpu a b c previdle rest < /proc/stat
-prevtotal=$((a+b+c+previdle))
-sleep 0.5
-read cpu a b c idle rest < /proc/stat
-total=$((a+b+c+idle))
-cpu=$((100*( (total-prevtotal) - (idle-previdle) ) / (total-prevtotal) ))
-
-printf " CPU:%s%% " $cpu
diff --git a/.config/lemonblocks/modules/cpu_temp.sh b/.config/lemonblocks/modules/cpu_temp.sh
deleted file mode 100755
index a5286ad..0000000
--- a/.config/lemonblocks/modules/cpu_temp.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-CEL=$'\xc2\xb0C'
-temp=$( cat /sys/devices/virtual/thermal/thermal_zone0/temp )
-temp=`expr $temp / 1000`
-printf " TEMP:$temp$CEL "
diff --git a/.config/lemonblocks/modules/date.sh b/.config/lemonblocks/modules/date.sh
deleted file mode 100755
index dcd0681..0000000
--- a/.config/lemonblocks/modules/date.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/bash
-date=$(date +"%d %b(%A) %H:%M")
-printf " $date "
diff --git a/.config/lemonblocks/modules/mem_usage.sh b/.config/lemonblocks/modules/mem_usage.sh
deleted file mode 100755
index 6b939eb..0000000
--- a/.config/lemonblocks/modules/mem_usage.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-mem=$(free -m | grep Mem: | awk '{print$3 / $2 * 100}')
-printf " MEM: %.0f%% " $mem
diff --git a/.config/lemonblocks/modules/volume.sh b/.config/lemonblocks/modules/volume.sh
deleted file mode 100755
index a0843dd..0000000
--- a/.config/lemonblocks/modules/volume.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-printf " VOL:$(pamixer --get-volume-human)% "
-# if [ $volume_level == "muted" ]; then
- # printf "%{F#ff0058}VOL: $(pamixer --get-volume)%{F-}"
-# else
- # printf "VOL: $volume_level"
-# fi
-
diff --git a/.config/lemonblocks/start.sh b/.config/lemonblocks/start.sh
deleted file mode 100755
index 0537b89..0000000
--- a/.config/lemonblocks/start.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-
-CLICKABLE_AREAS=8
-PANEL_WIDTH=566
-PANEL_HEIGHT=21
-PANEL_HORIZONTAL_OFFSET=800
-PANEL_VERTICAL_OFFSET=0
-PANEL_FONT="Source Han Sans JP:size=10"
-PANEL_ICON_FONT="RobotoMono Nerd Font:style=Regular:size=15"
-COLOR_DEFAULT_FG="#FFFFFF"
-COLOR_DEFAULT_BG="#171520"
-UNDERLINE_HEIGHT=3
-PANEL_WM_NAME="lemon"
-
-# Kill potential instances of lemonblocks
-#killall "lemonbar"
-killall "lemonblocks"
-
-# Make sure the named pipe already exists
-mkfifo /tmp/lemonblockspipe
-
-# start xmonad status lemonbar
-# Start lemonbar
-cat "/tmp/lemonblockspipe" | lemonbar -b -a "$CLICKABLE_AREAS" \
- -g "$PANEL_WIDTH"x"$PANEL_HEIGHT"+"$PANEL_HORIZONTAL_OFFSET"+"$PANEL_VERTICAL_OFFSET" \
- -o -3 -f "$PANEL_FONT" -o 0 -f "$PANEL_ICON_FONT" -F "$COLOR_DEFAULT_FG" -B "$COLOR_DEFAULT_BG" \
- -u "$UNDERLINE_HEIGHT" -n "$PANEL_WM_NAME" | bash &
-
-sleep 0.5
-
-# Make sure lemonbar is hidden below a fullscreen window
-## Bspwm
-# wid=$(xdo id -a "$PANEL_WM_NAME")
-# xdo above -t "$(xdo id -N Bspwm -n root | sort | head -n 1)" "$wid"
-
-if [ $# -eq 0 ]
-then
- lemonblocks
-else
- ./bin/lemonblocks
-fi