Files
hypr/scripts/writing/todo.sh
T
Hannes 0c8deaa90b base
2026-05-08 17:53:39 +02:00

34 lines
423 B
Bash
Executable File

#!/bin/bash
# Type "[TODO] "
wtype "[TODO] "
sleep 0.1
# Shift+End (select to end of line)
ydotool key 42:1 107:1 107:0 42:0
# 42 = Shift, 107 = End
sleep 0.1
# Ctrl+C (copy)
ydotool key 29:1 46:1 46:0 29:0
# 29 = Ctrl, 46 = C
sleep 0.1
# Tab twice
ydotool key 15:1 15:0
ydotool key 15:1 15:0
sleep 0.1
# Ctrl+V (paste)
ydotool key 29:1 47:1 47:0 29:0
# 29 = Ctrl, 47 = V
sleep 0.1
# Enter
ydotool key 28:1 28:0