From 956df69d7496081db5e7b3621a0bcc7b9d7f7dfc Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 8 Dec 2021 11:52:16 +0100 Subject: move to .config folder --- i3blocks/config | 39 --------------------------------------- i3blocks/i3_battery.sh | 18 ------------------ 2 files changed, 57 deletions(-) delete mode 100644 i3blocks/config delete mode 100755 i3blocks/i3_battery.sh (limited to 'i3blocks') diff --git a/i3blocks/config b/i3blocks/config deleted file mode 100644 index 6653643..0000000 --- a/i3blocks/config +++ /dev/null @@ -1,39 +0,0 @@ -command=/usr/share/i3blocks/$BLOCK_NAME -separator_block_width=15 - -[weather] -command=curl -Ss 'https://wttr.in/Catania?0&T&Q' | cut -c 16- | head -2 | xargs echo -interval=3600 -color=#A4C2F4 - -[memory] -label=MEM -separator=false -interval=30 - -[disk] -label=DISK -interval=30 - -[cpu_usage] -label=CPU -interval=10 -min_width=CPU: 100.00% - -[wifi] -command=iwgetid -r | tr '\n' ' ' && grep $(iwgetid -m | awk '{ printf "%s", $1 }') /proc/net/wireless | awk '{ printf "%i%\n", int($3 * 100 / 70) }';exit 0 instance=wlp2s0 -interval=5 -label= - -[battery] -command=i3_battery.sh -interval=10 - -[volume] -command=pulsemixer --get-volume | cut -d " " -f 1; exit 0 -interval=1 -label= - -[time] -command=date -interval=1 diff --git a/i3blocks/i3_battery.sh b/i3blocks/i3_battery.sh deleted file mode 100755 index 97ea493..0000000 --- a/i3blocks/i3_battery.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -BAT=$(acpi -b | grep -E -o '[0-9][0-9]?%') -CHECK_CHARGING=$(acpi -b | grep -E -o 'Charging') - -# Full and short texts -echo "Battery: $BAT" -echo "BAT: $BAT" - -if [ "$CHECK_CHARGING" != "" ]; then - echo "#1abc9c" - exit 0 -fi -# Set urgent flag below 5% or use orange below 20% -[ ${BAT%?} -le 5 ] && exit 33 -[ ${BAT%?} -le 35 ] && echo "#d35400" - -exit 0 -- cgit v1.2.3-18-g5258