Skip to content

Instantly share code, notes, and snippets.

@axzxc1236
Last active February 5, 2021 05:11
Show Gist options
  • Select an option

  • Save axzxc1236/a5db69094a5bde32b49947b48ea48eb9 to your computer and use it in GitHub Desktop.

Select an option

Save axzxc1236/a5db69094a5bde32b49947b48ea48eb9 to your computer and use it in GitHub Desktop.
Extract fonts from Windows iso into wine folder.
#! /bin/bash
if ! [ -e "/usr/bin/7z" ]; then
sudo apt install p7zip-full -y
fi
ls *.iso 2>/dev/null >/dev/null
if ! [ $? -eq 0 ]; then
echo "There is no .iso file in this folder"
else
7z e *.iso sources/install.wim
7z e install.wim 1/Windows/{Fonts/"*".{ttf,ttc},System32/Licenses/neutral/"*"/"*"/license.rtf} -o"$HOME/.wine/drive_c/windows/Fonts/" -y
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment