dotfiles/pianobar/.config/pianobar/change_station.sh

8 lines
389 B
Bash
Raw Normal View History

2024-08-12 17:39:56 -07:00
#!/bin/bash
2025-05-15 10:38:03 -07:00
dmenu="bemenu -p station --center --list 20 down --width-factor 0.5 --border 2 --bdr #f6c2e7"
2025-07-31 21:09:23 -07:00
# dmenu="fuzzel -p station -d -w 60"
2025-05-15 10:38:03 -07:00
choice=$(cat "$HOME/.config/pianobar/info" | grep "station[0-9]" | cut -d "=" -f 2 | $dmenu)
2024-08-12 17:39:56 -07:00
[ -z "$choice" ] || echo "s$(cat "$HOME/.config/pianobar/info" | grep "$choice" | cut -d "=" -f 1 | sed "s/station//")" > "$HOME/.config/pianobar/ctl"