Skip to content

Instantly share code, notes, and snippets.

@YoEight
YoEight / improve_fonts.md
Created January 15, 2021 10:11 — forked from j1cs/improve_fonts.md
Improve fonts archlinux

Improve Fonts

Newest

Make your Arch fonts beautiful easily! This is what I do when I install Arch Linux to improve the fonts.

You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):

Install some fonts, for example:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts

@glajchs
glajchs / download_csgo_replays.sh
Created April 29, 2018 05:24
Download any CS:GO replays that were "corrupt" on first attempt to download
#!/bin/bash
cd "${HOME}/.local/share/Steam/steamapps/common/Counter-Strike Global Offensive/csgo/replays"
declare -a REPLAY_INFO_FILES=(`find . -name "*.info" -type f`)
declare -a FILES_WITH_TIMES=()
SEPARATOR="-SEPARATOR-"
DOWNLOADS=0
# Find all files that need downloading, and prepend them with a sortable timestamp
for INFO_FILE in "${REPLAY_INFO_FILES[@]}"; do
$('a[rel=external]').on('click', function (e) {
e.preventDefault();
window.open($(this).attr('href'));
});