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
| # System apps | |
| cmd locale set-app-locales com.android.calendar --locales zh-CN | |
| cmd locale set-app-locales com.android.camera --locales zh-CN | |
| cmd locale set-app-locales com.android.contacts --locales zh-CN | |
| cmd locale set-app-locales com.android.deskclock --locales zh-CN | |
| cmd locale set-app-locales com.android.fileexplorer --locales zh-CN | |
| cmd locale set-app-locales com.android.mms --locales zh-CN | |
| cmd locale set-app-locales com.android.soundrecorder --locales zh-CN | |
| cmd locale set-app-locales com.duokan.phone.remotecontroller --locales zh-CN | |
| cmd locale set-app-locales com.mi.health --locales zh-CN |
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
| function __prompt_left_git_is_dirty -d 'Check git repo dirty' | |
| echo (git status -s --ignore-submodules=dirty 2>/dev/null) | |
| end | |
| function __prompt_left_git_get_branch_name -d 'Get git branch name' | |
| set -l branch (git symbolic-ref --quiet HEAD 2>/dev/null) | |
| if set -q branch[1] | |
| echo (string replace -r '^refs/heads/' '' $branch) | |
| else | |
| echo (git rev-parse --short HEAD 2>/dev/null) |
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
| [ScalabilityGroups] | |
| sg.ShadowQuality=3 | |
| sg.PostProcessQuality=3 | |
| sg.ShadingQuality=3 | |
| sg.ViewDistanceQuality=3 | |
| sg.FoliageQuality=3 | |
| [/Script/FSD.FSDGameUserSettings] | |
| useToggleTerrainScanner=False | |
| bJukeboxStreamerMode=False |
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
| set -l CHEKC_CACHE_DIR /tmp/check-sysusers | |
| mkdir -p "$CHEKC_CACHE_DIR" | |
| # Print non-exists system users | |
| cat /etc/passwd | string split -f1 ':' | sort >"$CHEKC_CACHE_DIR/current.users" | |
| cat /usr/lib/sysusers.d/* | rg '^u' | string split -n -f2 ' ' | sort >"$CHEKC_CACHE_DIR/preset.users" | |
| set -l list_users (sort "$CHEKC_CACHE_DIR/current.users" "$CHEKC_CACHE_DIR/preset.users" | uniq -u) | |
| if test -n "$list_users" |
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
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- Default serif font --> | |
| <alias binding="strong"> | |
| <family>serif</family> | |
| <prefer> | |
| <family>PT Serif</family> | |
| </prefer> | |
| </alias> |