mirror of
https://github.com/alvinlollo/Single-install-script.git
synced 2026-07-22 02:43:07 +10:00
Update hyprland config
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
-- This file sources other files in `hyprland` and `custom` folders
|
||||
-- You wanna add your stuff in files in `custom`
|
||||
|
||||
-- Internal stuff --
|
||||
require("hyprland.lib")
|
||||
require("hyprland.services")
|
||||
|
||||
-- Environment variables --
|
||||
require("hyprland.env")
|
||||
if is_file_exists(HOME .. "/.config/hypr/custom/env.lua") then
|
||||
require("custom.env")
|
||||
end
|
||||
|
||||
-- Default configurations --
|
||||
require("hyprland.execs")
|
||||
require("hyprland.general")
|
||||
require("hyprland.rules")
|
||||
require("hyprland.colors")
|
||||
require("hyprland.keybinds")
|
||||
|
||||
-- Custom configurations --
|
||||
if is_file_exists(HOME .. "/.config/hypr/custom/execs.lua") then
|
||||
require("custom.execs")
|
||||
end
|
||||
if is_file_exists(HOME .. "/.config/hypr/custom/general.lua") then
|
||||
require("custom.general")
|
||||
end
|
||||
if is_file_exists(HOME .. "/.config/hypr/custom/rules.lua") then
|
||||
require("custom.rules")
|
||||
end
|
||||
if is_file_exists(HOME .. "/.config/hypr/custom/keybinds.lua") then
|
||||
require("custom.keybinds")
|
||||
end
|
||||
|
||||
-- nwg-displays support --
|
||||
if is_file_exists(HOME .. "/.config/hypr/workspaces.lua") then
|
||||
require("workspaces")
|
||||
end
|
||||
if is_file_exists(HOME .. "/.config/hypr/monitors.lua") then
|
||||
require("monitors")
|
||||
end
|
||||
|
||||
-- Shell overrides --
|
||||
require("hyprland.shellOverrides.main")
|
||||
Reference in New Issue
Block a user