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-03-29 07:23:10 +00:00
|
|
|
cat ~/.aliases.txt | fzf | cut -d : -f 2- | (stty -F /dev/tty -echo; xargs -0 -I _ xdotool type --delay 0 _; stty -F /dev/tty echo) && xdotool key Return
|