💾 Archived View for gmi.bacardi55.io › blog › 2023 › 02 › 06 › new-laptop-part4-dracula-theme captured on 2023-11-14 at 07:57:20. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-03-20)

-=-=-=-=-=-=-

New laptop part 4: Dracula theme

Posted on 2023-02-06

Introduction

One thing I decided to do a bit better than usual with this new latpop is trying to apply the same theme everywhere for consistency. I've always preferred dark type of theme, while keeping good color contrast. Over the year, I tried many and very often selecting [zenburn]. But few years ago, I discoverd the [Dracula UI guideline] and became very found of it. That's why this will be the theme applied everywhere I can on this laptop.

A quick screenshot trying to showcase some of it (i3wm, zsh / xfce4-terminal, dunst, roffi, thunar, firefox):

zenburn

Dracula UI guideline

Applying the Dracula theme

Global note: I clone all related dracula repo within `~/workspace/contrib/dracula', and then symlink or copy depending on the tool to theme. It will be used as `$DRACULA_REPOS' in this post.

zsh

As discussed in the [part 2] of this series, I use [zsh]. To apply a dracula theme to it:

git clone https://github.com/dracula/zsh.git ~/workspace/contrib/dracula/zsh
ln -s ~/workspace/contrib/dracula/zsh/dracula.zsh-theme ~/.oh-my-zsh/themes/dracula.zsh-theme

Then add in your `~/.zshrc':

ZSH_THEME="dracula"

part 2

zsh

i3

I detailed at length my [i3wm] configuration in [part 3] of this blog post series, if you are interested. To apply the dracula theme:

Simply paste the content of this in `~/.config/i3/config':

i3wm

part 3

Gtk (for thunar)

Installed with EndeavourOS, thunar is the default file browser. I'm more than not browsing file in a terminal, but sometime I like having a GUI file browser. And thunar is light and do more than I need from such software. So only thing to do was to dracula-ize it.

git clone https://github.com/dracula/gtk ~/workspace/contrib/dracula/gtk
mkdir -p ~/.local/share/themes
ln -s ~/workspace/contrib/dracula/gtk ~/.local/share/themes/Dracula
---
title: "copy old files just in case:"
date:
---
cp ~/.config/gtk-3.0/settings.ini ~/.config/gtk-3.0/settings.ini.endeavouros
cp ~/.config/gtk-4.0/settings.ini ~/.config/gtk-4.0/settings.ini.endeavouros

Then edit `~/.config/gtk-3.0/settings.ini' and `~/.config/gtk-4.0/settings.ini' to change `gtk-theme-name' line:

gtk-theme-name=Dracula

tmux

I install tmux plugin via TPM (see [post 2] of this series), and there is a Dracula plugin for tmux. To install it, add to your configuration file (in my case `~/.config/tmux/tmux.conf'):

set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "time"
set -g @dracula-show-powerline true
set -g @dracula-refresh-rate 60

Adapt the option according to your needs.

And then `prefix (ctrl+a) + I' to install the new plugin, then `tmux source ~/.config/tmux/tmux.conf' to reload (if inside tmux, otherwise just launch tmux :)).

post 2

xfce4-terminal

Xfce4-terminal is the default terminal emulator with EndeavourOS, never used it before (never used xfce), so I decided to give it a shot… So far, it is nice and fast, so I'm still using it, but after changing its theme to Dracula.

Clone the repo and add it to xfce4-terminal colorschemes directory:

git clone https://github.com/dracula/xfce4-terminal.git ~/workspace/contrib/dracula/xfce4-terminal
mkdir -p ~/.local/share/xfce4/terminal/colorschemes/
ln -s ~/workspace/contrib/dracula/xfce4-terminal/Dracula.theme ~/.local/share/xfce4/terminal/colorschemes/

Then right click in xfce4-terminal to open preferences panel. Go to colors and choose your theme in the list at the bottom.

Dunst

Clone the repo and copy the config file. Be carreful if you had custom config in your dunstrc, make sure you won't loose anything.

git clone https://github.com/dracula/dunst.git ~/workspace/contrib/dracula/dunst
---
title: "preserve EndeavourOS default dunstrc:"
date:
---
mv ~/.config/dunst/dunstrc ~/.config/dunst/dunstrc.endeavouros
ln -s ~/workspace/contrib/dracula/dunst/dunstrc ~/.config/dunst/dunstrc

Emacs

I'm using [emacs] via [doom-emacs], which makes it even simpler to enable dracula theme, by adding in your configuration:

(setq doom-theme 'doom-dracula)

emacs

doom-emacs

Neomutt

I haven't talk yet about my neomutt configuration, maybe more on that later, but to configure the theme with Dracula:

git clone https://github.com/dracula/mutt.git ~/workspace/contrib/dracula/mutt
ln -s ~/workspace/contrib/dracula/mutt/dracula.muttrc ~/.config/neomutt/

Then in `~/.config/neomutt/neomuttrc' add:

source ~/.config/neomutt/draculatheme/dracula.muttrc

Firefox

Simply search for dracula in `about:addons' or go there:

Chromium

Simply search for dracula in `chrome://extensions/' or go there:

Rofi

Same as before, clone the repo and store the file at the right place.

git clone https://github.com/dracula/rofi
cp rofi/theme/config1.rasi ~/.config/rofi/config.rasi

Wallpaper

For fun, I went all the way and decided to use the "official" Dracula wallpaper for EndeavourOS:

wget https://raw.githubusercontent.com/dracula/wallpaper/master/endeavour.png ~/Images/endeavour.png

Edit `~/.fehbg' and change the command to:

feh --no-fehbg --bg-fill '/home/bacardi55/Images/endeavour.os'

But most distro have their "official" Dracula wallpaper:

Amfora

While I'm using lagrange as a day to day gemini browser, I like using Amfora too sometimes. There is a dracula theme for amfora already as well! Lagrange has already some nice dark themes available but doesn't allow this full level of customization.

git clone https://github.com/dracula/amfora.git ~/workspace/contrib/dracula/amfora

Then copy the content of `~/workspace/contrib/dracula/amfora/' in `~/.config/amfora/config.toml'.

Conclusion

That's it for this post, it is nice to have everything consistent, even though this never has been a real focus for me :).

/gemlog/

Send me a gemini mention

send me an email!