18 lines
653 B
Bash
18 lines
653 B
Bash
#!/bin/bash
|
|
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 |