change file manager

This commit is contained in:
willifan 2024-05-18 21:47:53 +02:00
parent 88f77919ee
commit 94c02df431
4 changed files with 16 additions and 13 deletions

View file

@ -32,16 +32,11 @@
feh feh
dolphin
hyfetch hyfetch
enpass enpass
webcord webcord
obsidian obsidian
kicad kicad
gnome.nautilus
cinnamon.nemo-with-extensions
#firefox
]; ];
} }

View file

@ -9,6 +9,7 @@
./firefox.nix ./firefox.nix
./kitty.nix ./kitty.nix
./thunar.nix
./thunderbird.nix ./thunderbird.nix
]; ];

View file

@ -23,7 +23,7 @@
#''hyprctl dispatch exec "[workspace 4 silent] "'' #''hyprctl dispatch exec "[workspace 4 silent] "''
#''hyprctl dispatch exec "[workspace 8 silent] "'' #''hyprctl dispatch exec "[workspace 8 silent] "''
''hyprctl dispatch exec "[workspace 9 silent] webcord"'' ''hyprctl dispatch exec "[workspace 9 silent] webcord"''
''hyprctl dispatch exec "[workspace special:ctrl silent] dolphin"'' ''hyprctl dispatch exec "[workspace special:ctrl silent] thunar"''
''hyprctl dispatch exec "[workspace special:alt silent] obsidian"'' ''hyprctl dispatch exec "[workspace special:alt silent] obsidian"''
''hyprctl dispatch exec "[workspace special:altgr silent] thunderbird"'' ''hyprctl dispatch exec "[workspace special:altgr silent] thunderbird"''
#''exec-once = hyprctl dispatch exec "[workspace special:strg silent] "'' #''exec-once = hyprctl dispatch exec "[workspace special:strg silent] "''
@ -33,7 +33,7 @@
env = [ env = [
"XCURSOR_SIZE, 24" "XCURSOR_SIZE, 24"
"HYPRCURSOR_SIZE,48" "HYPRCURSOR_SIZE,24"
]; ];
input = { input = {
@ -127,10 +127,7 @@
windowrule = [ windowrule = [
"idleinhibit fullscreen, ^(firefox)$" "idleinhibit fullscreen, ^(firefox)$"
"float, ^(org.gnome.Nautilus)$" "float, ^(thunar)$"
"float, ^(nemo)$"
"float, ^(org.kde.dolphin)$"
"float, ^(org.gnome.FileRoller)$"
"stayfocused, title:^(Enpass Assistant)$" "stayfocused, title:^(Enpass Assistant)$"
"pin, title:^(Enpass Assistant)$" "pin, title:^(Enpass Assistant)$"
"center, title:^(Enpass Assistant)$" "center, title:^(Enpass Assistant)$"
@ -159,12 +156,12 @@
''$mainMod, Q, exec, kitty'' ''$mainMod, Q, exec, kitty''
''$mainMod, C, killactive, '' ''$mainMod, C, killactive, ''
''$mainMod, M, exit, '' ''$mainMod, M, exit, ''
''$mainMod, E, exec, dolphin'' ''$mainMod, E, exec, thunar''
''$mainMod, V, togglefloating, '' ''$mainMod, V, togglefloating, ''
''$mainMod, R, exec, wofi --show drun'' ''$mainMod, R, exec, wofi --show drun''
''$mainMod, J, togglesplit, # dwindle'' ''$mainMod, J, togglesplit, # dwindle''
''$mainMod, P, exec, Enpass'' ''$mainMod, P, exec, Enpass''
''$mainMod, T, exec, hyprctl dispatch exec "[float; pin; size 40% 40%; move 100%-41% 40] kitty bpytop -b proc"'' ''$mainMod, T, exec, hyprctl dispatch exec "[float; pin; size 40% 40%; move 100%-41% 40] kitty btop -b proc"''
''$mainMod, W, exec, networkmanager_dmenu'' ''$mainMod, W, exec, networkmanager_dmenu''
''$mainMod, F, fullscreen'' ''$mainMod, F, fullscreen''

View file

@ -0,0 +1,10 @@
{ pkgs, home-manager, ... }:
{
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
}