mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-07 08:56:16 +01:00
Added menu options
This commit is contained in:
parent
b6fb3e291e
commit
8fe25be32f
1 changed files with 11 additions and 1 deletions
|
|
@ -136,11 +136,21 @@ until [[ $SUCCESS == "TRUE" ]]; do
|
|||
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/button-icon -t string -s '$MENU_ICON'"
|
||||
fi
|
||||
|
||||
# Hide menu icons
|
||||
# Set menu icons
|
||||
if [ -n "$SHOW_MENU_ICONS" ]; then
|
||||
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/show-menu-icons -t bool -s '$SHOW_MENU_ICONS'"
|
||||
fi
|
||||
|
||||
# Set tooltips
|
||||
if [ -n "$SHOW_TOOLTIPS" ]; then
|
||||
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/show-tooltips -t bool -s '$SHOW_TOOLTIPS'"
|
||||
fi
|
||||
|
||||
# Set menu icons
|
||||
if [ -n "$SHOW_GENERIC_NAMES" ]; then
|
||||
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/show-generic-names -t bool -s '$SHOW_GENERIC_NAMES'"
|
||||
fi
|
||||
|
||||
# Remove plugins
|
||||
su $USER -c "
|
||||
# Copy Existing Array
|
||||
|
|
|
|||
Loading…
Reference in a new issue