finishes up niri + noctalia
This commit is contained in:
parent
463e9368e7
commit
743971d1f9
2 changed files with 16 additions and 10 deletions
|
|
@ -265,10 +265,15 @@ window-rule {
|
||||||
// Example: enable rounded corners for all windows.
|
// Example: enable rounded corners for all windows.
|
||||||
// (This example rule is commented out with a "/-" in front.)
|
// (This example rule is commented out with a "/-" in front.)
|
||||||
window-rule {
|
window-rule {
|
||||||
geometry-corner-radius 8
|
geometry-corner-radius 20
|
||||||
clip-to-geometry true
|
clip-to-geometry true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
debug {
|
||||||
|
// Allows notification actions and window activation from Noctalia.
|
||||||
|
honor-xdg-activation-with-invalid-serial
|
||||||
|
}
|
||||||
|
|
||||||
binds {
|
binds {
|
||||||
// Keys consist of modifiers separated by + signs, followed by an XKB key name
|
// Keys consist of modifiers separated by + signs, followed by an XKB key name
|
||||||
// in the end. To find an XKB name for a particular key, you may use a program
|
// in the end. To find an XKB name for a particular key, you may use a program
|
||||||
|
|
@ -286,14 +291,14 @@ 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 toggle"; }
|
Mod+Space hotkey-overlay-title="Launcher" { spawn-sh "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"; }
|
||||||
Mod+Shift+V hotkey-overlay-title="Clipboard" { spawn-sh "noctalia-shell ipc call launcher clipboard"; }
|
Mod+Shift+V hotkey-overlay-title="Clipboard" { spawn-sh "noctalia-shell ipc call launcher clipboard"; }
|
||||||
Mod+Shift+M hotkey-overlay-title="Emoji" { spawn-sh "noctalia-shell ipc call launcher emoji"; }
|
Mod+Shift+M hotkey-overlay-title="Emoji" { spawn-sh "noctalia-shell ipc call launcher emoji"; }
|
||||||
Mod+Alt+L hotkey-overlay-title="Open session menu" { spawn "noctalia-shell ipc call sessionMenu toggle"; }
|
Mod+Alt+L hotkey-overlay-title="Open session menu" { spawn-sh "noctalia-shell ipc call sessionMenu toggle"; }
|
||||||
Mod+Comma hotkey-overlay-title="Open system settings" { spawn "noctalia-shell ipc call settings toggle"; }
|
Mod+Comma hotkey-overlay-title="Open system settings" { spawn-sh "noctalia-shell ipc call settings toggle"; }
|
||||||
|
|
||||||
// Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
|
// Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc.
|
||||||
// Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
|
// Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`.
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
colors = {
|
colors = {
|
||||||
mError = "#67182f";
|
mError = "#ff6a7a";
|
||||||
mOnError = "#ff6a7a";
|
mOnError = "#ffffff";
|
||||||
mOnPrimary = "#0f0b15";
|
mOnPrimary = "#0f0b15";
|
||||||
mOnSecondary = "#331531";
|
mOnSecondary = "#331531";
|
||||||
mOnSurface = "#ffffff";
|
mOnSurface = "#ffffff";
|
||||||
|
|
@ -39,6 +39,9 @@
|
||||||
useMonospacedFont = true;
|
useMonospacedFont = true;
|
||||||
usePrimaryColor = true;
|
usePrimaryColor = true;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
id = "SystemMonitor";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
id = "ControlCenter";
|
id = "ControlCenter";
|
||||||
useDistroLogo = false;
|
useDistroLogo = false;
|
||||||
|
|
@ -62,9 +65,6 @@
|
||||||
{
|
{
|
||||||
id = "Tray";
|
id = "Tray";
|
||||||
}
|
}
|
||||||
{
|
|
||||||
id = "SystemMonitor";
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -89,7 +89,8 @@
|
||||||
enableClipboardHistory = true;
|
enableClipboardHistory = true;
|
||||||
autoPasteClipboard = true;
|
autoPasteClipboard = true;
|
||||||
terminalCommand = "ghostty -e";
|
terminalCommand = "ghostty -e";
|
||||||
iconMode = "native";
|
iconMode = "tabler";
|
||||||
|
showIconBackground = true;
|
||||||
};
|
};
|
||||||
systemMonitor = {
|
systemMonitor = {
|
||||||
enableDgpuMonitoring = true;
|
enableDgpuMonitoring = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue