29 lines
703 B
Bash
Executable File
29 lines
703 B
Bash
Executable File
# ~/.bashrc
|
|
eval "$(starship init bash)"
|
|
|
|
alias Settings="cd ~/.config && nvim"
|
|
alias Phone="scrcpy --max-fps=60 --no-audio --keyboard=uhid --mouse=uhid"
|
|
alias Key="cat ~/.ssh/id_rsa.pub"
|
|
alias Server="ssh adrien@192.168.178.26"
|
|
|
|
alias untar="sudo tar -xf"
|
|
|
|
# For scrcpy
|
|
export SDL_VIDEODRIVER=wayland
|
|
|
|
# For Ultimaker
|
|
export QT_QPA_PLATFORM="wayland;xcb"
|
|
export SDL_VIDEODRIVER="wayland,x11"
|
|
export CLUTTER_BACKEND=wayland
|
|
export GMB_BACKEND=nvidia-drm
|
|
export __GLX_VENDOR_LIBRARY_NAME=nvidia
|
|
|
|
export ELECTRON_OZONE_PLATFORM_HINT=wayland
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export SAL_USE_VCLPLUGIN=qt6
|
|
|
|
export TERM=xterm
|
|
|
|
# Created by `pipx` on 2025-06-15 21:36:45
|
|
export PATH="$PATH:/home/adrien/.local/bin"
|