Disable hyprland splash rendering on laptop

Unbind zathura from files workspace
This commit is contained in:
Evie Litherland-Smith 2023-08-30 13:59:44 +01:00
parent 078b5c7114
commit a45afd0412
2 changed files with 23 additions and 9 deletions

View file

@ -161,7 +161,6 @@ in ''
bind = SUPER, F, moveworkspacetomonitor, name:files current bind = SUPER, F, moveworkspacetomonitor, name:files current
bind = SUPER, F, workspace, name:files bind = SUPER, F, workspace, name:files
bind = SUPER SHIFT, F, movetoworkspace, name:files bind = SUPER SHIFT, F, movetoworkspace, name:files
windowrule = workspace name:files,(org.pwmt.zathura)
windowrule = workspace name:files,^(libreoffice).* windowrule = workspace name:files,^(libreoffice).*
windowrule = workspace name:files,(thunar) windowrule = workspace name:files,(thunar)
windowrulev2 = workspace name:files,title:(Open),class:(soffice) windowrulev2 = workspace name:files,title:(Open),class:(soffice)

View file

@ -152,13 +152,19 @@ in {
}; };
services.kanshi.profiles = { services.kanshi.profiles = {
undocked = { undocked = {
outputs = [{ outputs = [
{
criteria = "eDP-1"; criteria = "eDP-1";
mode = "1920x1080"; mode = "1920x1080";
position = "0,0"; position = "0,0";
scale = 1.0; scale = 1.0;
status = "enable"; status = "enable";
}]; }
{
criteria = "*";
status = "enable";
}
];
}; };
work = { work = {
outputs = [ outputs = [
@ -171,6 +177,10 @@ in {
criteria = "eDP-1"; criteria = "eDP-1";
status = "disable"; status = "disable";
} }
{
criteria = "*";
status = "enable";
}
]; ];
}; };
home = { home = {
@ -188,8 +198,13 @@ in {
}; };
}; };
xdg.configFile."hypr/display.conf".text = '' xdg.configFile."hypr/display.conf".text = ''
misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
monitor=eDP-1,preferred,auto,1 monitor=eDP-1,preferred,auto,1
monitor=desc:Iiyama North America PLB2403WS 0574281251316,highres,0x0,1 monitor=desc:Iiyama North America PLB2403WS 0574281251316,preferred,0x185,1
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,preferred,1920x0,1,transform,1
monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1 monitor=desc:Acer Technologies ED270R TJMEE0043W01,highrr,0x0,1
''; '';
} }