Package: Use gio instead of nautilus.

This commit is contained in:
Dmitry Voronin 2024-11-20 16:16:06 +03:00
parent 5179778627
commit 9012d3b8bf
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
3 changed files with 2 additions and 30 deletions

View file

@ -1,29 +0,0 @@
{
pkgs,
...
}: {
file = (pkgs.formats.ini { }).generate "KeydNautilusConfig" {
"org-gnome-nautilus" = {
"alt.capslock" = "C-t"; # New tab.
"alt.t" = "C-n"; # New window.
"alt.x" = "C-w"; # Close tab.
"alt.u" = "C-S-t"; # Restore tab.
"alt.e" = "C-pagedown"; # Next tab.
"alt.q" = "C-pageup"; # Prev tab.
"alt.E" = "C-S-pagedown"; # Move tab next.
"alt.Q" = "C-S-pageup"; # Move tab prev.
"alt.h" = "C-h"; # Toggle hidden files.
"alt.1" = "C-1"; # List view.
"alt.2" = "C-2"; # Grid view.
"alt.b" = "A-up"; # Go back.
"alt.space" = "C-l"; # Focus location bar.
"alt.i" = "C-S-i"; # Invert selection.
"alt.v" = "C-i"; # File info.
"alt.d" = "C-S-delete"; # Delete file.
"alt.s" = "f2"; # Rename.
"alt.a" = "C-S-n"; # Create dir.
"alt.f" = "C-f"; # Search dir.
"alt.r" = "f5"; # Refresh dir.
};
};
}

View file

@ -28,6 +28,7 @@
{ on = [ "g" "r" ]; desc = "Go to root"; run = "cd /"; } { on = [ "g" "r" ]; desc = "Go to root"; run = "cd /"; }
{ on = [ "g" "s" ]; desc = "Go to storage"; run = "cd /storage"; } { on = [ "g" "s" ]; desc = "Go to storage"; run = "cd /storage"; }
{ on = [ "g" "t" ]; desc = "Go to tmp"; run = "cd ~/tmp"; } { on = [ "g" "t" ]; desc = "Go to tmp"; run = "cd ~/tmp"; }
{ on = [ "g" "u" ]; desc = "Go to user"; run = "cd /run/user/$UID"; }
]; ];
}; };
}; };

View file

@ -101,11 +101,11 @@
common = (with pkgs; [ common = (with pkgs; [
evince # Document viewer. evince # Document viewer.
gimp # Image manipulation program. gimp # Image manipulation program.
glib # Gnome lib for gvfs mtp usage with Nintendo Switch.
gnome-calculator # Calculator. gnome-calculator # Calculator.
gparted # GUI disk utility just in case. gparted # GUI disk utility just in case.
jellyfin-media-player # Jellyfin client (self-hosted Netflix). jellyfin-media-player # Jellyfin client (self-hosted Netflix).
loupe # Image viewer. loupe # Image viewer.
nautilus # File manager.
obs-studio # Streaming/recording app. obs-studio # Streaming/recording app.
onlyoffice-bin # Office documents app suite. onlyoffice-bin # Office documents app suite.
remmina # RDP app. remmina # RDP app.