2025-02-09 02:18:25 -05:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}: {
|
2025-02-08 20:05:57 -05:00
|
|
|
programs.hyprpanel.settings = {
|
|
|
|
bar = {
|
2025-02-09 02:18:25 -05:00
|
|
|
autoHide = "fullscreen";
|
2025-02-08 20:05:57 -05:00
|
|
|
launcher.autoDetectIcon = true;
|
2025-02-08 20:52:34 -05:00
|
|
|
clock = {
|
2025-02-09 02:18:25 -05:00
|
|
|
format = "%m/%d/%y %H:%M";
|
|
|
|
};
|
|
|
|
media = {
|
|
|
|
truncation = true;
|
|
|
|
truncation_size = 40;
|
2025-02-08 20:52:34 -05:00
|
|
|
};
|
2025-02-08 20:05:57 -05:00
|
|
|
workspaces = {
|
2025-02-09 02:18:25 -05:00
|
|
|
workspaces = 4;
|
2025-02-08 20:05:57 -05:00
|
|
|
show_icons = true;
|
2025-02-09 02:18:25 -05:00
|
|
|
showWsIcons = false;
|
|
|
|
showApplicationIcons = false;
|
|
|
|
monitorSpecific = false;
|
|
|
|
};
|
|
|
|
customModules = {
|
|
|
|
hyprsunset = {
|
|
|
|
temperature = "3000k";
|
|
|
|
};
|
|
|
|
weather.unit = "metric";
|
2025-02-08 20:05:57 -05:00
|
|
|
};
|
|
|
|
};
|
2025-02-08 20:52:34 -05:00
|
|
|
notifications = {
|
|
|
|
monitor = 0;
|
|
|
|
active_monitor = false;
|
|
|
|
};
|
2025-02-08 20:05:57 -05:00
|
|
|
menus = {
|
|
|
|
clock = {
|
|
|
|
time = {
|
|
|
|
military = true;
|
2025-02-09 02:18:25 -05:00
|
|
|
hideSeconds = false;
|
2025-02-08 20:05:57 -05:00
|
|
|
};
|
|
|
|
weather = {
|
2025-02-09 02:18:25 -05:00
|
|
|
enabled = false;
|
2025-02-08 20:05:57 -05:00
|
|
|
key = "13b77bbcf0dc420782005246250902";
|
|
|
|
unit = "metric";
|
|
|
|
location = "New York";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
media = {
|
|
|
|
displayTime = true;
|
|
|
|
};
|
|
|
|
dashboard = {
|
|
|
|
stats.enable_gpu = false;
|
|
|
|
directories.enabled = false;
|
|
|
|
shortcuts.enabled = false;
|
|
|
|
powermenu = {
|
2025-02-09 02:18:25 -05:00
|
|
|
sleep = "${inputs.hyprland.packages.${pkgs.system}.hyprland}/bin/hyprctl dispatch dpms off";
|
2025-02-08 20:05:57 -05:00
|
|
|
avatar = {
|
2025-02-09 00:21:15 -05:00
|
|
|
image = "/home/notoh/dev/assets/pfps/pfp2.jpg";
|
2025-02-08 20:05:57 -05:00
|
|
|
name = "notohh";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
theme = {
|
|
|
|
bar.transparent = false;
|
2025-02-08 20:52:34 -05:00
|
|
|
osd = {
|
|
|
|
monitor = 0;
|
|
|
|
active_monitor = false;
|
|
|
|
};
|
2025-02-08 20:05:57 -05:00
|
|
|
font = {
|
|
|
|
name = "Inter";
|
|
|
|
size = "17px";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|