hide icons
This commit is contained in:
parent
9f225254b9
commit
b6fb3e291e
|
|
@ -126,17 +126,20 @@ until [[ $SUCCESS == "TRUE" ]]; do
|
||||||
export DISPLAY=:1.0
|
export DISPLAY=:1.0
|
||||||
|
|
||||||
# Hide Lower Panel, Temp Removal
|
# Hide Lower Panel, Temp Removal
|
||||||
su $USER -c "xfconf-query -c xfce4-panel -p /panels -t int -s 1 -a 2>&1>/workspace/log"
|
su $USER -c "xfconf-query -c xfce4-panel -p /panels -t int -s 1 -a"
|
||||||
|
|
||||||
# Set branding
|
# Set branding
|
||||||
if [ -n "$MENU_NAME" ]; then
|
if [ -n "$MENU_NAME" ]; then
|
||||||
su $USER -c "xfconf-query -c xfce4-panel -p /plugins/plugin-1/button-title -n -t string -s '$MENU_NAME'"
|
su $USER -c "xfconf-query -c xfce4-panel -np /plugins/plugin-1/button-title -t string -s '$MENU_NAME'"
|
||||||
fi
|
fi
|
||||||
if [ -n "$MENU_ICON" ]; then
|
if [ -n "$MENU_ICON" ]; then
|
||||||
su $USER -c "xfconf-query -c xfce4-panel -p /plugins/plugin-1/button-icon -n -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
|
||||||
|
|
||||||
# Add option to hide menu icons
|
# Hide 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
|
||||||
|
|
||||||
# Remove plugins
|
# Remove plugins
|
||||||
su $USER -c "
|
su $USER -c "
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue