File tree Expand file tree Collapse file tree 7 files changed +13
-39
lines changed Expand file tree Collapse file tree 7 files changed +13
-39
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -175,10 +175,10 @@ images:
175
175
# branding component also ships a stylesheet.qss. Then they are
176
176
# the corresponding CSS attributes of #sidebarApp.
177
177
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 "
182
182
### SLIDESHOW
183
183
#
184
184
# The slideshow is displayed during execution steps (e.g. when the
Original file line number Diff line number Diff line change @@ -89,36 +89,6 @@ Presentation
89
89
}
90
90
}
91
91
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
-
122
92
123
93
// When this slideshow is loaded as a V1 slideshow, only
124
94
// activatedInCalamares is set, which starts the timer (see above).
Original file line number Diff line number Diff line change 63
63
description : " VOLD_USE_NTFS3=1"
64
64
- name : " Boot & Set NTFS3 as default on vold"
65
65
description : " USE_NTFS3=1"
66
- - name : " Miscs "
66
+ - name : " Miscellaneous "
67
67
options :
68
68
- name : " Disable SDCardFS/ESDFS bind mounting"
69
69
description : " SDCARDFS_DISABLE=1"
Original file line number Diff line number Diff line change @@ -55,9 +55,13 @@ ROOT_UUID=$(${grub_probe} --device "$ROOT_DEVICE" --target=fs_uuid 2>/dev/null)
55
55
[ " $ROOT_UUID " ] && ROOT_DEVICE=" UUID=$ROOT_UUID "
56
56
57
57
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
+ :
61
65
62
66
echo " menuentry '$( echo " $TITLE ${extra_title: + - $extra_title } " | grub_quote) ' ${CLASS} \$ menuentry_id_option '$OS -${TITLE// / _} -\$ SLOT${extra_args: +-${extra_args// / _} } ' {"
63
67
@@ -95,7 +99,7 @@ export CMDLINE
95
99
EOF
96
100
97
101
submenu_indentation=" "
98
- entry " "
102
+ android_entry
99
103
100
104
submenu_indentation=$grub_tab
101
105
You can’t perform that action at this time.
0 commit comments