rassweiler / refind-theme-dracula

rEFInd theme inspired by the Dracula palette

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rEFInd theme Dracula

Script Static Analysis License: MIT AUR version

Simple rEFInd theme inspired by the Dracula palette.

refind theme dracula

This theme is derived from icons from other source; see COPYING for details.

Installation

UNIX General

On UNIX-like platforms simply open a terminal and enter:

curl -sL https://raw.githubusercontent.com/rassweiler/refind-theme-dracula/master/install.sh | bash

UNIX Manual:

  1. Download lastest release

    curl -sL https://github.com/rassweiler/refind-theme-dracula/releases/download/1.0.0/refind-theme-dracula-1.0.0.tar.gz | tar xvz
    cd refind-theme-dracula-1.0.0
  2. Identify your EFI partition and inside it your refind directory. For example: /efi/EFI/refind

    tree -L 3 /efi	

    It results in:

    /efi
    └── EFI
    	└── refind
    		├── fonts
    		├── icons
    		├── refind.conf
    		├── refind_x64.efi
    		└── vars
  3. Create the directory /efi/EFI/refind/themes/dracula and copy files to it. You need root permissions

    sudo mkdir -p /efi/EFI/refind/themes/dracula
    sudo cp -r {icons,theme.conf,*.png} $_
  4. Includes Dracula theme in /efi/EFI/refind/refind.conf

    sudo sed "s/^include/#include/g" -i /efi/EFI/refind/refind.conf
    echo "include themes/dracula/theme.conf" | sudo tee -a /efi/EFI/refind/refind.conf

Arch Linux AUR

From AUR repository:

git clone https://aur.archlinux.org/refind-theme-dracula.git
cd refind-theme-dracula
makepkg -si

Using AUR helper as PARU:

paru -S refind-theme-dracula

Arch Linux Manual

  1. Download lastest release

    curl -sL https://github.com/rassweiler/refind-theme-dracula/releases/download/1.0.0/refind-theme-dracula-1.0.0.tar.gz | tar xvz
    cd refind-theme-dracula-1.0.0
  2. Identify your EFI partition and inside it your refind directory. For example: /boot/EFI/refind

    tree -L 3 /boot	

    It results in:

    /boot
    └── EFI
    	└── refind
    		├── fonts
    		├── icons
    		├── refind.conf
    		├── refind_x64.efi
    		└── vars
  3. Create the directory /boot/EFI/refind/themes/dracula and copy files to it. You need root permissions

    sudo mkdir -p /boot/EFI/refind/themes/dracula
    sudo cp -r {icons,theme.conf,*.png} $_
  4. Includes Dracula theme in /boot/EFI/refind/refind.conf

    sudo sed "s/^include/#include/g" -i /boot/EFI/refind/refind.conf
    echo "include themes/dracula/theme.conf" | sudo tee -a /boot/EFI/refind/refind.conf

TODO

  • Add Dracula palette
  • Setup dracula colours on certain os icons

About

rEFInd theme inspired by the Dracula palette

License:MIT License


Languages

Language:Shell 100.0%