File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 4
4
export TEXTDOMAINDIR=" /usr/share/locale"
5
5
export TEXTDOMAIN=calamares-biglinux
6
6
7
+
8
+ user=$( ls /home)
9
+
7
10
# Determine the appropriate text editor
8
11
if [ -f /usr/bin/kate ]; then
9
12
text_editor=" kate"
@@ -359,11 +362,17 @@ bigbashview -s 1100x600 -n $"Install System" -p bbv-calamares -c transparent -w
359
362
360
363
# Start Calamares installation if flagged
361
364
if [ -e " /tmp/start_calamares" ]; then
362
- cp -f /usr/share/biglinux/themes/biglinux/.config/kdeglobals /root/.config/kdeglobals
363
- sudo QT_QUICK_BACKEND=software /usr/bin/calamares-manjaro
365
+ if [ -e /usr/share/biglinux/themes/biglinux/.config/kdeglobals ]; then
366
+ cp -f /usr/share/biglinux/themes/biglinux/.config/kdeglobals /root/.config/kdeglobals
367
+ cp -Rf /usr/share/biglinux/themes/biglinux/.config/Kvantum /root/.config/Kvantum
368
+ else
369
+ cp -f /etc/skel/.config/kdeglobals /root/.config/kdeglobals
370
+ cp -Rf /etc/skel/.config/Kvantum /root/.config/Kvantum
371
+ fi
372
+
373
+ sudo QT_QPA_PLATFORMTHEME=kde QT_QUICK_BACKEND=software /usr/bin/calamares-manjaro
364
374
365
375
# Copy the installation log to the user's home directory
366
- user=$( ls /home)
367
376
cp /root/.cache/calamares/session.log /home/$user /calamares_complete.log
368
377
chown $user :$user /home/$user /calamares_complete.log
369
378
You can’t perform that action at this time.
0 commit comments