fixes some things

This commit is contained in:
Dennis Schoepf 2026-02-09 21:58:26 +01:00
parent b9e719b5cd
commit 384ea62bd8
2 changed files with 17 additions and 14 deletions

View file

@ -286,7 +286,7 @@ binds {
// Suggested binds for running programs: terminal, app launcher, screen locker. // Suggested binds for running programs: terminal, app launcher, screen locker.
Mod+Return hotkey-overlay-title="Open a terminal" { spawn "ghostty"; } Mod+Return hotkey-overlay-title="Open a terminal" { spawn "ghostty"; }
Mod+Space hotkey-overlay-title="Launcher" { spawn "noctalia-shell ipc call launcher"; } Mod+Space hotkey-overlay-title="Launcher" { spawn "noctalia-shell ipc call launcher toggle"; }
Mod+B hotkey-overlay-title="Browser" { spawn "zen-beta"; } Mod+B hotkey-overlay-title="Browser" { spawn "zen-beta"; }
Mod+M hotkey-overlay-title="System Monitor" { spawn-sh "noctalia-shell ipc call systemMonitor toggle"; } Mod+M hotkey-overlay-title="System Monitor" { spawn-sh "noctalia-shell ipc call systemMonitor toggle"; }
Mod+N hotkey-overlay-title="File Manager" { spawn "nautilus"; } Mod+N hotkey-overlay-title="File Manager" { spawn "nautilus"; }

View file

@ -7,14 +7,14 @@
colors = { colors = {
mError = "#67182f"; mError = "#67182f";
mOnError = "#ff6a7a"; mOnError = "#ff6a7a";
mOnPrimary = "#c57faf"; mOnPrimary = "#ffffff";
mOnSecondary = "#af85ea"; mOnSecondary = "#af85ea";
mOnSurface = "#ffffff"; mOnSurface = "#ffffff";
mOnSurfaceVariant = "#bf8a9f"; mOnSurfaceVariant = "#bf8a9f";
mOnTertiary = "#35afbf"; mOnTertiary = "#35afbf";
mOnHover = "#ffffff"; mOnHover = "#ffffff";
mOutline = "#807c9f"; mOutline = "#807c9f";
mPrimary = "#572454"; mPrimary = "#c57faf";
mSecondary = "#331531"; mSecondary = "#331531";
mShadow = "#000000"; mShadow = "#000000";
mSurface = "#0f0b15"; mSurface = "#0f0b15";
@ -29,21 +29,19 @@
position = "left"; position = "left";
floating = false; floating = false;
showCapsule = false; showCapsule = false;
marginHorizontal = 8;
widgets = { widgets = {
left = [ left = [
{
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
{ {
id = "SystemMonitor"; id = "SystemMonitor";
} }
]; ];
center = [ center = [
{
id = "ControlCenter";
useDistroLogo = false;
colorize = true;
}
{ {
hideUnoccupied = false; hideUnoccupied = false;
id = "Workspace"; id = "Workspace";
@ -61,9 +59,11 @@
id = "Tray"; id = "Tray";
} }
{ {
id = "ControlCenter"; formatHorizontal = "HH:mm";
useDistroLogo = false; formatVertical = "HH mm";
colorize = true; id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
} }
]; ];
}; };
@ -91,6 +91,9 @@
terminalCommand = "ghostty -e"; terminalCommand = "ghostty -e";
iconMode = "native"; iconMode = "native";
}; };
systemMonitor = {
enableDgpuMonitoring = true;
};
sessionMenu = { sessionMenu = {
enableCountdown = true; enableCountdown = true;
countdownDuration = 4000; countdownDuration = 4000;