6 lines
151 B
Bash
Executable file
6 lines
151 B
Bash
Executable file
#!/usr/bin/env sh
|
|
swaymsg '[class="obsidian"]' focus && exit
|
|
|
|
if [ $? -ne 0 ]; then
|
|
obsidian && swaymsg '[class="obsidian"]' focus >/dev/null 2>&1
|
|
fi
|