changing i3blocks

master
tiynger 5 years ago
parent e608e890dc
commit 12fd35d51a

@ -9,7 +9,7 @@ signal=8
[weather]
command=~/.local/bin/statusbar/weather
interval=3600
interval=1200
signal=5
[mailbox]
@ -34,15 +34,15 @@ interval=once
signal=10
[disk]
interval=60
command=disk /
interval=180
command=~/.local/bin/statusbar/disk /
[disk]
interval=60
command=disk /home 🏠
interval=180
command=~/.local/bin/statusbar/disk /home
[battery]
command=~/.local/bin/statusbar/battery BAT0
command=~/.local/bin/statusbar/battery
interval=5
[clock]

File diff suppressed because it is too large Load Diff

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
# Status bar module for disk space
# $1 should be drive mountpoint
@ -15,4 +15,4 @@ case $BLOCK_BUTTON in
- Click to show all disk info." ;;
esac
printf "%s: %s" "$icon" "$(df -h "$1" | awk ' /[0-9]/ {print $3 "/" $2}')"
printf "%s: %s\n" "$icon" "$(df -h "$1" | awk ' /[0-9]/ {print $3 "/" $2}')"

@ -1,7 +0,0 @@
#!/bin/sh
case $BLOCK_BUTTON in
1) groff -mom ~/.local/share/larbs/readme.mom -Tpdf | zathura - ;;
2) i3 restart ;;
3) pgrep -x dunst >/dev/null && notify-send "❓ Help module" "\- Left click to open LARBS guide.
- Middle click to refresh i3.";;
esac; echo "❓"

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
case $BLOCK_BUTTON in
1) $TERMINAL -e nmtui ;;
@ -14,4 +14,4 @@ esac
[ ! -n "${wifiicon+var}" ] && wifiicon=$(grep "^\s*w" /proc/net/wireless | awk '{ print "📶", int($3 * 100 / 70) "%" }')
printf "%s %s" "$wifiicon" "$(cat /sys/class/net/e*/operstate | sed "s/down/❎/;s/up/🌐/")"
printf "%s %s\n" "$wifiicon" "$(cat /sys/class/net/e*/operstate | sed "s/down/❎/;s/up/🌐/")"

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
location="$1"; [ -z "$location" ] || { location="$location+" && rm -f "$HOME/.local/share/weatherreport" ;}
getforecast() { ping -q -c 1 1.1.1.1 >/dev/null || exit 1

Loading…
Cancel
Save