blob: be15b021271258d7c9071e1e093c6909634f7a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Hyprland profile settings
# These override X11 settings from .profile when running Wayland
# Terminal (foot instead of st)
export TERM="xterm-256color"
export TERMINAL="foot"
# XDG overrides for Wayland
export XDG_CURRENT_DESKTOP=Hyprland
export XDG_SESSION_TYPE=wayland
export XDG_SESSION_DESKTOP=Hyprland
# alias startx to start Hyprland (muscle memory from X11)
alias startx="start-hyprland"
|