feat: better AGS integration and Hyprland setup
AGS: Full AGS config directory init Autostart: Created myAutostartCommands var to programmatically define all commands to be started when Hyprland initiates this includes firefox, thunderbird, and a terminal to be set in the special Hyprland workspace
This commit is contained in:
parent
b716af87bd
commit
37674d828e
10 changed files with 335 additions and 25 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
tmconfig,
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
|
@ -13,6 +13,7 @@
|
|||
myDisplayName = mkOption {type = str;};
|
||||
myEmail = mkOption {type = str;};
|
||||
displayScale = mkOption {type = int;};
|
||||
myAutostartCommands = mkOption {type = listOf str;};
|
||||
};
|
||||
|
||||
# Default values for this configuration
|
||||
|
@ -23,5 +24,8 @@
|
|||
myWallPaperPathString = "/home/${myUserName}/wallpaper.png";
|
||||
myDisplayName = "Zhongheng Liu";
|
||||
myEmail = "z.liu@outlook.com.gr";
|
||||
myAutostartCommands = [
|
||||
"fcitx5"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue