mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
32 lines
932 B
Bash
Executable File
32 lines
932 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PATH=$HOME/bin/gamadv-xtd3:$HOME/.local/bin:$HOME/.cargo/bin:$HOME/.config/hypr/scripts/:$PATH
|
|
export PATH
|
|
|
|
cd ~ || exit
|
|
|
|
# export HYPRLAND_LOG_WLR=1
|
|
export WLR_NO_HARDWARE_CURSORS=1
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
export XCURSOR_THEME=Catppuccin-Mocha-Mauve-Cursor
|
|
export XCURSOR_SIZE=24
|
|
export XDG_SESSION_TYPE=wayland
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
export QT_QPA_PLATFORM="wayland;xcb"
|
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|
|
export QT_WAYLAND_DISABLE_WINDOWDEORATION=1
|
|
export MOZ_DISABLE_RDD_SANDBOX=1
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export NVD_BACKEND=direct
|
|
export LIBVA_DRIVER_NAME=nvidia
|
|
export __GLX_VENDOR_LIBRARY_NAME=nvidia
|
|
export __NV_PRIME_RENDER_OFFLOAD=1
|
|
export __VK_LAYER_NV_optimus=NVIDIA_only
|
|
export WLR_BACKEND=vulkan
|
|
export GBM_BACKEND=nvidia-drm
|
|
export GDK_BACKEND="wayland,x11"
|
|
export ASAN_OPTIONS="log_path=asan.log"
|
|
|
|
# exec Hyprland
|
|
exec Hyprland &> /tmp/hyprland-$(date +%Y-%m-%d-%H-%M-%S).log
|