diff options
author | zachir <zachir@librem.one> | 2023-02-10 12:32:43 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-02-10 12:32:43 -0600 |
commit | 5e74241bb8b2a672a7adcc4a8b6e1dea03f2f5a2 (patch) | |
tree | 24768273a6578345dfe530918c54c86db90a3e11 /herbstluftwm/spncmp | |
parent | 7a2dd5235800003487d43c57d1b76847c692bce4 (diff) |
remove unnecessary cruftminor
Diffstat (limited to 'herbstluftwm/spncmp')
-rwxr-xr-x | herbstluftwm/spncmp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/herbstluftwm/spncmp b/herbstluftwm/spncmp deleted file mode 100755 index 88522fc..0000000 --- a/herbstluftwm/spncmp +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -scratchpad=/tmp/herbstluftwm:spncmp -if xdotool search --onlyvisible --classname 'spncmp'; 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 -onlyvisible -classname 'spncmp' windowunmap - exit - fi -fi -if [ -f $scratchpad ]; then - if ! herbstclient bring $(cat $scratchpad); then - xdotool search -classname 'spncmp' windowmap && exit - fi -fi -if ! xdotool search --classname 'spncmp' windowmap; then - . ~/.profile && alacritty --title 'spncmp' --class 'spncmp' -e zsh -c ncmpcpp & - xdotool search -sync -onlyvisible -classname 'spncmp' - herbstclient attr clients.focus.winid > $scratchpad -fi |