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> |