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