10 lines
304 B
Bash
Executable file
10 lines
304 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source "${HOME}/.local/lib/sp-functions"
|
|
|
|
current_profile=$( get_profile_id )
|
|
|
|
profile_scripts=$( ls "${conf_dir}/profiles/${current_profile}/shortcuts/" )
|
|
op=$( echo -e "${profile_scripts}" | wofi -w 2 -i --dmenu | awk '{print}' )
|
|
|
|
"${conf_dir}/profiles/${current_profile}/shortcuts/${op}"
|