sudo mv /usr/share/i18n/locales/en_US{,@old}
sudo cp en_US /usr/share/i18n/locales/
sudo dpkg-reconfigure locales
- Reboot
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
#!/usr/bin/env sh | |
set -e | |
app_name="$1" | |
app_id="$(doctl apps list --format 'Spec.Name,ID' | tail -n +2 | awk -v "app_name=$app_name" '$1 = $app_name { print $2 }')" | |
tempfile="$(mktemp --tmpdir "do-$app_name-XXXXXXXXXX.yaml")" | |
trap 'rm -f "$tempfile"' EXIT |
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
#!/usr/bin/env sh | |
# Prerequisites: | |
# - flatpak override --filesystem=~/.thunderbird eu.betterbird.Betterbird | |
# - flatpak override --filesystem=~/.local/bin/betterbird:ro --share=network com.ulduzsoft.Birdtray | |
unset $(env | cut -d '=' -f 1 | grep -E '^SNAP(_|$)') | |
if command -v flatpak-spawn > /dev/null 2>&1; then | |
exec /usr/bin/flatpak-spawn --host "$0" "$@" |
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
/* Moved to https://gist.github.com/smmr0/2463f83c858f7af7ba018a19e8fa07df#file-userchrome-css */ |
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
[user] | |
name = … | |
email = … | |
signingkey = |
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
devices: ( | |
{ | |
name: "Wireless Mouse MX Master 3"; | |
hiresscroll: { | |
hires: true; | |
invert: false; | |
target: false; | |
}; | |
buttons: ( | |
{ |
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
# https://askubuntu.com/a/917257 | |
--- analog-output.conf.common 2021-11-07 18:13:46.834763904 -0600 | |
+++ analog-output.new.conf.common 2021-11-07 18:14:54.876504851 -0600 | |
@@ -134,12 +134,23 @@ | |
; # numbering schemes, so we can't hardcode the full jack name in our configuration | |
; # files. | |
+[Element Master] | |
+switch = mute | |
+volume = ignore |
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
/gnome-desktop-3.0.mo |
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
#!/usr/bin/env sh | |
# Mainly for use with <https://github.com/FND/todo.txt-cli/blob/1bdbdf41464826cc85e84ae8c3c17336e24a2922/futureTasks> | |
# Installation: | |
# 1. `cd "$TODO_ACTIONS_DIR"` | |
# 2. `mkdir -p helpers` | |
# 3. `mkdir -p filters` | |
# 4. `ln -s /path/to/filter_with_python3_as_python helpers/` (where `/path/to/filter_with_python3_as_python` is this file) | |
# 5. `ln -s /path/to/filter_cmd filters/` (where `/path/to/filter_cmd` is to be used as `TODOTXT_FINAL_FILTER`) |
OlderNewer