Migrated the hyprland config to lua and fixed some broken scripts
This commit is contained in:
parent
cb97bab237
commit
ea230b4b06
22 changed files with 618 additions and 651 deletions
23
config/.config/hypr/hyprland.lua
Normal file
23
config/.config/hypr/hyprland.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
-- Config is based on the example Hyprland config file provided on the project's repo.
|
||||
-- Refer to the wiki for more information.
|
||||
-- https://wiki.hypr.land/Configuring/Start/
|
||||
|
||||
-- Please note not all available settings / options are set here.
|
||||
-- For a full list, see the wiki
|
||||
|
||||
-- If you want to modify some settings, go to ./config/custom/user.conf and add them
|
||||
-- They'll automatically override the default ones
|
||||
|
||||
-- Default settings
|
||||
require("config.default.environment")
|
||||
require("config.default.input")
|
||||
require("config.default.kb_layouts.fr")
|
||||
require("config.default.appearance")
|
||||
|
||||
-- Desktop mods
|
||||
--require("config.default.minimalist_mod")
|
||||
|
||||
-- Custom settings
|
||||
require("config.custom.user")
|
||||
require("config.custom.plugins")
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue