blob: 7119b3dfc53e61f20843f5632106714bbbc5ba25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# /* ---- 💫 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
|