diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-02-20 10:16:16 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-02-20 10:16:16 +0300 |
commit | bcf80acd07b16898340b9dfdcb64e27da5cdd838 (patch) | |
tree | 2f7207c9d443bfedfe126a6a228ad750284e7beb /dotfiles | |
parent | 06fbe7de34767fa62e15468db4abe36ac28fd90f (diff) | |
download | swayrice-bcf80acd07b16898340b9dfdcb64e27da5cdd838.tar.gz swayrice-bcf80acd07b16898340b9dfdcb64e27da5cdd838.zip |
updated script for vk-messenger in and out of scratchpad
Diffstat (limited to 'dotfiles')
-rwxr-xr-x | dotfiles/.local/bin/ddvk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/.local/bin/ddvk b/dotfiles/.local/bin/ddvk index dedd2c9..1161f3e 100755 --- a/dotfiles/.local/bin/ddvk +++ b/dotfiles/.local/bin/ddvk @@ -1,12 +1,12 @@ #!/bin/sh if pidof vk > /dev/null; then - if [ -z $(swaymsg -t get_tree | grep -B 5 'vk' | head -n 1 | grep 'true') ]; then + if [ -z $(swaymsg -t get_tree | grep -B 6 'vk' | head -n 1 | grep 'true') ]; then swaymsg '[instance="vk"] scratchpad show' else swaymsg '[instance="vk"] move scratchpad' fi else - xway vk-messenger + vk-messenger fi |