All Projects β†’ vandalsoul β†’ darkmatter-grub2-theme

vandalsoul / darkmatter-grub2-theme

Licence: GPL-3.0 license
Dark Matter GRUB Theme πŸ‘ΎπŸ’™

Projects that are alternatives of or similar to darkmatter-grub2-theme

poly-dark
Poly dark GRUB theme
Stars: ✭ 136 (-32%)
Mutual labels:  grub, grub2, grub2-theme, grub-theme
grub2-themes-Ettery
Theme for grub2
Stars: ✭ 34 (-83%)
Mutual labels:  grub, grub2, grub2-theme
buddy-linux
Do you remember "Wubi Ubuntu Installer"? This project is both a replacement and an improvement of Wubi. You will be able to install your Debian (or derived) distribution on a PC without repartitioning it, simply by using a secondary/external boot device (like a USB drive).
Stars: ✭ 17 (-91.5%)
Mutual labels:  grub, grub2
Grub-Themes
Grub themes that will give a customized look to the Grub2 menu during boot.
Stars: ✭ 34 (-83%)
Mutual labels:  grub2, grub2-theme
grub2-editor
A KDE Control Module for configuring the GRUB2 bootloader. Unofficial KF5 port.
Stars: ✭ 24 (-88%)
Mutual labels:  grub, grub2
Atomic-GRUB2-Theme
Theme for the Grub2 at the purest ATOMIC style
Stars: ✭ 83 (-58.5%)
Mutual labels:  grub2, grub2-theme
bigsur-grub2-theme
A Grub2 Bootloader Theme, compatible with Ventoy.
Stars: ✭ 79 (-60.5%)
Mutual labels:  grub, grub2
GithubDarkTheme
Dark Theme for Github
Stars: ✭ 60 (-70%)
Mutual labels:  dark-theme
fb-messenger-dark
πŸ’¬ Dark Facebook Messenger theme
Stars: ✭ 61 (-69.5%)
Mutual labels:  dark-theme
grub-tune-tester
A GRUB_INIT_TUNE online tester.
Stars: ✭ 43 (-78.5%)
Mutual labels:  grub
jira-dark-theme
⚫ A dark theme for Jira
Stars: ✭ 24 (-88%)
Mutual labels:  dark-theme
calamity-vscode
A purple dark theme with medium to high contrast for Visual Studio Code βš›οΈ
Stars: ✭ 27 (-86.5%)
Mutual labels:  dark-theme
Python-Course
🐍 This is the most complete course in Python, completely practical and all the lessons are explained with examples, so that they can be easily understood. 🍫
Stars: ✭ 18 (-91%)
Mutual labels:  dark-theme
cosme.vim
Cosmetic color scheme for Vim
Stars: ✭ 63 (-68.5%)
Mutual labels:  dark-theme
Samurai-theme-vscode
Samurai Theme for VSCode
Stars: ✭ 15 (-92.5%)
Mutual labels:  dark-theme
valley-vscode
Valley is a simple theme for Visual Studio Code without visual noise. Created with handpicked and vivid colors, appropriate contrast and a lot of love to help you focus on your code.
Stars: ✭ 14 (-93%)
Mutual labels:  dark-theme
eclipse
πŸ§›πŸ»β€β™‚οΈ Dark theme for Eclipse
Stars: ✭ 34 (-83%)
Mutual labels:  dark-theme
aurora-future-vscode-theme
πŸ’œ A futuristic vscode theme.
Stars: ✭ 27 (-86.5%)
Mutual labels:  dark-theme
Stylus-DeepDark
Write thy themes in the dark. May the dark be kinder on thine eyes. (Stylus dark theme)
Stars: ✭ 43 (-78.5%)
Mutual labels:  dark-theme
bbedit
πŸ§›πŸ»β€β™‚οΈ Dark theme for BBEdit
Stars: ✭ 16 (-92%)
Mutual labels:  dark-theme

banner

πŸ“’ Project moved to GitLab

This project has been moved to GitLab. Any future development will take place there. However, you can report issues / bugs via GitLab or GitHub

βœ”οΈ Installation

git clone --depth 1 https://gitlab.com/VandalByte/darkmatter-grub-theme.git && cd darkmatter-grub-theme
sudo python3 darkmatter-theme.py --install

βœ”οΈ Manual Installation

Debian ✨ Ubuntu ✨ Arch

1️⃣ Download your favourite version of the theme from Pling

Now extract your downloaded .zip file.

Either manually extract it or use the command below. ( Here I'm using debian version of my theme as an example )

unzip dark-matter-debian.zip

The rest of the commands are the same for all theme styles.

2️⃣ Copy the theme directory.

sudo cp -r dark-matter /boot/grub/themes/

3️⃣ Make changes to the GRUB config file.

sudo nano /etc/default/grub

Find the line GRUB_THEME= then change it to GRUB_THEME="/boot/grub/themes/dark-matter/theme.txt"

Then save the file.

4️⃣ Finally, update the grub.

sudo grub-mkconfig -o /boot/grub/grub.cfg

Now the theme should be installed successfully, enjoy !!

Fedora ✨ Redhat

1️⃣ Download your favourite version of the theme from Pling

Now extract your downloaded .zip file.

Either manually extract it or use the command below. ( Here I'm using debian version of my theme as an example )

unzip dark-matter-debian.zip

The rest of the commands are the same for all theme styles.

2️⃣ Copy the theme directory.

sudo cp -r dark-matter /boot/grub2/themes/

3️⃣ Make changes to the GRUB config file.

sudo nano /etc/default/grub

Find the line GRUB_THEME= then change it to GRUB_THEME="/boot/grub2/themes/dark-matter/theme.txt"

Change the line GRUB_TERMINAL_OUTPUT=console to this (comment it out) #GRUB_TERMINAL_OUTPUT=console

Then save the file.

4️⃣ Finally, update the grub.

sudo grub2-mkconfig -o /boot/grub2/grub.cfg

Now restart your computer the grub theme should be installed successfully, enjoy !!

NixOS

1️⃣ Add darkmatter-grub-theme to your flake as nixos module

{
  inputs = {
    nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;

    darkmatter-grub-theme = {
      url = gitlab:VandalByte/darkmatter-grub-theme;
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = inputs @ { self, nixpkgs, darkmatter-grub-theme }: {
    nixosConfigurations.mysystem = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        darkmatter-grub-theme.nixosModule
        ./path/to/your/configuration.nix
      ];
    };
  };
}

2️⃣ Enable and configure grub theme

boot = {
  # Use the GRUB 2 boot loader.
  loader.grub = {
    enable = true;
    version = 2;

    darkmatter-theme = {
      enable = true;
      style = "nixos";
      icon = "color";
      resolution = "1080p";
    };
  };
};

3️⃣ Save changes and rebuild your nixos

sudo nixos-rebuild boot --flake .#mysystem

Now the theme should be installed successfully, enjoy !!

To request a theme for a specific Linux distro, open an issue with the feature request label and let me know

❌ Uninstallation

sudo python3 darkmatter-theme.py --uninstall

With a little effort the theme's text colours, progress bar colours, progress bar text, and so on can all be customised in theme.txt to your liking πŸ’•

Please consider πŸ€— giving this project a star ⭐ if you liked it
To stay up to date on all future updates, follow me on πŸ’¬ Github, πŸ’¬ GitLab or πŸ’¬ Twitter

πŸ“Έ Preview

Arch Arch Strike Artix
Arch Linux Arch Strike Artix Linux
Black Arch CentOS Chrome OS
Black Arch CentOS Chrome OS
Debian Deepin Devuan
Debian Deepin Devuan
Elementary OS Endeavour OS Fedora
Elementary OS Endeavour OS Fedora
FreeBSD Garuda Gentoo
FreeBSD Garuda Linux Gentoo Linux
Kali Linux KDE neon Kubuntu
Kali Linux KDE neon Kubuntu
Linux Linux Lite Linux Mint
Linux Linux Lite Linux Mint
Lubuntu Manjaro MX Linux
Lubuntu Manjaro MX Linux
OpenSUSE Parrot OS Pentoo
OpenSUSE Parrot OS Pentoo
PopOS Red Hat Slackware
PopOS Red Hat Slackware
Solus Sparky SteamOS
Solus Sparky Linux SteamOS
Ubuntu Mate Void
Ubuntu Ubuntu Mate Void Linux
Windows Windows Zorin
Windows 10 Windows 11 Zorin OS
NixOS GuixSD PLACEHOLDER
NixOS GuixSD DTOS
Xubuntu PLACEHOLDER PLACEHOLDER
Xubuntu - -
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].