mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
19 lines
382 B
Nix
Executable file
19 lines
382 B
Nix
Executable file
let
|
|
centerWindows = [
|
|
"center, ^(gnome-characters)$"
|
|
"center, ^(mpv)$"
|
|
"center, ^(nomacs)$"
|
|
];
|
|
opaqueWindows = builtins.map (x: "opaque, " + x) [
|
|
"^(firefox)$"
|
|
"^(org.kde.kdenlive)$"
|
|
"^(krita)$"
|
|
"^(mpv)$"
|
|
"^(Brave-browser)$"
|
|
"^(Gimp-2.10)$"
|
|
"^(org.kde.okular)$"
|
|
"^(vlc)$"
|
|
"^(obsidian)$"
|
|
];
|
|
in
|
|
centerWindows ++ opaqueWindows
|