summaryrefslogtreecommitdiff
path: root/herbstluftwm/spmpv
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-10 12:32:43 -0600
committerzachir <zachir@librem.one>2023-02-10 12:32:43 -0600
commit5e74241bb8b2a672a7adcc4a8b6e1dea03f2f5a2 (patch)
tree24768273a6578345dfe530918c54c86db90a3e11 /herbstluftwm/spmpv
parent7a2dd5235800003487d43c57d1b76847c692bce4 (diff)
remove unnecessary cruftminor
Diffstat (limited to 'herbstluftwm/spmpv')
-rwxr-xr-xherbstluftwm/spmpv22
1 files changed, 0 insertions, 22 deletions
diff --git a/herbstluftwm/spmpv b/herbstluftwm/spmpv
deleted file mode 100755
index 76038ab..0000000
--- a/herbstluftwm/spmpv
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-scratchpad=/tmp/herbstluftwm:spmpv
-if [ -f "$scratchpad" ]; then
- if xdotool search -class 'mpv'; then
- if [ "$(herbstclient list_monitors | grep '[FOCUS]' | cut -d\" -f2)" = "$(herbstclient attr clients.$(cat $scratchpad) | grep 's - - tag' | awk '{ print $6 }' | sed 's/\"//g')" ]; then
- xdotool search -class 'mpv' windowunmap
- exit
- fi
- fi
- if ! herbstclient bring $(cat $scratchpad); then
- xdotool search -class 'mpv' windowmap && exit
- fi
- if ! xdotool search -class 'mpv' windowmap; then
- xdotool search -sync -onlyvisible -class 'mpv'
- herbstclient attr clients.focus.winid > $scratchpad
- fi
-else
- if ! xdotool search -class 'mpv' windowmap; then
- xdotool search -sync -onlyvisible -class 'mpv'
- herbstclient attr clients.focus.winid > $scratchpad
- fi
-fi