Skip to content

Instantly share code, notes, and snippets.

View anein's full-sized avatar
👨‍🚀
Focusing

Alexander N. anein

👨‍🚀
Focusing
View GitHub Profile
@anein
anein / Fallout76Prefs.ini
Created July 15, 2021 22:44
Fallout 76 preferences
[Display]
iMaxAnisotropy=8
fShadowDistance=60000.0000
fDirShadowDistance=60000.0000
iShadowMapResolution=2048
uiShadowFilter=2
uiOrthoShadowFilter=2
fBlendSplitDirShadow=48.0000
iMaxFocusShadows=4
iMaxDecalsPerFrame=100
#This file is provided by xorg-x11-drv-nvidia
#Do not edit
Section "OutputClass"
Identifier "intel"
MatchDriver "i915"
Driver "intel"
Option "TearFree" "true"
Option "TripleBuffer" "true"
Option "PrimaryGPU" "yes"
@anein
anein / gist:cb9805a93834ca2275525afb164f6241
Created April 14, 2021 11:40
[Tweaks UE] Engine.ini
[SystemSettings]
OneFrameThreadLag=1
[/Script/Engine.Engine]
bDisablePhysXHardwareSupport=False
[/script/engine.garbagecollectionsettings]
TimeBetweenPurgingPendingKillObjects=15
[/Script/Engine.RendererSettings]
@anein
anein / fonts.sh
Created April 14, 2019 12:17
Fonts installation for Clear Linux. Lighter version.
#!/bin/sh
DEST=~/.local/share/fonts
TEMP_DIR=/tmp/fonts_install
font_files="andale32.exe arial32.exe arialb32.exe comic32.exe courie32.exe georgi32.exe impact32.exe times32.exe trebuc32.exe webdin32.exe verdan32.exe wd97vwr32.exe"
download(){
wget -P ${TEMP_DIR} "https://netcologne.dl.sourceforge.net/project/corefonts/the%20fonts/final/$1"
}
@anein
anein / frisk.zsh-theme
Created March 27, 2019 14:35
My version of zsh frisk theme
PROMPT=$'
%{$fg[green]%}[%n@%m]%{$reset_color%} %{$fg_bold[blue]%}%/%{$reset_color%} %{$fg[user_color]%}[%T]%{$reset_color%} $(git_prompt_info)$(bzr_prompt_info)%{$fg_bold[black]%}>%{$reset_color%} '
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}"
GIT_CB="git::"
ZSH_THEME_SCM_PROMPT_PREFIX="%{$fg[green]%}["
ZSH_THEME_GIT_PROMPT_PREFIX=$ZSH_THEME_SCM_PROMPT_PREFIX$GIT_CB
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} "
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}"
@anein
anein / gist:9b77ed8daf2424adedfb61c49e722caa
Created July 5, 2018 08:41
Set keyboard layout Gnome
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Shift>space']"
@anein
anein / gist:43abdef595111fd17115955601526ab4
Created January 6, 2018 17:35
Dell XPS 15 9560 - bluetooth fix.
# edit /etc/default/tlp
USB_BLACKLIST_BTUSB=1
@anein
anein / webstorm64.vmoptions
Created December 5, 2017 21:56
My performance options for WebStorm with some explanatory comments
# Enables the server VM. Though this option is implicitly enabled on a 64-bit capable jdk
# Xms should be equal to Xmx.
-server
# Enables assertions
-ea
# Sets the initial size of the heap
-Xms2G
@anein
anein / idea.properties
Created December 5, 2017 21:56
Some extra options for WebStrom
# Sets experimental zero-latency typing like in Sublime and Vim
editor.zero.latency.typing=true
@anein
anein / gist:40dc42629e791404793dcd23c43557d2
Created December 5, 2017 13:11
set a shortcut for switching between keyboard layouts in Gnome
gsettings set org.gnome.desktop.wm.keybindings switch-input-source "['<Shift>space']"