Last active
June 5, 2022 02:44
-
-
Save wrongbyte/6895b89042f2ab29f6de64c5f92c9721 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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