mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-08-24 12:05:29 +02:00
Updated window rule for resolve
On branch main Your branch is up to date with 'origin/main'. Changes to be committed: modified: modules/core/system.nix modified: modules/home/hyprland/windowrules.nix
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
{ host, ... }:
|
{host, ...}: let
|
||||||
let
|
|
||||||
inherit (import ../../hosts/${host}/variables.nix) consoleKeyMap;
|
inherit (import ../../hosts/${host}/variables.nix) consoleKeyMap;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
download-buffer-size = 250000000;
|
download-buffer-size = 250000000;
|
||||||
@@ -29,6 +27,7 @@ in
|
|||||||
LC_TIME = "en_US.UTF-8";
|
LC_TIME = "en_US.UTF-8";
|
||||||
};
|
};
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
|
NIXOS_OZONE_WL = "1";
|
||||||
ZANEYOS_VERSION = "2.4";
|
ZANEYOS_VERSION = "2.4";
|
||||||
ZANEYOS = "true";
|
ZANEYOS = "true";
|
||||||
};
|
};
|
||||||
|
@@ -1,14 +1,16 @@
|
|||||||
{ host, ... }:
|
{host, ...}: let
|
||||||
let
|
|
||||||
inherit
|
inherit
|
||||||
(import ../../../hosts/${host}/variables.nix)
|
(import ../../../hosts/${host}/variables.nix)
|
||||||
extraMonitorSettings
|
extraMonitorSettings
|
||||||
;
|
;
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
settings = {
|
settings = {
|
||||||
windowrule = [
|
windowrule = [
|
||||||
|
#"noblur, xwayland:1" # Helps prevent odd borders/shadows for xwayland apps
|
||||||
|
# downside it can impact other xwayland apps
|
||||||
|
# This rule is a template for a more targeted approach
|
||||||
|
"noblur, class:^(\bresolve\b)$, xwayland:1" # Window rule for just resolve
|
||||||
"tag +file-manager, class:^([Tt]hunar|org.gnome.Nautilus|[Pp]cmanfm-qt)$"
|
"tag +file-manager, class:^([Tt]hunar|org.gnome.Nautilus|[Pp]cmanfm-qt)$"
|
||||||
"tag +terminal, class:^(com.mitchellh.ghostty|org.wezfurlong.wezterm|Alacritty|kitty|kitty-dropterm)$"
|
"tag +terminal, class:^(com.mitchellh.ghostty|org.wezfurlong.wezterm|Alacritty|kitty|kitty-dropterm)$"
|
||||||
"tag +browser, class:^(Brave-browser(-beta|-dev|-unstable)?)$"
|
"tag +browser, class:^(Brave-browser(-beta|-dev|-unstable)?)$"
|
||||||
|
Reference in New Issue
Block a user