https://www.mediafire.com/file/4i4e0f4ie9m5zvl/balenaEtcher-linux-x64-2.1.4.zip/file
https://www.mediafire.com/file/4i4e0f4ie9m5zvl/balenaEtcher-linux-x64-2.1.4.zip/file
#!/bin/bash
echo "Please enter your password for installing the packages:"
sudo apt update
sudo apt install -y \
xfwm4 xfwm4-tweaks-settings xfwm4-settings xfwm4-workspace-settings \
xfdesktop pcmanfm xfce4-panel xfce4-settings xfce4-goodies \
kitty falkon
sudo apt install -y lightdm && sudo systemctl enable lightdm
sudo apt install -y gnome-themes-extra
xfconf-query -c xsettings -p /Net/ThemeName -s "Adwaita-dark"
sudo cp ./SDE-wallpaper.jpg /usr/share/backgrounds/sde-default.jpg
sudo mkdir -p /etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml
sudo tee /etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml > /dev/null << EOF
<?xml version="1.0" encoding="UTF-8"?>
<channel name="xfce4-desktop" version="1.0">
<property name="backdrop">
<property name="screen0">
<property name="monitor0">
<property name="workspace0">
<property name="last-image" type="string" value="/usr/share/backgrounds/sde-default.jpg"/>
</property>
</property>
</property>
</property>
</channel>
EOF
sudo tee /usr/share/xsessions/sde.desktop > /dev/null << EOF
[Desktop Entry]
Encoding=UTF-8
Name=SDE
Comment=Simple Desktop Environment
Exec=startxfce4
Type=Application
EOF
echo "Installation finished. Please reboot your system."