Skip to content

Commit fb2a366

Browse files
committed
Ignore BCacheFS patch and update branding components
This commit removes BCacheFS support by deleting the `001-exclude-bcachefs.sh` patch and updates branding components by changing colors in `branding.desc` and removing slideshow images. This update also comes with some small changes to ensure that grub-mkconfig performs properly Signed-off-by: shadichy <hotrobb360web@gmail.com>
1 parent e67cd08 commit fb2a366

File tree

7 files changed

+13
-39
lines changed

7 files changed

+13
-39
lines changed

src/branding/blissos/branding.desc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ images:
175175
# branding component also ships a stylesheet.qss. Then they are
176176
# the corresponding CSS attributes of #sidebarApp.
177177
style:
178-
SidebarBackground: "#292F34"
179-
SidebarText: "#FFFFFF"
180-
SidebarTextCurrent: "#292F34"
181-
SidebarBackgroundCurrent: "#00CED1"
178+
SidebarBackground: "#18001A"
179+
SidebarText: "#F1DCF2"
180+
SidebarTextCurrent: "#1A0700"
181+
SidebarBackgroundCurrent: "#ECA3E5"
182182
### SLIDESHOW
183183
#
184184
# The slideshow is displayed during execution steps (e.g. when the

src/branding/blissos/show.qml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -89,36 +89,6 @@ Presentation
8989
}
9090
}
9191

92-
Slide {
93-
anchors.fill: parent
94-
anchors.verticalCenterOffset: 0
95-
96-
Image {
97-
id: background5
98-
source: "slide5.png"
99-
width: parent.width; height: parent.height
100-
horizontalAlignment: Image.AlignCenter
101-
verticalAlignment: Image.AlignTop
102-
fillMode: Image.Stretch
103-
anchors.fill: parent
104-
}
105-
}
106-
107-
Slide {
108-
anchors.fill: parent
109-
anchors.verticalCenterOffset: 0
110-
111-
Image {
112-
id: background6
113-
source: "slide6.png"
114-
width: parent.width; height: parent.height
115-
horizontalAlignment: Image.AlignCenter
116-
verticalAlignment: Image.AlignTop
117-
fillMode: Image.Stretch
118-
anchors.fill: parent
119-
}
120-
}
121-
12292

12393
// When this slideshow is loaded as a V1 slideshow, only
12494
// activatedInCalamares is set, which starts the timer (see above).

src/branding/blissos/slide5.png

-626 KB
Binary file not shown.

src/branding/blissos/slide6.png

-787 KB
Binary file not shown.

src/modules/kernelargchooser/kernelargchooser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
description: "VOLD_USE_NTFS3=1"
6464
- name: "Boot & Set NTFS3 as default on vold"
6565
description: "USE_NTFS3=1"
66-
- name: "Miscs"
66+
- name: "Miscellaneous"
6767
options:
6868
- name: "Disable SDCardFS/ESDFS bind mounting"
6969
description: "SDCARDFS_DISABLE=1"

src/scripts/10_blissos

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,13 @@ ROOT_UUID=$(${grub_probe} --device "$ROOT_DEVICE" --target=fs_uuid 2>/dev/null)
5555
[ "$ROOT_UUID" ] && ROOT_DEVICE="UUID=$ROOT_UUID"
5656

5757
android_entry() {
58-
local extra_title=$1
59-
shift
60-
local extra_args=$*
58+
local extra_title extra_args
59+
60+
# shellcheck disable=SC2015
61+
extra_title=$1 &&
62+
shift &&
63+
extra_args=$* ||
64+
:
6165

6266
echo "menuentry '$(echo "$TITLE${extra_title:+ - $extra_title}" | grub_quote)' ${CLASS} \$menuentry_id_option '$OS-${TITLE// /_}-\$SLOT${extra_args:+-${extra_args// /_}}' {"
6367

@@ -95,7 +99,7 @@ export CMDLINE
9599
EOF
96100

97101
submenu_indentation=""
98-
entry ""
102+
android_entry
99103

100104
submenu_indentation=$grub_tab
101105

0 commit comments

Comments
 (0)