Add zathura and thunar

This commit is contained in:
Evie Litherland-Smith 2023-08-03 16:01:13 +01:00
parent e9aa9ffe8c
commit 79bec95825
3 changed files with 17 additions and 5 deletions

View file

@ -137,6 +137,7 @@ windowrule = workspace name:email,(thunderbird)
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,(Zotero) windowrule = workspace name:files,(Zotero)
windowrulev2 = workspace name:files,title:(Open),class:(soffice) windowrulev2 = workspace name:files,title:(Open),class:(soffice)

9
home/zathura/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, tokyonight, ... }:
{
programs.zathura = {
enable = true;
extraConfig = builtins.readFile
"${tokyonight}/extras/zathura/tokyonight_night.zathurarc";
};
}

View file

@ -9,11 +9,13 @@
blueman.enable = true; blueman.enable = true;
gvfs.enable = true; gvfs.enable = true;
tumbler.enable = true; tumbler.enable = true;
greetd.settings = {
default_session.command = "Hyprland";
initial_session.command = "Hyprland";
};
}; };
xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
programs.hyprland.enable = true; programs = {
hyprland.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
};
};
} }