Skip to content

Instantly share code, notes, and snippets.

@wrongbyte
Last active June 5, 2022 02:44
Show Gist options
  • Save wrongbyte/6895b89042f2ab29f6de64c5f92c9721 to your computer and use it in GitHub Desktop.
Save wrongbyte/6895b89042f2ab29f6de64c5f92c9721 to your computer and use it in GitHub Desktop.
#!/bin/bash
# ------------------- Install GTK dracula theme -------------------
sudo apt install gnome-tweaks --noconfirm
mkdir .themes
cd tmp
wget https://github.com/dracula/gtk/releases/download/v3.0/Dracula.tar.xz
tar -xf Dracula.tar.xz -C ../.themes
gsettings set org.gnome.desktop.interface gtk-theme "Dracula"
gsettings set org.gnome.desktop.wm.preferences theme "Dracula"
wget https://github.com/dracula/gtk/files/5214870/Dracula.zip
mkdir ../.icons
sudo apt-get install unzip --noconfirm
unzip Dracula.zip -d ../.icons
gsettings set org.gnome.desktop.interface icon-theme "Dracula"
cd ..
echo "Theme config done"
# ---------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment