some updates

This commit is contained in:
Hannes
2026-08-14 13:52:56 +02:00
parent a5e11395ee
commit b5ce934840
12 changed files with 104 additions and 720 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/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