2023-09-21 05:15:01 +00:00
|
|
|
#!/bin/bash
|
2023-10-10 17:53:09 +00:00
|
|
|
set_wallpaper $HOME/.media/default_wallpaper.png
|
|
|
|
xfce4-terminal
|
|
|
|
|
|
|
|
# Add application launcher
|
|
|
|
mkdir -p $HOME/.config/xfce4/panel/launcher-18
|
|
|
|
ln /usr/share/applications/klayoutEditor.desktop $HOME/.config/xfce4/panel/launcher-18
|
|
|
|
xfconf-query -c xfce4-panel -p /plugins/plugin-18 -t string -s "launcher" --create
|
|
|
|
xfconf-query -c xfce4-panel -p /plugins/plugin-18/items -t string -s "klayoutEditor.desktop" -a --create
|
|
|
|
|
|
|
|
# Delete plugin id array
|
|
|
|
xfconf-query -c xfce4-panel -p /panels/panel-2/plugin-ids -rR
|
|
|
|
|
|
|
|
# Recreate id array with new values
|
|
|
|
xfconf-query -c xfce4-panel -p /panels/panel-2/plugin-ids -t int -s 18
|
|
|
|
|
|
|
|
# Restart panel
|
|
|
|
xfce4-panel -r
|