Compare commits
48 Commits
2020-11-04
...
2021-09-19
Author | SHA1 | Date | |
---|---|---|---|
2b42974226 | |||
a91e83254f | |||
eedee9a25b | |||
c6dcca2d8f | |||
eac6a62755 | |||
bc790bd10e | |||
e6dcf151d4 | |||
2b12527007 | |||
9195a43e88 | |||
5a31c8d8e7 | |||
ab5ba9cf78 | |||
aa3e2b3c04 | |||
8f4becc1a5 | |||
1ccc78c7a0 | |||
6590280eb8 | |||
ab2b5e3370 | |||
cd5eaf3b84 | |||
420deda7c4 | |||
9b2a9f41b9 | |||
f4680564a9 | |||
ca5be0a5b6 | |||
13a6ff61e0 | |||
12e394e1c9 | |||
a6bbcf35b3 | |||
ae0fced1e7 | |||
e01ebdcc62 | |||
72ad559a26 | |||
86fc01c958 | |||
41807fe458 | |||
30c1a9162b | |||
5871779b04 | |||
1007834d93 | |||
3a6af1d987 | |||
1adb17bfa1 | |||
2ed5b466ad | |||
3fe14fb9ee | |||
ce80ce35df | |||
8f531d257d | |||
99c5be14a9 | |||
1074644978 | |||
cf28e3cd29 | |||
f3b5e2783e | |||
d8dfb0f609 | |||
bafd2bb250 | |||
8c6ef2aaf7 | |||
aa8108f74b | |||
f4b1a85ab0 | |||
d005d49168 |
2
.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
git-v1.sh
|
|
||||||
setup-git-v1.sh
|
|
30
README.md
@ -16,29 +16,23 @@ Usage: `sudo ./install.sh [OPTIONS...]`
|
|||||||
| Options: | Description: |
|
| Options: | Description: |
|
||||||
|:-----------------------|:-------------|
|
|:-----------------------|:-------------|
|
||||||
| -b, --boot | Install grub theme into `/boot/grub/themes` |
|
| -b, --boot | Install grub theme into `/boot/grub/themes` |
|
||||||
| -v, --vimix | Install Vimix grub theme |
|
| -t, --theme | theme variant(s) [tela/vimix/stylish/slaze/whitesur] (default is tela)"
|
||||||
| -s, --stylish | Install Stylish grub theme |
|
| -i, --icon | icon variant(s) [color/white/whitesur] (default is color)"
|
||||||
| -t, --tela | Install Tela grub theme |
|
| -s, --screen | screen resolution variant(s) [1080p/2k/4k/ultrawide/ultrawide2k] (default is 1080p)"
|
||||||
| -l, --slaze | Install Slaze grub theme |
|
|
||||||
| -w, --white | Install using black and white icons |
|
|
||||||
| -u, --ultrawide | Install 21:9 (2560x1080) background image - not available for slaze theme|
|
|
||||||
| -C, --custom-background| Use either background.jpg or custom-background.jpg as theme background instead
|
|
||||||
| -2, --2k | Install 2k (2560x1440) background image |
|
|
||||||
| -4, --4k | Install 4k (3840x2160) background image |
|
|
||||||
| -r, --remove [THEME] | Uninstall selected theme |
|
| -r, --remove [THEME] | Uninstall selected theme |
|
||||||
| -h, --help | Show this help |
|
| -h, --help | Show this help |
|
||||||
|
|
||||||
_If no options are used, a user interface will show up instead_
|
_If no options are used, a user interface `dialog` will show up instead_
|
||||||
|
|
||||||
### Examples:
|
### Examples:
|
||||||
- Install Tela theme on 2k display device:
|
- Install Tela theme on 2k display device:
|
||||||
- `sudo ./install.sh --tela --2k`
|
- `sudo ./install.sh -t tela -s 2k`
|
||||||
|
|
||||||
- Install Tela theme into /boot/grub/themes:
|
- Install Tela theme into /boot/grub/themes:
|
||||||
- `sudo ./install.sh -b -t`
|
- `sudo ./install.sh -b -t tela`
|
||||||
|
|
||||||
- Uninstall Tela theme:
|
- Uninstall Tela theme:
|
||||||
- `sudo ./install.sh -r -t`
|
- `sudo ./install.sh -r -t tela`
|
||||||
|
|
||||||
## Issues / tweaks:
|
## Issues / tweaks:
|
||||||
|
|
||||||
@ -53,9 +47,9 @@ _If no options are used, a user interface will show up instead_
|
|||||||
|
|
||||||
- Make sure you have `imagemagick` installed, or at least something that provides `convert`
|
- Make sure you have `imagemagick` installed, or at least something that provides `convert`
|
||||||
- Find the resolution of your display, and make sure your background matches the resolution
|
- Find the resolution of your display, and make sure your background matches the resolution
|
||||||
- (1920x1080 -> --1080p, 2560x1080 -> --ultrawide, 2560x1440 -> --2k, 3840x2160 -> --4k)
|
- (1920x1080 -> --1080p, 2560x1080 -> --ultrawide, 2560x1440 -> --2k, 3440x1440 -> --ultrawide2k, 3840x2160 -> --4k)
|
||||||
- Place your custom background inside the root of the project, and name it either background.jpg or custom-background.jpg
|
- Place your custom background inside the root of the project, and name it `background.jpg`
|
||||||
- Run the installer like normal, but with `--custom-background`, `--[YOUR_RESOLUTION]` and `--[THEME]`
|
- Run the installer like normal, but with -s `[YOUR_RESOLUTION]` and -t `[THEME]` and -i `[ICON]`
|
||||||
- Make sure to replace `[YOUR_RESOLUTION]` with your resolution and `[THEME]` with the theme
|
- Make sure to replace `[YOUR_RESOLUTION]` with your resolution and `[THEME]` with the theme
|
||||||
|
|
||||||
## Contributing:
|
## Contributing:
|
||||||
@ -82,3 +76,7 @@ _If no options are used, a user interface will show up instead_
|
|||||||
### Slaze grub theme:
|
### Slaze grub theme:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
## Documents
|
||||||
|
http://wiki.rosalab.ru/en/index.php/Grub2_theme_/_reference
|
||||||
|
http://wiki.rosalab.ru/en/index.php/Grub2_theme_tutorial
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 983 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 879 B |
Before Width: | Height: | Size: 967 B After Width: | Height: | Size: 661 B |
Before Width: | Height: | Size: 967 B After Width: | Height: | Size: 661 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 887 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 887 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 934 B |
BIN
assets/assets-color/icons-1080p/artix.png
Normal file
After Width: | Height: | Size: 841 B |
Before Width: | Height: | Size: 1013 B After Width: | Height: | Size: 747 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 960 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 964 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 785 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 847 B |
Before Width: | Height: | Size: 922 B After Width: | Height: | Size: 647 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 695 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1011 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 817 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 820 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 863 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 919 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
assets/assets-color/icons-1080p/gpart.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 729 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 969 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 915 B After Width: | Height: | Size: 778 B |
BIN
assets/assets-color/icons-1080p/kernel.png
Normal file
After Width: | Height: | Size: 854 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 950 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 951 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1008 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 826 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 971 B |
Before Width: | Height: | Size: 967 B After Width: | Height: | Size: 661 B |
BIN
assets/assets-color/icons-1080p/manjarolinux.png
Normal file
After Width: | Height: | Size: 661 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 847 B |
Before Width: | Height: | Size: 993 B After Width: | Height: | Size: 869 B |
BIN
assets/assets-color/icons-1080p/neon.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.0 KiB |
BIN
assets/assets-color/icons-1080p/pop.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 840 B |
BIN
assets/assets-color/icons-1080p/regolith.png
Normal file
After Width: | Height: | Size: 957 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 758 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 764 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 920 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 930 B |
BIN
assets/assets-color/icons-1080p/submenu.png
Normal file
After Width: | Height: | Size: 568 B |
Before Width: | Height: | Size: 837 B After Width: | Height: | Size: 628 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 817 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 996 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1000 B After Width: | Height: | Size: 708 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1020 B After Width: | Height: | Size: 708 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 960 B |
BIN
assets/assets-color/icons-1080p/zorin.png
Normal file
After Width: | Height: | Size: 769 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 889 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 889 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.3 KiB |
BIN
assets/assets-color/icons-2k/artix.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1006 B |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 878 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.6 KiB |