This file contains 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" encoding="UTF-8"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<!-- | |
Author: Santiago Saavedra <[email protected]>, Kyle Lacy | |
License: CC0 | |
Year: 2016-2017 | |
Install: | |
Copy to $XDG_CONFIG_DIR/fontconfig/conf.d/57-add-emoji-support.conf | |
Run fc-cache -f |
This file contains 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 | |
### Pretty-print dedicated (array) var, MAPFILE. | |
prettyPrintMAPFILE() { | |
let i=0 | |
echo "[MAPFILE]" | |
for l in "${MAPFILE[@]}" | |
do | |
echo "$i. |$l|" | |
let i++ | |
done |