5 lines
176 B
Bash
Executable file
5 lines
176 B
Bash
Executable file
#!/usr/bin/sh
|
|
# Script to have rofi show and run aliases
|
|
|
|
rofi -run-list-command "alias | awk -F= \"{print \\\$1}\"" -run-command "/usr/bin/zsh -i -c '{cmd}'" -rnow -show run
|
|
|