Great Renaming, i3blocks officially changed
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
#!/bin/sh
|
||||
# Give a battery name (e.g. BAT0) as an argument.
|
||||
|
||||
# get xresources colors
|
||||
for x in "$(xrdb -query | sed "s/.*\./export /g;s/:\s*/=\"/g;s/$/\"/g")"; do eval "$x"; done
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
3) pgrep -x dunst >/dev/null && notify-send "<b>🔋 Battery module:</b>
|
||||
🔋: discharging
|
||||
@@ -14,21 +17,19 @@ esac
|
||||
capacity=$(cat /sys/class/power_supply/"$1"/capacity) || exit
|
||||
status=$(cat /sys/class/power_supply/"$1"/status)
|
||||
|
||||
if [ "$capacity" -ge 80 ]; then
|
||||
color="#b8bb26"
|
||||
elif [ "$capacity" -ge 60 ]; then
|
||||
color="#ebdbb2"
|
||||
elif [ "$capacity" -ge 40 ]; then
|
||||
color="#fabd2f"
|
||||
elif [ "$capacity" -ge 20 ]; then
|
||||
color="#fe8019"
|
||||
if [ "$capacity" -ge 75 ]; then
|
||||
color="$color10"
|
||||
elif [ "$capacity" -ge 50 ]; then
|
||||
color="$color15"
|
||||
elif [ "$capacity" -ge 25 ]; then
|
||||
color="$color11"
|
||||
else
|
||||
color="#fb4934"
|
||||
color="$color9"
|
||||
warn="❗"
|
||||
fi
|
||||
|
||||
[ -z $warn ] && warn=" "
|
||||
|
||||
[ "$status" = "Charging" ] && color="#FFF"
|
||||
[ "$status" = "Charging" ] && color="$color15"
|
||||
|
||||
printf "<span color='%s'>%s%s%s</span>" "$color" "$(echo "$status" | sed -e "s/,//g;s/Discharging/🔋/;s/Charging/🔌/;s/Unknown/♻️/;s/Full/⚡/;s/ 0*/ /g;s/ :/ /g")" "$warn" "$(echo "$capacity" | sed -e 's/$/%/')"
|
||||
@@ -9,4 +9,4 @@ $(ps axch -o cmd:15,%cpu --sort=-%cpu | head)" ;;
|
||||
- % is of single core." ;;
|
||||
esac
|
||||
|
||||
sensors | awk '/^temp1/ {print $2}'
|
||||
sensors | awk '/Core 0/ {print $3}'
|
||||
@@ -1,9 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
[ "$(pgrep -x i3mpdupdate | wc -l)" -gt 2 ] && exit
|
||||
|
||||
while : ; do
|
||||
pgrep -x mpd || exit
|
||||
mpc idle > /dev/null
|
||||
pkill -RTMIN+11 i3blocks ;
|
||||
done
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
case $BLOCK_BUTTON in
|
||||
1) $TERMINAL -e transmission-remote-cli
|
||||
esac
|
||||
|
||||
transmission-remote -l | grep % | sed -e "s/.*100%.*/Z/g;s/.*Idle.*/A/g;s/.*%.*/M/g" | sort -h | uniq -c | sed -e "s/Z/🌱/g;s/M/⬇️/g;s/A/⌛️/g" | awk '{print $2, $1}' | tr '\n' ' ' | sed -e "s/ $//g"
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) setsid "$TERMINAL" -e newsboat ;;
|
||||
2) setsid newsup >/dev/null ;;
|
||||
2) setsid newsup >/dev/null & exit ;;
|
||||
3) pgrep -x dunst >/dev/null && notify-send "<b>📰 News module:</b>
|
||||
- Shows unread news items
|
||||
- Shows 🔃 if updating with \`newsup\`
|
||||
26
.scripts/statusbar/torrent
Executable file
26
.scripts/statusbar/torrent
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
|
||||
transmission-remote -l | grep % |
|
||||
sed " # This first sed command is to ensure a desirable order with sort
|
||||
s/.*Stopped.*/A/g;
|
||||
s/.*Seeding.*/Z/g;
|
||||
s/.*100%.*/N/g;
|
||||
s/.*Idle.*/B/g;
|
||||
s/.*%.*/M/g" |
|
||||
sort -h | uniq -c | sed " # Now we replace the standin letters with icons.
|
||||
s/A/🛑/g;
|
||||
s/B/⌛️/g;
|
||||
s/M/🔽/g;
|
||||
s/N/✅/g;
|
||||
s/Z/🌱/g" | awk '{print $2, $1}' | tr '\n' ' ' | sed -e "s/ $//g"
|
||||
|
||||
case $BLOCK_BUTTON in
|
||||
1) $TERMINAL -e transmission-remote-cli ;;
|
||||
3) pgrep -x dunst >/dev/null && notify-send "<b>Torrent module:</b>
|
||||
🛑: paused
|
||||
⏳: waiting
|
||||
🔽: downloading
|
||||
✅: done
|
||||
🌱: done and seeding" ;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user