2024-03-16 15:34:40 +00:00
|
|
|
#!/bin/bash
|
2024-03-29 06:50:32 +00:00
|
|
|
trap 'clear' SIGINT
|
2024-03-16 15:34:40 +00:00
|
|
|
setxkbmap
|
2024-04-06 15:00:07 +00:00
|
|
|
cat ~/.aliases.txt | fzf | cut -d : -f 2- | sed s/\ // | (stty -F /dev/tty -echo; xargs -0 -I _ xdotool type --delay 0 _; stty -F /dev/tty echo) && xdotool key KP_Enter
|