42 lines
1.7 KiB
Text
42 lines
1.7 KiB
Text
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ #
|
|
# Always refer to Hyprland wiki
|
|
# https://wiki.hyprland.org/
|
|
|
|
# Initial boot script enable to apply initial wallpapers, theming, new settings etc.
|
|
# suggest not to change this or delete this including deleting referrence file in ~/.config/hypr/.initial_startup_done
|
|
# as long as the referrence file is present, this initial-boot.sh will not execute
|
|
exec-once = $HOME/.config/hypr/initial-boot.sh
|
|
|
|
### Sourcing external config files ###
|
|
$configs = $HOME/.config/hypr/configs # Default Configs directory path
|
|
$UserConfigs = $HOME/.config/hypr/UserConfigs # User Configs directory path
|
|
|
|
source=$configs/Keybinds.conf # Pre-configured keybinds
|
|
|
|
# Load defaults, then user additions/overrides
|
|
source= $configs/Startup_Apps.conf
|
|
source= $UserConfigs/Startup_Apps.conf
|
|
|
|
source= $configs/ENVariables.conf # Environment variables (defaults)
|
|
source= $UserConfigs/ENVariables.conf # Environment variables (user)
|
|
|
|
# For laptop related
|
|
source= $configs/Laptops.conf
|
|
source= $UserConfigs/Laptops.conf
|
|
source= $UserConfigs/LaptopDisplay.conf
|
|
|
|
# Load defaults, then user additions
|
|
source= $configs/WindowRules.conf # Window Rules and Layer Rules (defaults)
|
|
source= $UserConfigs/WindowRules.conf # Window Rules and Layer Rules (user)
|
|
|
|
source= $configs/SystemSettings.conf # Default config for hypr
|
|
|
|
source= $UserConfigs/UserDecorations.conf # Decorations config file
|
|
source= $UserConfigs/UserAnimations.conf # Animation config file
|
|
source= $UserConfigs/UserKeybinds.conf # Put your own keybinds here
|
|
source= $UserConfigs/UserSettings.conf # Main Hyprland Settings.
|
|
source= $UserConfigs/01-UserDefaults.conf # settings for User defaults apps
|
|
|
|
# nwg-displays
|
|
source= $HOME/.config/hypr/monitors.conf
|
|
source= $HOME/.config/hypr/workspaces.conf
|