- Create a file named 20-no-embedded.conf in ~/.config/fontconfig/conf.d/
- To disable this behavior with all fonts, add this in your file:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
If you installed Timeshift from the AUR package (https://aur.archlinux.org/packages/timeshift/), you'll find that scheduled backups may not work. This is due to cronie being disabled by default.
Check if cronie is present first:
systemctl list-unit-files | grep cronie
data:text/html,<html contenteditable="true" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"><head><style>[contenteditable="true"]{font-family:"Input Mono",-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:16px;text-rendering:optimizelegibility;line-height:1.5;display:block;float:none;margin-left:auto;margin-right:auto;width:30%;margin-top:25px;text-align:justify;background-color:black;color:plum;font-weight:bold}</style></head><body></body></html> |
#!/usr/bin/env python | |
from subprocess import call, check_call, check_output, PIPE, Popen | |
def main(): | |
packages = check_output( | |
'pip freeze --user | awk \'{gsub("=.*","",$1);print}\'', shell=True, text=True | |
).split() | |
check_call(f"pip install --user --upgrade {' '.join(packages)}", shell=True) |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# This script is meant to play some favorite radio stations | |
# in background easily, thanks to cvlc. The .pls URLs might | |
# become outdated with time, but hey... fingers crossed. | |
# All listed URLs are the best stream quality that I could find. | |
if [[ "$#" -eq 0 ]]; then |
I hereby claim:
To claim this, I am signing this object:
" Plugins will be downloaded under the specified directory. | |
call plug#begin('~/.vim/plugged') | |
" Declare the list of plugins. | |
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' } | |
Plug 'ferrine/md-img-paste.vim', { 'for': 'markdown' } | |
Plug 'vimwiki/vimwiki' | |
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']} | |
" Optional: goyo | |
" Plug 'junegunn/goyo.vim' |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}
Sometimes you need to block a lot of bigots —promptly— and megablock doesn't always work. Here's a quick & dirty way to do it.
You'll need to create a developer app on Twitter. Follow the steps here: https://developer.twitter.com/en/apps
You'll also need python3 on your system, which should already be present if you use any flavor of Linux or macOS. If you're using Windows, you can follow the installation steps here: https://docs.python.org/3/using/windows.html