40 lines
1.2 KiB
Bash
Executable file
40 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
cd ~
|
|
|
|
# Log WLR errors and logs to the hyprland log. Recommended
|
|
export HYPRLAND_LOG_WLR=1
|
|
|
|
# Tell XWayland to use a cursor theme
|
|
export XCURSOR_THEME=Simp1e-Gruvbox-Dark
|
|
|
|
# GTK shit
|
|
gsettings set org.gnome.desktop.interface gtk-theme 'gruvbox-dark-gtk'
|
|
gsettings set org.gnome.desktop.interface icon-theme 'gruvbox-dark-icons-gtk'
|
|
gsettings set org.gnome.desktop.interface cursor-theme 'Simp1e-Gruvbox-Dark'
|
|
gsettings set org.gnome.desktop.interface font-name 'Cantarell'
|
|
|
|
# Set a cursor size
|
|
export XCURSOR_SIZE=16
|
|
|
|
# Example IME Support: fcitx
|
|
export GTK_IM_MODULE=fcitx
|
|
export QT_IM_MODULE=fcitx
|
|
export XMODIFIERS=@im=fcitx
|
|
export SDL_IM_MODULE=fcitx
|
|
export GLFW_IM_MODULE=ibus
|
|
export XDG_CURRENT_DESKTOP=Hyprland
|
|
export XDG_SESSION_TYPE=wayland
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export GDK_BACKEND=wayland
|
|
export WM=Hyprland
|
|
export SDL_VIDEODRIVER=wayland
|
|
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
|
|
export XKB_DEFAULT_LAYOUT="us"
|
|
export EDITOR="$HOME/.local/bin/lvim" # $EDITOR use lunarvim in terminal
|
|
export VISUAL="wezterm start --class editor -- $HOME/.local/bin/lvim" # $VISUAL use lunarvim in new terminal window
|
|
export BROWSER="qutebrowser"
|
|
export VIEWER="zathura"
|
|
|
|
exec Hyprland
|