Summary: Custom grub theme for lubuntu. Inspired from breeze theme. Test Plan: Test whether theme gets installed by default. Reviewers: tsimonq2, wxl Subscribers: apt-ghetto Maniphest Tasks: T30 Differential Revision: https://phab.lubuntu.me/D45ubuntu/eoan
@ -0,0 +1,2 @@
|
|||||||
|
src/etc/default/grub.d/lubuntu-grub-theme.cfg /etc/default/grub.d/
|
||||||
|
src/boot/grub/themes/lubuntu-grub-theme /boot/grub/themes/
|
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# postinst script for lubuntu-grub-theme
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
configure)
|
||||||
|
|
||||||
|
update-grub
|
||||||
|
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade|abort-remove|abort-deconfigure)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "postinst called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# prerm script for lubuntu-grub-theme
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove|upgrade|deconfigure)
|
||||||
|
rm /etc/default/grub.d/lubuntu-grub-theme.cfg
|
||||||
|
update-grub
|
||||||
|
;;
|
||||||
|
|
||||||
|
failed-upgrade)
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "prerm called with unknown argument \`$1'" >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 152 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 157 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 157 B |
After Width: | Height: | Size: 181 B |
After Width: | Height: | Size: 181 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 318 B |
After Width: | Height: | Size: 120 B |
After Width: | Height: | Size: 219 B |
After Width: | Height: | Size: 211 B |
After Width: | Height: | Size: 152 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 157 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 141 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 154 B |
@ -0,0 +1,44 @@
|
|||||||
|
# Custom grub theme for Lubuntu
|
||||||
|
|
||||||
|
desktop-image: "background.png"
|
||||||
|
desktop-image-scale-method: "stretch"
|
||||||
|
title-text: "Select a boot option"
|
||||||
|
title-color: "#eff0f1"
|
||||||
|
message-color: "#eff0f1"
|
||||||
|
terminal-box: "terminal_*.png"
|
||||||
|
|
||||||
|
+ boot_menu {
|
||||||
|
left = 20%
|
||||||
|
width = 60%
|
||||||
|
top = 33%
|
||||||
|
height = 33%
|
||||||
|
|
||||||
|
menu_pixmap_style = "boot_menu_*.png"
|
||||||
|
|
||||||
|
item_color = "#eff0f1"
|
||||||
|
item_height = 50
|
||||||
|
item_icon_space = 8
|
||||||
|
item_spacing = 2
|
||||||
|
|
||||||
|
selected_item_color= "#eff0f1"
|
||||||
|
selected_item_pixmap_style = "select_*.png"
|
||||||
|
|
||||||
|
icon_height = 48
|
||||||
|
icon_width = 48
|
||||||
|
|
||||||
|
scrollbar = true
|
||||||
|
scrollbar_width = 20
|
||||||
|
scrollbar_thumb = "slider_*.png"
|
||||||
|
}
|
||||||
|
|
||||||
|
+ progress_bar {
|
||||||
|
id = "__timeout__"
|
||||||
|
left = 33%
|
||||||
|
width = 33%
|
||||||
|
top = 73%
|
||||||
|
height = 8
|
||||||
|
show_text = false
|
||||||
|
fg_color = #275772
|
||||||
|
bg_color = #31363b
|
||||||
|
border_color = #4d4d4d
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
GRUB_THEME=/boot/grub/themes/lubuntu-grub-theme/theme.txt
|