You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
314 B
9 lines
314 B
#!/bin/bash
|
|
|
|
if [ -f /usr/share/xfce4/backdrops/xubuntu-wallpaper.png ]; then
|
|
rm /usr/share/xfce4/backdrops/xubuntu-wallpaper.png
|
|
fi
|
|
if [ ! -d /usr/share/xfce4/backdrops ]; then
|
|
mkdir -p /usr/share/xfce4/backdrops
|
|
fi
|
|
ln -s /usr/share/backgrounds/MiniOS.png /usr/share/xfce4/backdrops/xubuntu-wallpaper.png
|
|
|