mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-07-29 19:32:50 +02:00
9 lines
103 B
Bash
Executable file
9 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PID=$(pidof wvkbd-mobintl)
|
|
|
|
if [ -z $PID ]; then
|
|
wvkbd-mobintl &
|
|
else
|
|
kill $PID
|
|
fi
|