mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: loose changes...?
This commit is contained in:
parent
32588d7074
commit
61143478c8
11 changed files with 232 additions and 10 deletions
|
|
@ -72,11 +72,21 @@ in {
|
|||
"--ozone-platform=wayland"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${getExe' config.programs.thunderbird.package "thunderbird"}"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${getExe' pkgs.udiskie "udiskie"}"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${getExe' pkgs.easyeffects "easyeffects"}"
|
||||
];
|
||||
}
|
||||
{
|
||||
command = [
|
||||
"${getExe pkgs.pasystray}"
|
||||
|
|
|
|||
|
|
@ -38,12 +38,14 @@ in {
|
|||
"Mod+D".action = sh ''${getExe config.programs.fuzzel.package} -T "${getExe config.programs.alacritty.package} --command"'';
|
||||
"Mod+Escape".action = sh ''${getExe config.programs.wlogout.package} -p layer-shell'';
|
||||
"Mod+Shift+Escape".action = sh ''${getExe config.programs.swaylock.package} -f'';
|
||||
"Alt+Tab" = {
|
||||
repeat = false;
|
||||
"Mod+Alt+Tab" = {
|
||||
#repeat = false;
|
||||
cooldown-ms = 150;
|
||||
action.spawn = ["${getExe' pkgs.glib "gdbus"}" "call" "--session" "--dest" "io.github.isaksamsten.Niriswitcher" "--object-path" "/io/github/isaksamsten/Niriswitcher" "--method" "io.github.isaksamsten.Niriswitcher.application"];
|
||||
};
|
||||
"Alt+Shift+Tab" = {
|
||||
repeat = false;
|
||||
"Mod+Alt+Shift+Tab" = {
|
||||
cooldown-ms = 150;
|
||||
#repeat = false;
|
||||
action.spawn = ["${getExe' pkgs.glib "gdbus"}" "call" "--session" "--dest" "io.github.isaksamsten.Niriswitcher" "--object-path" "/io/github/isaksamsten/Niriswitcher" "--method" "io.github.isaksamsten.Niriswitcher.application"];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -79,6 +79,7 @@ in {
|
|||
chat = {};
|
||||
vidya = {};
|
||||
media = {};
|
||||
audio = {};
|
||||
};
|
||||
environment = {
|
||||
MOZ_ENABLE_WAYLAND = "1";
|
||||
|
|
|
|||
|
|
@ -8,6 +8,21 @@ _: {
|
|||
layer-shell = true;
|
||||
layer = "overlay";
|
||||
control-center-layer = "top";
|
||||
widgets = [ "mpris" "dnd" "title" "notifications" "inhibitors" "backlight" "volume" ];
|
||||
widget-config = {
|
||||
title = {
|
||||
text = "Notifications";
|
||||
clear-all-button = true;
|
||||
button-text = "";
|
||||
};
|
||||
dnd = {
|
||||
text = " DND";
|
||||
};
|
||||
mpris = {
|
||||
image-size = 60;
|
||||
image-radius = 12;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,11 @@ _: {
|
|||
}
|
||||
|
||||
{
|
||||
matches = [{app-id = "^firefox$";}];
|
||||
matches = [
|
||||
{app-id = "^firefox$";}
|
||||
{app-id = "^zen-beta$";}
|
||||
{app-id = "^zen$";}
|
||||
];
|
||||
open-on-workspace = "browser";
|
||||
}
|
||||
{
|
||||
|
|
@ -22,18 +26,40 @@ _: {
|
|||
{app-id = "^vesktop$";}
|
||||
{app-id = "^discord$";}
|
||||
{app-id = "^org.telegram.desktop$";}
|
||||
{app-id = "^Signal$";}
|
||||
];
|
||||
open-on-workspace = "chat";
|
||||
}
|
||||
{
|
||||
matches = [{app-id = "^steam_app_default$";}];
|
||||
matches = [
|
||||
{app-id = "^steam_app_default$";}
|
||||
{app-id = "^net.lutris.Lutris$";}
|
||||
];
|
||||
open-on-workspace = "vidya";
|
||||
open-floating = true;
|
||||
}
|
||||
{
|
||||
matches = [{app-id = "^spotify$";}];
|
||||
matches = [
|
||||
{app-id = "^spotify$";}
|
||||
{title = "^ncspot$";}
|
||||
];
|
||||
open-on-workspace = "media";
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{app-id = "^thunderbird$";}
|
||||
];
|
||||
open-on-workspace = "mail";
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{app-id="^com.github.wwmm.easyeffects$";}
|
||||
{app-id="^.blueman-manager-wrapped$";}
|
||||
{app-id="^org.pulseaudio.pavucontrol$";}
|
||||
{app-id="^com.saivert.pwvucontrol$";}
|
||||
];
|
||||
open-on-workspace = "audio";
|
||||
}
|
||||
{
|
||||
matches = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue