Compare commits
2 Commits
a2b63259ed
...
e1e3e96626
| Author | SHA1 | Date | |
|---|---|---|---|
| e1e3e96626 | |||
| 16f11262ff |
@@ -122,6 +122,13 @@
|
|||||||
".config/dconf"
|
".config/dconf"
|
||||||
".config/pip"
|
".config/pip"
|
||||||
".config/sunshine"
|
".config/sunshine"
|
||||||
|
|
||||||
|
".gemini"
|
||||||
|
".claude"
|
||||||
|
".claude-code-router"
|
||||||
|
];
|
||||||
|
homeFiles = [
|
||||||
|
".claude.json"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -175,7 +175,7 @@
|
|||||||
"play-pause"
|
"play-pause"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"Mod+XF86AudioRaiseVolume" = {
|
"Super+XF86AudioRaiseVolume" = {
|
||||||
allow-when-locked = true;
|
allow-when-locked = true;
|
||||||
action.spawn = [
|
action.spawn = [
|
||||||
"playerctl"
|
"playerctl"
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
"next"
|
"next"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"Mod+XF86AudioLowerVolume" = {
|
"Super+XF86AudioLowerVolume" = {
|
||||||
allow-when-locked = true;
|
allow-when-locked = true;
|
||||||
action.spawn = [
|
action.spawn = [
|
||||||
"playerctl"
|
"playerctl"
|
||||||
@@ -194,6 +194,39 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"XF86MonBrightnessUp" = {
|
||||||
|
allow-when-locked = true;
|
||||||
|
action.spawn = [
|
||||||
|
"brightnessctl"
|
||||||
|
"set"
|
||||||
|
"+5%"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"XF86MonBrightnessDown" = {
|
||||||
|
allow-when-locked = true;
|
||||||
|
action.spawn = [
|
||||||
|
"brightnessctl"
|
||||||
|
"set"
|
||||||
|
"5%-"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"Alt+XF86AudioRaiseVolume" = {
|
||||||
|
allow-when-locked = true;
|
||||||
|
action.spawn = [
|
||||||
|
"brightnessctl"
|
||||||
|
"set"
|
||||||
|
"+5%"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"Alt+XF86AudioLowerVolume" = {
|
||||||
|
allow-when-locked = true;
|
||||||
|
action.spawn = [
|
||||||
|
"brightnessctl"
|
||||||
|
"set"
|
||||||
|
"5%-"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
"Mod+Q".action = close-window;
|
"Mod+Q".action = close-window;
|
||||||
|
|
||||||
"Mod+Left".action = focus-column-left;
|
"Mod+Left".action = focus-column-left;
|
||||||
|
|||||||
@@ -61,12 +61,16 @@ in
|
|||||||
};
|
};
|
||||||
my.home = {
|
my.home = {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
xwayland-satellite-unstable
|
||||||
|
|
||||||
wlr-randr
|
wlr-randr
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
cliphist
|
cliphist
|
||||||
|
playerctl
|
||||||
|
brightnessctl
|
||||||
|
|
||||||
swaynotificationcenter
|
swaynotificationcenter
|
||||||
nemo-with-extensions
|
nemo-with-extensions
|
||||||
xwayland-satellite-unstable
|
|
||||||
];
|
];
|
||||||
programs.wofi.enable = true;
|
programs.wofi.enable = true;
|
||||||
xdg.configFile."wofi" = {
|
xdg.configFile."wofi" = {
|
||||||
|
|||||||
Reference in New Issue
Block a user