aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/ddvk
blob: 1161f3eebcbeae57a6790e3703c108013b2b0044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

if pidof vk > /dev/null; 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
    vk-messenger
fi