diff options
Diffstat (limited to '.local/bin')
| -rwxr-xr-x | .local/bin/sb-music | 19 | ||||
| -rwxr-xr-x | .local/bin/sbar | 84 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-clock | 2 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-memory | 2 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-mpdup (renamed from .local/bin/sb-mpdup) | 2 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-music | 11 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-volume | 2 |
7 files changed, 18 insertions, 104 deletions
diff --git a/.local/bin/sb-music b/.local/bin/sb-music deleted file mode 100755 index 7ea7032..0000000 --- a/.local/bin/sb-music +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d;/^ERROR/Q" | paste -sd ' ' -;} - -pidof -x sb-mpdup >/dev/null 2>&1 || sb-mpdup >/dev/null 2>&1 & - -case $BLOCK_BUTTON in - 1) mpc status | filter ; setsid -f "$TERMINAL" -e ncmpcpp ;; # right click, pause/unpause - 2) mpc toggle | filter ;; # right click, pause/unpause - 3) mpc status | filter ; notify-send "🎵 Music module" "\- Shows mpd song playing. -- ⏸ when paused. -- Left click opens ncmpcpp. -- Middle click pauses. -- Scroll changes track.";; # right click, pause/unpause - 4) mpc prev | filter ;; # scroll up, previous - 5) mpc next | filter ;; # scroll down, next - 6) mpc status | filter ; "$TERMINAL" -e "$EDITOR" "$0" ;; - *) mpc status | filter ;; -esac diff --git a/.local/bin/sbar b/.local/bin/sbar deleted file mode 100755 index cd32308..0000000 --- a/.local/bin/sbar +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/env sh - -# INIT -printf "$$" > ~/.cache/pidofbar -sec=0 - -# MODULES -update_cpu () { - cpu=" $(grep -o "^[^ ]*" /proc/loadavg )" -} - -update_memory () { - memory=" $(free -h --si | sed -n "2s/\([^ ]* *\)\{2\}\([^ ]*\).*/\2/p")" -} - -update_time () { - time="$(date "+[ %a %d %b ] [ %I:%M %P ]")" -} - -update_music () { - # music="[ $(sb-music) ] " - if [ -z "$(sb-music)" ]; then - music="" - else - music="[ $(sb-music) ] " - fi -} - -# update_bat () { -# # you might need to change the path depending on your device -# read -r bat_status </sys/class/power_supply/BAT1/status -# read -r bat_capacity </sys/class/power_supply/BAT1/capacity -# bat="$bat_status $bat_capacity%" -# } - -update_vol () { - vol="$([ "$(pamixer --get-mute)" = "false" ] && printf ' ' || printf ' ')$(pamixer --get-volume)%" -} - -# For calcurse users, refer https://github.com/pystardust/automeet -#update_event () { -# event="$(calcurse -n | sed 1d | \ -# sed -E "s_^ *\[(.*):(.*)\] ([^\t]*)\t?.*_[\1h \2m->\3]_")" -# [ "[]" = "$event" ] && event="" -#} - - -# modules that don't update on their own need to be run at the start for getting their initial value -# update_vol - -display () { - #printf "%s\n" " $event [$memory $cpu] [$bat] [$backlight] [$vol] $time " - xsetroot -name "$music[ $vol ] [ $memory $cpu ] $time " -} - -# SIGNALLING -# trap "<function>;display" "RTMIN+n" -trap "update_vol;display" "RTMIN" -trap "update_music;display" "RTMIN+10" -# trap "update_bat;display" "RTMIN+2" -# to update it from external commands -## kill -m "$(cat ~/.cache/pidofbar)" -# where m = 34 + n - -while true -do - sleep 1 & wait && { - # to update item ever n seconds with a offset of m - ## [ $((sec % n)) -eq m ] && udpate_item - [ $((sec % 5 )) -eq 0 ] && update_time # update time every 5 seconds - [ $((sec % 5 )) -eq 0 ] && update_vol # update vol every 5 seconds - [ $((sec % 5 )) -eq 0 ] && update_music # update music every 5 seconds - [ $((sec % 5)) -eq 0 ] && update_cpu # update cpu every 15 seconds - [ $((sec % 5)) -eq 0 ] && update_memory - # [ $((sec % 60)) -eq 0 ] && update_bat - #[ $((sec % 300)) -eq 1 ] && update_event - - # how often the display updates ( 5 seconds ) - [ $((sec % 5 )) -eq 0 ] && display - sec=$((sec + 1)) - } -done - - diff --git a/.local/bin/statusbar/sb-clock b/.local/bin/statusbar/sb-clock new file mode 100755 index 0000000..a7d7b0e --- /dev/null +++ b/.local/bin/statusbar/sb-clock @@ -0,0 +1,2 @@ +#!/bin/sh +echo "$(date "+[ %a %d %b ] [ %I:%M %P ]")" diff --git a/.local/bin/statusbar/sb-memory b/.local/bin/statusbar/sb-memory new file mode 100755 index 0000000..3e78a22 --- /dev/null +++ b/.local/bin/statusbar/sb-memory @@ -0,0 +1,2 @@ +#!/bin/sh +echo "[ $(free --mebi | sed -n '2{p;q}' | awk '{printf ("%2.2fGiB", ( $3 / 1024), ($2 / 1024))}') $(sensors | awk '/Core 0/ {print " " $3}') ]" diff --git a/.local/bin/sb-mpdup b/.local/bin/statusbar/sb-mpdup index f67663a..770d44d 100755 --- a/.local/bin/sb-mpdup +++ b/.local/bin/statusbar/sb-mpdup @@ -4,5 +4,5 @@ # music player's status. mpd must be running on X's start for this to work. while : ; do - mpc idle >/dev/null && kill -44 $(cat ~/.cache/pidofbar) || break + mpc idle >/dev/null && kill -45 $(pidof dwmblocks) || break done diff --git a/.local/bin/statusbar/sb-music b/.local/bin/statusbar/sb-music new file mode 100755 index 0000000..0a8e0ca --- /dev/null +++ b/.local/bin/statusbar/sb-music @@ -0,0 +1,11 @@ +#!/bin/sh + +filter() { mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[paused\\].*/⏸/g;/\\[playing\\].*/d;/^ERROR/Q" | paste -sd ' ' -;} + +pidof -x sb-mpdup >/dev/null 2>&1 || sb-mpdup >/dev/null 2>&1 & + +if [ -z "$(filter)" ]; then + echo "" +else + echo "[ $(filter) ]" +fi diff --git a/.local/bin/statusbar/sb-volume b/.local/bin/statusbar/sb-volume new file mode 100755 index 0000000..eefed94 --- /dev/null +++ b/.local/bin/statusbar/sb-volume @@ -0,0 +1,2 @@ +#!/bin/sh +echo [ "$([ "$(pamixer --get-mute)" = "false" ] && printf ' ' || printf ' ')$(pamixer --get-volume)%" ] |
