switch to unstable

This commit is contained in:
Sean Kovacs 2026-01-22 12:40:17 -05:00
commit a66c88c379
Signed by: sckova
GPG key ID: 00F325187C68651A
6 changed files with 100 additions and 165 deletions

View file

@ -1,7 +1,7 @@
{ pkgs, config, ... }:
{
colors = {
scheme = "catppuccin-mocha";
scheme = "espresso";
accent = "base09";
};

View file

@ -199,6 +199,7 @@
];
allow-when-locked = true;
};
"Shift+XF86AudioRaiseVolume" = {
action.spawn = [
"wpctl"
@ -217,6 +218,39 @@
];
allow-when-locked = true;
};
"MouseForward" = {
action.spawn-sh = [
"noctalia-shell ipc call volume increase"
];
allow-when-locked = true;
};
"MouseBack" = {
action.spawn-sh = [
"noctalia-shell ipc call volume decrease"
];
allow-when-locked = true;
};
"Shift+MouseForward" = {
action.spawn = [
"wpctl"
"set-volume"
"@DEFAULT_AUDIO_SINK@"
"0.01+"
];
allow-when-locked = true;
};
"Shift+MouseBack" = {
action.spawn = [
"wpctl"
"set-volume"
"@DEFAULT_AUDIO_SINK@"
"0.01-"
];
allow-when-locked = true;
};
"XF86AudioMute" = {
action.spawn-sh = [
"noctalia-shell ipc call volume muteOutput"

View file

@ -45,7 +45,6 @@
brightness = {
brightnessStep = 5;
enforceMinimum = false;
enableDdcSupport = true;
};
bar = {
position = "top";