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 |
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
| /* 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
| [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
| 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
| #!/usr/bin/env sh | |
| # https://src.fedoraproject.org/rpms/setup/blob/94f4f1acd8043ebf19727f66a0b91e6a530e4d7b/f/profile#_11 | |
| i18npathmunge() { | |
| case ":${I18NPATH}:" in | |
| *:"$1":*) | |
| ;; | |
| *) | |
| if [ "$2" = 'after' ] ; then | |
| I18NPATH="$I18NPATH:$1" |
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://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 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
| /gnome-desktop-3.0.mo |
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 | |
| # 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