mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 01:55:13 -05:00
feat: added niri
This commit is contained in:
parent
5dd2fce8e0
commit
0e338b0333
1 changed files with 84 additions and 48 deletions
|
@ -123,7 +123,7 @@ in
|
||||||
"Super+t".action = niri.spawn "zeditor";
|
"Super+t".action = niri.spawn "zeditor";
|
||||||
"Super+b".action = niri.spawn "floorp";
|
"Super+b".action = niri.spawn "floorp";
|
||||||
"Super+x".action = niri.spawn "freetube";
|
"Super+x".action = niri.spawn "freetube";
|
||||||
"Super+v".action = niri.spawn "discordcanary";
|
"Super+v".action = niri.spawn "vesktop";
|
||||||
"Super+m".action = niri.spawn "element-desktop";
|
"Super+m".action = niri.spawn "element-desktop";
|
||||||
"Super+d".action = niri.spawn "ghostty";
|
"Super+d".action = niri.spawn "ghostty";
|
||||||
"Super+p".action = niri.spawn "bitwarden";
|
"Super+p".action = niri.spawn "bitwarden";
|
||||||
|
@ -189,64 +189,100 @@ in
|
||||||
is-floating = true;
|
is-floating = true;
|
||||||
is-focused = true;
|
is-focused = true;
|
||||||
};
|
};
|
||||||
|
appIDs = [
|
||||||
|
".blueman-manager-wrapped"
|
||||||
|
"org.gnome.Calculator"
|
||||||
|
"com.github.wwmm.easyeffects"
|
||||||
|
"emote"
|
||||||
|
"mpv"
|
||||||
|
"vlc"
|
||||||
|
"org.nomacs.ImageLounge"
|
||||||
|
"flameshot"
|
||||||
|
"^.protonvpn-app-wrapped$"
|
||||||
|
"^Picture-in-Picture$"
|
||||||
|
"^Discord Popout$"
|
||||||
|
"^Enter name of file to save to…$"
|
||||||
|
"^File Upload$"
|
||||||
|
".scrcpy-wrapped"
|
||||||
|
"^Battle.net$"
|
||||||
|
];
|
||||||
in
|
in
|
||||||
[
|
builtins.map windowMatch appIDs;
|
||||||
(windowMatch ".blueman-manager-wrapped")
|
|
||||||
(windowMatch "org.gnome.Calculator")
|
|
||||||
(windowMatch "com.github.wwmm.easyeffects")
|
|
||||||
(windowMatch "emote")
|
|
||||||
(windowMatch "mpv")
|
|
||||||
(windowMatch "vlc")
|
|
||||||
(windowMatch "org.nomacs.ImageLounge")
|
|
||||||
(windowMatch "flameshot")
|
|
||||||
(windowMatch "^.protonvpn-app-wrapped$")
|
|
||||||
(windowMatch "^Picture-in-Picture$")
|
|
||||||
(windowMatch "^Discord Popout$")
|
|
||||||
(windowMatch "^Enter name of file to save to…$")
|
|
||||||
(windowMatch "^File Upload$")
|
|
||||||
(windowMatch ".scrcpy-wrapped")
|
|
||||||
(windowMatch "^Battle.net$")
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches =
|
||||||
{ app-id = "floop"; }
|
let
|
||||||
{ app-id = "org.kde.kdenlive"; }
|
windowMatch = c: {
|
||||||
{ app-id = "krita"; }
|
app-id = c;
|
||||||
{ app-id = "mpv"; }
|
opacity = 1.0;
|
||||||
{ app-id = "vlc"; }
|
};
|
||||||
{ app-id = "Brave-browser"; }
|
appIDs = [
|
||||||
{ app-id = "org.kde.okular"; }
|
"floop"
|
||||||
];
|
"org.kde.kdenlive"
|
||||||
opacity = 1.0;
|
"krita"
|
||||||
|
"mpv"
|
||||||
|
"vlc"
|
||||||
|
"Brave-browser"
|
||||||
|
"org.kde.okular"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
builtins.map windowMatch appIDs;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches =
|
||||||
{ app-id = "signal"; }
|
let
|
||||||
{ app-id = "vesktop"; }
|
windowMatch = c: {
|
||||||
];
|
app-id = c;
|
||||||
open-on-workspace = workspace0;
|
open-on-workspace = workspace0;
|
||||||
|
};
|
||||||
|
appIDs = [
|
||||||
|
"signal"
|
||||||
|
"vesktop"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
builtins.map windowMatch appIDs;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches =
|
||||||
{ app-id = "code"; }
|
let
|
||||||
{ app-id = "zeditor"; }
|
windowMatch = c: {
|
||||||
];
|
app-id = c;
|
||||||
open-on-workspace = workspace1;
|
open-on-workspace = workspace1;
|
||||||
|
};
|
||||||
|
appIDs = [
|
||||||
|
"code"
|
||||||
|
"zeditor"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
builtins.map windowMatch appIDs;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches =
|
||||||
{ app-id = "steam"; }
|
let
|
||||||
{ app-id = "org.kde.kdenlive"; }
|
windowMatch = c: {
|
||||||
];
|
app-id = c;
|
||||||
open-on-workspace = workspace2;
|
open-on-workspace = workspace2;
|
||||||
|
};
|
||||||
|
appIDs = [
|
||||||
|
"steam"
|
||||||
|
"org.kde.kdenlive"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
builtins.map windowMatch appIDs;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
matches = [
|
matches =
|
||||||
{ app-id = "feishin"; }
|
let
|
||||||
{ app-id = ".scrcpy-wrapped"; }
|
windowMatch = c: {
|
||||||
];
|
app-id = c;
|
||||||
open-on-workspace = workspace3;
|
open-on-workspace = workspace3;
|
||||||
|
};
|
||||||
|
appIDs = [
|
||||||
|
"feishin"
|
||||||
|
".scrcpy-wrapped"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
builtins.map windowMatch appIDs;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
clip-to-geometry = true;
|
clip-to-geometry = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue