diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2021-02-02 15:49:15 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2021-02-02 15:49:15 -0500 |
commit | c148f05564d6a08b63357892316f018bbae0c80c (patch) | |
tree | 9a1a8aef029b0edd63c1d1482bcd591ca6572e84 | |
parent | 0358cffe4714e781ff02abcf1574e6cb639ee321 (diff) |
opout now interacts with dwm:
-rwxr-xr-x | .local/bin/opout | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/opout b/.local/bin/opout index 2c61400..25a8aa0 100755 --- a/.local/bin/opout +++ b/.local/bin/opout @@ -8,4 +8,4 @@ case "$1" in *.tex|*.rnw|*.gd|*.md|*.rmd|*.ms|*.me|*.mom) setsid "$READER" "$basename".pdf >/dev/null 2>&1 & ;; *.html) setsid "$BROWSER" --new-window "$basename".html >/dev/null 2>&1 & ;; *.sent) setsid sent "$1" >/dev/null 2>&1 & ;; -esac +esac && sleep 1 && dwmc rotatestack -1 && dwmc focusmaster & |