16 lines
292 B
Fish
16 lines
292 B
Fish
|
|
|
||
|
|
fish_add_path /home/arope/.spicetify
|
||
|
|
set -x PLC enp3s0
|
||
|
|
|
||
|
|
# Auto-start Hyprland on TTY1 login
|
||
|
|
if status is-login
|
||
|
|
if test (tty) = "/dev/tty1"
|
||
|
|
exec Hyprland
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
# Force GTK apps to respect local CSS and OLED Dark
|
||
|
|
set -gx ADW_DISABLE_PORTAL 1
|
||
|
|
set -gx GTK_THEME Adwaita-dark
|
||
|
|
|