mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 14:05:39 +00:00
39 lines
684 B
Bash
39 lines
684 B
Bash
#!/bin/bash
|
|
|
|
border="$(zenity --list \
|
|
--title "RetroDECK" \
|
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
|
--text="Select the borders type" \
|
|
--hide-header \
|
|
--column=Border \
|
|
"None" \
|
|
"Light" \
|
|
"Dark")"
|
|
|
|
if [ $border == "None" ]
|
|
then
|
|
return
|
|
elif [ $border == "Light" ]
|
|
then
|
|
return
|
|
elif [ $border == "Dark" ]
|
|
then
|
|
return
|
|
fi
|
|
|
|
shader="$(zenity --list \
|
|
--title "RetroDECK" \
|
|
--window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" \
|
|
--text="Select the shader type" \
|
|
--hide-header \
|
|
--column=Border \
|
|
"None" \
|
|
"Retro")"
|
|
|
|
if [ $shader == "None" ]
|
|
then
|
|
return
|
|
elif [ $shader == "Retro" ]
|
|
then
|
|
return
|
|
fi |