diff options
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 |