6 lines
120 B
Bash
Executable File
6 lines
120 B
Bash
Executable File
#!/bin/bash
|
|
command="$(dmenu_path | dmenu)"
|
|
if [ ! -z "$command" ]; then
|
|
urxvtc -e abduco -A "$command" $command
|
|
fi
|