10 lines
154 B
Bash
Executable File
10 lines
154 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [[ "$(playerctl -p spotify status)" = "Playing" ]]; then
|
|
hyprlock --config ~/.config/hyprlock/music.conf
|
|
|
|
else :
|
|
hyprlock
|
|
fi
|
|
|