9 lines
195 B
Bash
Executable file
9 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
|
|
script_dir=$(dirname "${0}")
|
|
|
|
options=$( ls ${script_dir}"/.Home Assistant/" )
|
|
|
|
op=$( echo -e "${options}" | wofi -i --dmenu | awk '{print}' )
|
|
|
|
"$(dirname $0)/.Home Assistant/${op}"
|