diff options
author | Kyle K <kylek389@gmail.com> | 2020-03-19 14:23:12 -0500 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2020-03-19 14:23:12 -0500 |
commit | 092328a3e023a5d9f9970188c8f4efce45d494d6 (patch) | |
tree | 8f05864e8306d55a6bc8fb235d0115a5b3e9eeb8 | |
parent | 90f30d0b3c8beea313f3bdc5ca73d3be5fe5d9a5 (diff) | |
download | gentoox-092328a3e023a5d9f9970188c8f4efce45d494d6.tar.gz gentoox-092328a3e023a5d9f9970188c8f4efce45d494d6.tar.bz2 gentoox-092328a3e023a5d9f9970188c8f4efce45d494d6.zip |
update KDE to 5.18.3
-rwxr-xr-x | gentoox_build.sh | 8 | ||||
-rwxr-xr-x | postinstall.sh | 12 |
2 files changed, 13 insertions, 7 deletions
diff --git a/gentoox_build.sh b/gentoox_build.sh index a92393b..c9a53f8 100755 --- a/gentoox_build.sh +++ b/gentoox_build.sh @@ -166,6 +166,8 @@ x11-libs/libdrm libkms media-libs/mesa d3d9 lm-sensors opencl -vaapi vdpau vulkan vulkan-overlay xa xvmc www-client/firefox -system-libvpx hwaccel pgo lto wayland dev-libs/boost python +dev-libs/boost python_targets_python3_7 +dev-libs/libpwquality python_targets_python3_7 dev-lang/python sqlite sys-fs/squashfs-tools zstd sys-boot/grub:2 mount # libzfs @@ -443,7 +445,9 @@ yes $userpassword | passwd $username gpasswd -a $username wheel gpasswd -a $username weston-launch -cp /usr/share/zoneinfo/UTC /etc/localtime +#cp /usr/share/zoneinfo/UTC /etc/localtime +echo "America/Chicago" > /etc/timezone +cp /usr/share/zoneinfo/America/Chicago /etc/localtime echo -e '\nen_US.UTF-8 UTF-8 ja_JP.EUC-JP EUC-JP ja_JP.UTF-8 UTF-8 @@ -536,7 +540,7 @@ HEREDOC cd .. umount -l image/var/cache/{binpkgs,distfiles} umount -l image/* -mksquashfs image/ image.squashfs -b 1M -comp zstd -Xcompression-level 10 +mksquashfs image/ image.squashfs -b 1M -comp zstd -Xcompression-level 16 mkdir iso/ isobuilddate=$(wget -O - http://distfiles.gentoo.org/releases/amd64/autobuilds/current-install-amd64-minimal/ | sed -nr "s/.*href=\"install-amd64-minimal-([0-9].*).iso\">.*/\1/p") if [[ ! -f "current-install-amd64-minimal/install-amd64-minimal-$isobuilddate.iso" ]]; then diff --git a/postinstall.sh b/postinstall.sh index 26ba39e..eb74af5 100755 --- a/postinstall.sh +++ b/postinstall.sh @@ -2,7 +2,7 @@ # allow Xorg to start and kde to settle -sleep 20 +sleep 15 #ln -s /usr/share/applications/audacious.desktop ~/Desktop/ @@ -27,7 +27,7 @@ Y_RES=$(xdpyinfo | awk '/dimensions/{print $2}' | tr 'x' ' ' | awk '{print $2}') # install and apply GentooX theme kpackagetool5 -i "/usr/src/theme/GentooX Breeze Dark Transparent.tar.gz" -lookandfeeltool --apply GentooX +lookandfeeltool --apply GentooX --resetLayout # put panel on top and set thickness to 24 pixels kwriteconfig5 --file ~/.config/plasma-org.kde.plasma.desktop-appletsrc --group Containments --group 3 --key location --type string 3 @@ -67,6 +67,7 @@ kwriteconfig5 --file ~/.config/kdeglobals --group General --key menuFont --type kwriteconfig5 --file ~/.config/kdeglobals --group General --key smallestReadableFont --type string "Noto Sans,9,-1,5,50,0,0,0,0,0,Regular" kwriteconfig5 --file ~/.config/kdeglobals --group General --key toolBarFont --type string "Noto Sans,9,-1,5,50,0,0,0,0,0,Regular" kwriteconfig5 --file ~/.config/kdeglobals --group WM --key activeFont --type string "Noto Sans,9,-1,5,50,0,0,0,0,0,Regular" +kwriteconfig5 --file ~/.config/kdeglobals --group KDE --key LookAndFeelPackage --type string "GentooX" kwriteconfig5 --file ~/.config/kglobalshortcutsrc --group kwin --key FlipSwitchAll --type string "none,none,Toggle Flip Switch (All desktops)" kwriteconfig5 --file ~/.config/kglobalshortcutsrc --group kwin --key lipSwitchCurrent --type string "none,none,Toggle Flip Switch (Current desktop)" @@ -107,9 +108,10 @@ mkdir -p ~/.config/autostart ln -s /usr/share/applications/org.kde.latte-dock.desktop ~/.config/autostart/ latte-dock & sleep 5 -kwriteconfig5 --file ~/.config/latte/Default.layout.latte --group Containments --group 1 --group General --key iconSize --type string 48 -kwriteconfig5 --file ~/.config/latte/Default.layout.latte --group Containments --group 1 --group General --key panelTransparency --type string 30 -pkill latte-dock +kill -s 15 $(pidof latte-dock) +kwriteconfig5 --file ~/.config/latte/My\ Layout.layout.latte --group Containments --group 1 --group General --key iconSize --type string 48 +kwriteconfig5 --file ~/.config/latte/My\ Layout.layout.latte --group Containments --group 1 --group General --key panelTransparency --type string 30 +kwriteconfig5 --file ~/.config/latte/My\ Layout.layout.latte --group Containments --group 1 --group Applets --group 2 --group Configuration --group General --key launchers59 --type string "applications:firefox.desktop,applications:org.kde.dolphin.desktop,applications:org.kde.konsole.desktop" latte-dock & |