2024-11-29 14:19:35 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
active_window=$(hyprctl activewindow -j | jq -r ".class")
|
|
|
|
|
|
|
|
if [ "$active_window" = "anki" ]; then
|
|
|
|
if [ "$1" = "space" ]; then
|
|
|
|
wtype " "
|
|
|
|
else
|
|
|
|
wtype "1"
|
|
|
|
fi
|
2024-12-03 19:05:18 -05:00
|
|
|
else
|
|
|
|
if [ "$1" = "space" ]; then
|
|
|
|
wtype -M ctrl -k c
|
|
|
|
else
|
|
|
|
wtype -M ctrl -k v
|
|
|
|
fi
|
2024-11-29 14:19:35 -05:00
|
|
|
fi
|