https://github.com/numixproject/numix-plymouth-theme
Numix theme for Plymouth
https://github.com/numixproject/numix-plymouth-theme
Last synced: 10 months ago
JSON representation
Numix theme for Plymouth
- Host: GitHub
- URL: https://github.com/numixproject/numix-plymouth-theme
- Owner: numixproject
- License: gpl-3.0
- Created: 2014-09-07T15:13:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-10-02T16:45:08.000Z (over 4 years ago)
- Last Synced: 2025-01-11T06:30:33.675Z (over 1 year ago)
- Language: Makefile
- Size: 96.7 KB
- Stars: 15
- Watchers: 9
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license
Awesome Lists containing this project
README
# Numix Plymouth
A Numix theme for Plymouth.

## Install
Installing Plymouth themes from source is quite a convoluted process so strap in. First download this repository and build the theme:
```bash
git clone https://github.com/numixproject/numix-plymouth-theme.git
cd numix-plymouth-theme
sudo make install
```
Then you need to apply the theme within Plymouth. For Debian/Ubuntu based distros run:
```bash
sudo update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/numix/numix.plymouth 100
sudo update-alternatives --set default.plymouth /usr/share/plymouth/themes/numix/numix.plymouth
sudo update-initramfs -u
```
## Uninstall
Uninstalling a Plymouth theme is similarly convoluted. To delete the theme files run
```bash
sudo make uninstall
```
Then you need to reapply the original theme. On Debian/Ubuntu based distros run:
```bash
sudo update-alternatives --remove default.plymouth /usr/share/plymouth/themes/numix/numix.plymouth
sudo update-initramfs -u
```
## Testing
If you want to check your theme has been applied properly without rebooting, install `plymouth-x11` and then run
```bash
sudo plymouthd; sudo plymouth --show-splash; for ((i=0; i<5; i++)); do sleep 1; sudo plymouth --update=test$i; done; sudo plymouth --quit
```
which will display the Plymouth splash screen for 5 seconds before automatically quitting.