This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd /tmp/ | |
| echo "Going to temp directory" | |
| dnlink=`curl -s https://api.github.com/repos/dids/clover-builder/releases/latest | grep -Eo "https?://\S+?\.pkg" | head -n 1` | |
| echo "Get the lastest download link" | |
| efiguid=`bdmesg | grep " self device " | grep -o ........-....-....-....-............ | head -n 1` | |
| echo "Get Booted EFI Partition's GUID" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="pattern"> | |
| <test qual="any" name="family"> | |
| <string>serif</string> | |
| </test> | |
| <edit name="family" mode="prepend" binding="strong"> | |
| <string>DejaVu Serif</string> |