Compare commits

..

2 Commits

3 changed files with 8 additions and 6 deletions

View File

@@ -7,7 +7,8 @@
background-alt: #4c5c68; background-alt: #4c5c68;
separatorcolor: #4c5c68; separatorcolor: #4c5c68;
border: #518386; border: #518386;
highlight: #343c41; highlight: #518386;
highlight-background: #343c41;
foreground: #93a1a1; foreground: #93a1a1;
normal-background: var(background); normal-background: var(background);
urgent-background: var(background); urgent-background: var(background);
@@ -93,7 +94,7 @@ element normal.active {
text-color: var(active-foreground); text-color: var(active-foreground);
} }
element selected.normal { element selected.normal {
background-color: var(highlight); background-color: var(highlight-background);
text-color: var(selected-normal-foreground); text-color: var(selected-normal-foreground);
} }
element selected.urgent { element selected.urgent {

View File

@@ -9,10 +9,10 @@ id=1527 # HACK: dirty but works
case $1 in case $1 in
"audio_up") "audio_up")
notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio" "Up to $audio_percentage%" notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio volume" "󰶼 Up to $audio_percentage% 󰶼"
;; ;;
"audio_down") "audio_down")
notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio" "Down to $audio_percentage%" notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio volume" "󰶹 Down to $audio_percentage% 󰶹"
;; ;;
"audio_unmute") "audio_unmute")
notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio" "Unmuted" notify-send -c Audio -r $id -i ~/.config/custom_icons/audio.png "Output Audio" "Unmuted"

View File

@@ -9,6 +9,7 @@ notify() {
mpc readpicture "$(mpc current -f %file%)" > $icon_file mpc readpicture "$(mpc current -f %file%)" > $icon_file
song_title=$(mpc current -f %Title%) song_title=$(mpc current -f %Title%)
song_artist=$(mpc current -f %albumartist%) song_artist=$(mpc current -f %albumartist%)
song_duration=$(mpc current -f %time%)
# check image # check image
is_image=$(cat $icon_file | grep volume | grep repeat) is_image=$(cat $icon_file | grep volume | grep repeat)
@@ -20,10 +21,10 @@ notify() {
case $1 in case $1 in
"playing") "playing")
notify-send -i $final_icon_route -t 6000 -r $id "Currently playing $song_artist" "$song_title" notify-send -i $final_icon_route -t 6000 -r $id "'$song_artist' is playing" "$song_title ($song_duration)"
;; ;;
"paused") "paused")
notify-send -i $final_icon_route -t 6000 -r $id "Player paused" "$song_title" notify-send -i $final_icon_route -t 6000 -r $id "'$song_artist' is paused" "$song_title ($song_duration)"
;; ;;
esac esac
} }