Merge remote-tracking branch 'upstream/dev' into dev

This commit is contained in:
2Shirt 2022-12-03 17:27:31 -08:00
commit aa3dc51740
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
8 changed files with 37 additions and 42 deletions

View file

@ -168,6 +168,7 @@ class BlockPair():
map_name += f'_{source.raw_details["label"]}' map_name += f'_{source.raw_details["label"]}'
map_name = map_name.replace(' ', '_') map_name = map_name.replace(' ', '_')
map_name = map_name.replace('/', '_') map_name = map_name.replace('/', '_')
map_name = map_name.replace('\\', '_')
if destination.is_dir(): if destination.is_dir():
# Imaging # Imaging
self.map_path = pathlib.Path(f'{destination}/Image_{map_name}.map') self.map_path = pathlib.Path(f'{destination}/Image_{map_name}.map')

View file

@ -131,10 +131,12 @@ function update_live_env() {
7z e -aoa "$TEMP_DIR/wimboot.zip" -o"$PROFILE_DIR/syslinux/wimboot" 'wimboot*/LICENSE.txt' 'wimboot*/README.txt' 'wimboot*/wimboot' 7z e -aoa "$TEMP_DIR/wimboot.zip" -o"$PROFILE_DIR/syslinux/wimboot" 'wimboot*/LICENSE.txt' 'wimboot*/README.txt' 'wimboot*/wimboot'
# Boot config (UEFI) # Boot config (UEFI)
cp "/usr/share/refind/refind_x64.efi" "$PROFILE_DIR/EFI/boot/bootx64.efi" curl -Lo "$TEMP_DIR/refind.zip" "https://sourceforge.net/projects/refind/files/latest/download"
7z x -aoa "$TEMP_DIR/refind.zip" -o"$TEMP_DIR/refind"
cp "$ROOT_DIR/images/rEFInd.png" "$PROFILE_DIR/EFI/boot/rEFInd.png" cp "$ROOT_DIR/images/rEFInd.png" "$PROFILE_DIR/EFI/boot/rEFInd.png"
rsync -aI "/usr/share/refind/drivers_x64/" "$PROFILE_DIR/EFI/boot/drivers_x64/" cp "$TEMP_DIR/refind"/refind*/"refind/refind_x64.efi" "$PROFILE_DIR/EFI/boot/bootx64.efi"
rsync -aI "/usr/share/refind/icons/" "$PROFILE_DIR/EFI/boot/icons/" --exclude "/usr/share/refind/icons/svg" rsync -aI "$TEMP_DIR/refind"/refind*/refind/drivers_x64/ "$PROFILE_DIR/EFI/boot/drivers_x64/"
rsync -aI "$TEMP_DIR/refind"/refind*/refind/icons/ "$PROFILE_DIR/EFI/boot/icons/"
sed -i "s/%ARCHISO_LABEL%/${label}/" "$PROFILE_DIR/EFI/boot/refind.conf" sed -i "s/%ARCHISO_LABEL%/${label}/" "$PROFILE_DIR/EFI/boot/refind.conf"
# Memtest86 # Memtest86
@ -299,7 +301,9 @@ function install_deps() {
echo "Installing dependencies..." echo "Installing dependencies..."
packages= packages=
while read -r line; do while read -r line; do
if ! echo "$line" | grep -Fq "#"; then
packages="$packages $line" packages="$packages $line"
fi
done < "$ROOT_DIR/setup/linux/packages/dependencies" done < "$ROOT_DIR/setup/linux/packages/dependencies"
run_elevated pacman -Syu --needed --noconfirm $packages run_elevated pacman -Syu --needed --noconfirm $packages
} }

View file

@ -5,8 +5,7 @@ hfsprogs
iwgtk iwgtk
mariadb-connector-c mariadb-connector-c
memtest86-efi memtest86-efi
mprime mprime-bin
openbox-patched
pipes.sh pipes.sh
python-mariadb-connector python-mariadb-connector
python-smbus2 python-smbus2

View file

@ -53,7 +53,7 @@ memtest86-efi
mesa-utils mesa-utils
mkinitcpio mkinitcpio
mkinitcpio-archiso mkinitcpio-archiso
mprime mprime-bin
mtools mtools
nano nano
ncdu ncdu

View file

@ -1,42 +1,33 @@
# WizardKit: Package dependencies
archiso archiso
attr
base-devel base-devel
boost
cmake
curl curl
dos2unix dos2unix
erofs-utils
git git
gtk-doc
gtk3 gtk3
hwloc
imlib2
intltool
iwd
json-glib
lhasa
libbsd
libewf
librsvg
libsm
libxcursor
libxft
libxinerama
libxml2
libxrandr
ntfs-3g
openssh
p7zip p7zip
pango
perl-rename
pv pv
refind
reiserfsprogs
rsync
scdoc
startup-notification
subversion
syslinux syslinux
tigervnc tigervnc
unzip
wpa_supplicant # hardinfo-gtk3
cmake
# iwgtk
gtk4
meson
qrencode
scdoc
# opensuperclone-git
libusb-compat
# smartmontools-svn
subversion
# udevil
gettext
intltool
# wd719x-firmware
lha

View file

@ -24,7 +24,7 @@ mpv
noto-fonts noto-fonts
noto-fonts-cjk noto-fonts-cjk
numlockx numlockx
openbox-patched openbox
otf-font-awesome-4 otf-font-awesome-4
papirus-icon-theme papirus-icon-theme
qemu-guest-agent qemu-guest-agent

View file

@ -42,8 +42,6 @@
'Active' - where the active window is --> 'Active' - where the active window is -->
</placement> </placement>
<theme> <theme>
<!-- Enable openbox rounded edges -->
<cornerRadius menu="yes">4</cornerRadius>
<name>Triste-Orange</name> <name>Triste-Orange</name>
<titleLayout>NLIMC</titleLayout> <titleLayout>NLIMC</titleLayout>
<!-- <!--

View file

@ -16,6 +16,8 @@
#log-level = "warn"; #log-level = "warn";
# My Stuff # My Stuff
corner-radius = 4;
round-borders = true;
opacity-rule = [ opacity-rule = [
"90:class_g = 'Alacritty' && !_NET_WM_STATE@:32a", "90:class_g = 'Alacritty' && !_NET_WM_STATE@:32a",
"0:_NET_WM_STATE@[0]:32a *= '_NET_WM_STATE_HIDDEN'", "0:_NET_WM_STATE@[0]:32a *= '_NET_WM_STATE_HIDDEN'",