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
devices: ( | |
{ | |
name: "MX Master 3S"; | |
hiresscroll: { | |
hires: true; | |
invert: false; | |
target: false; | |
}; | |
buttons: ( | |
{ |
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
[user] | |
name = … | |
email = … | |
signingkey = |
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
/* Moved to https://gist.github.com/smmr0/2463f83c858f7af7ba018a19e8fa07df#file-userchrome-css */ |
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
// https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig | |
pref('general.config.filename', 'firefox.cfg'); | |
pref('general.config.obscure_value', 0); |
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
#!/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 |
NewerOlder