Adds dock style

This commit is contained in:
Michel Fedde 2025-02-07 15:35:56 +01:00
parent 8372d7f669
commit bc2caa6c11
3 changed files with 47 additions and 6 deletions

View file

@ -19,7 +19,6 @@ notify_cmd_shot_win="${notify_cmd_base}"
notify_view() {
if [[ "$1" == "active" ]]; then
if [[ -e "${active_window_path}" ]]; then
"${sDIR}/Sounds.sh" --screenshot
resp=$(timeout 5 ${notify_cmd_shot_win} " Screenshot of:" " ${active_window_class} Saved.")
case "$resp" in
action1)
@ -35,7 +34,6 @@ notify_view() {
fi
elif [[ "$1" == "swappy" ]]; then
"${sDIR}/Sounds.sh" --screenshot
resp=$(${notify_cmd_shot} " Screenshot:" " Captured by Swappy")
case "$resp" in
action1)
@ -49,7 +47,6 @@ notify_view() {
else
local check_file="${dir}/${file}"
if [[ -e "$check_file" ]]; then
"${sDIR}/Sounds.sh" --screenshot
resp=$(timeout 5 ${notify_cmd_shot} " Screenshot" " Saved")
case "$resp" in
action1)
@ -149,4 +146,3 @@ else
fi
exit 0