21 lines
498 B
Bash
Executable File
21 lines
498 B
Bash
Executable File
|
|
# Define the appimages to be listed in the menu
|
|
APPIMAGES=( $(ls ~/PROGRAMS/BOXEs/*.app) )
|
|
|
|
echo "APPIMAGES: ${APPIMAGES[@]}"
|
|
|
|
|
|
#~/.config/hypr/LibreOS/wofi/APPS_CONFIG
|
|
#~/.config/hypr/LibreOS/wofi/STYLE
|
|
|
|
# Set default values for configuration paths
|
|
MODE="run"
|
|
CONFIG_PATH="~/.config/hypr/LibreOS/wofi/APPS_CONFIG"
|
|
STYLE_PATH="~/.config/hypr/LibreOS/wofi/STYLE"
|
|
|
|
# Loop through each APPIMAGE file and set the wofi configuration paths based on its name
|
|
for APPIMAGE in "${APPIMAGES[@]}"; do
|
|
|
|
done
|
|
|