This commit is contained in:
Hannes
2026-05-08 17:53:39 +02:00
commit 0c8deaa90b
70 changed files with 3448 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
wtype " () [tmdb-]"
+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