Added menu options
This commit is contained in:
parent
b6fb3e291e
commit
8fe25be32f
|
|
@ -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'"
|
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/button-icon -t string -s '$MENU_ICON'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Hide menu icons
|
# Set menu icons
|
||||||
if [ -n "$SHOW_MENU_ICONS" ]; then
|
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'"
|
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/show-menu-icons -t bool -s '$SHOW_MENU_ICONS'"
|
||||||
fi
|
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
|
# Remove plugins
|
||||||
su $USER -c "
|
su $USER -c "
|
||||||
# Copy Existing Array
|
# Copy Existing Array
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue