diff options
-rw-r--r-- | Vencord/settings/settings.json | 25 | ||||
-rwxr-xr-x | X11/xinit | 5 | ||||
-rw-r--r-- | zsh/aliases | 9 | ||||
-rw-r--r-- | zsh/env | 6 |
4 files changed, 29 insertions, 16 deletions
diff --git a/Vencord/settings/settings.json b/Vencord/settings/settings.json index beefbc6..af0f81e 100644 --- a/Vencord/settings/settings.json +++ b/Vencord/settings/settings.json @@ -66,7 +66,7 @@ "consistent": "image" }, "BANger": { - "enabled": false, + "enabled": true, "source": "https://i.imgur.com/wp5q52C.mp4" }, "BetterFolders": { @@ -202,7 +202,7 @@ "enabled": true }, "LastFMRichPresence": { - "enabled": false, + "enabled": true, "shareUsername": false, "hideWithSpotify": true, "statusName": "some music", @@ -341,8 +341,8 @@ "epic": false }, "Party mode 🎉": { - "enabled": true, - "superIntensePartyMode": 0 + "enabled": false, + "superIntensePartyMode": 2 }, "PermissionsViewer": { "enabled": true, @@ -418,7 +418,7 @@ "enabled": true }, "SendTimestamps": { - "enabled": false + "enabled": true }, "ServerListIndicators": { "enabled": true, @@ -445,7 +445,7 @@ "hideUnreads": true }, "ShowMeYourName": { - "enabled": false + "enabled": true }, "SilentMessageToggle": { "enabled": true @@ -517,7 +517,7 @@ "showVoiceChannelSectionHeader": true }, "USRBG": { - "enabled": true, + "enabled": false, "voiceBackground": true, "nitroFirst": true }, @@ -613,7 +613,16 @@ "enabled": false }, "SuperReactionTweaks": { + "enabled": false, + "superReactByDefault": true, + "unlimitedSuperReactionPlaying": false, + "superReactionPlayingLimit": 20 + }, + "ClientTheme": { "enabled": false + }, + "FixImagesQuality": { + "enabled": true } }, "notifications": { @@ -626,6 +635,6 @@ "authenticated": false, "url": "https://api.vencord.dev/", "settingsSync": false, - "settingsSyncVersion": 1699799026302 + "settingsSyncVersion": 1701870611667 } }
\ No newline at end of file @@ -4,7 +4,10 @@ # ## ~/.xinitrc ## # # # -xrandr -s 1920x1080 -r 144 & # target screen resolution +xrandr --output HDMI-0 --mode 1920x1080 -r 240 +xrandr --output HDMI-1-0 --mode 1920x1080 -r 240 + +#xrandr -s 1920x1080 -r 144 & # target screen resolution xset r rate 300 30 & # key repeat delay and speed xrdb merge ~/.Xresources # resources diff --git a/zsh/aliases b/zsh/aliases index 4316e0a..a1effaf 100644 --- a/zsh/aliases +++ b/zsh/aliases @@ -51,11 +51,12 @@ alias sxiv='sxiv -bpqra' # tools alias newsboat='newsboat -C ~/.config/newsboat/newsboat.conf -c ~/.config/newsboat/cache.db -u ~/.config/newsboat/urls' alias proton='~/.local/share/Steam/steamapps/common/Proton\ -\ Experimental/proton run' -alias protonge='~/.local/share/Steam/compatibilitytools.d/GE-Proton8-24/proton run' +alias protonge='~/.local/share/Steam/compatibilitytools.d/GE-Proton8-25/proton run' alias ytdlpa='yt-dlp --extract-audio --audio-quality 0 --audio-format mp3' alias ytdlp='yt-dlp' # envycontrol for nvidia optimus -alias dedicated='sudo envycontrol -s nvidia --coolbits 28 --verbose' # --force-comp -alias hybrid='sudo envycontrol -s hybrid --rtd3 3 --verbose' -alias integrated='sudo envycontrol -s integrated --verbose' +envycontrol='/home/alphara/dev/envycontrol/envycontrol.py' +alias dedicated='sudo $envycontrol -s nvidia --coolbits 28 --verbose' # --force-comp +alias hybrid='sudo $envycontrol -s hybrid --rtd3 3 --verbose' +alias integrated='sudo $envycontrol -s integrated --verbose' @@ -34,8 +34,8 @@ export STEAM_COMPAT_CLIENT_INSTALL_PATH=~/.local/share/Steam/ #export mesa_glthread=true # AMD OPENGL shader caching export RADV_PERFTEST=aco # AMD faster shader compiler by Valve -export __GL_THREADED_OPTIMIZATION=1 # NVIDIA OPENGL -export __GL_SHADER_DISK_CACHE=1 # to enable shader cache +#export __GL_THREADED_OPTIMIZATION=1 # NVIDIA OPENGL +#export __GL_SHADER_DISK_CACHE=1 # to enable shader cache ### ray tracing support and nvidia stuff ### export PROTON_HIDE_NVIDIA_GPU=0 @@ -52,7 +52,7 @@ export GTK2_RC_FILES=/usr/share/themes/Arc-Dark/gtk-2.0/gtkrc export QT_STYLE_OVERRIDE=adwaita-dark ### pipewire ### -# export PIPEWIRE_LATENCY=256/48000 # IF NEEDED 16/48000 ~ 0.33 ms latency +export PIPEWIRE_LATENCY=480/48000 # IF NEEDED 16/48000 ~ 0.33 ms latency ### cuda & ML ### export PATH=$PATH:/usr/local/cuda-11.7/bin |