Nautilus : Bring back bookmarks.
This commit is contained in:
parent
f598b1816a
commit
7848042633
|
@ -24,5 +24,10 @@
|
||||||
|
|
||||||
mpv --no-video --shuffle ''${targets}
|
mpv --no-video --shuffle ''${targets}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Open files app.
|
||||||
|
function files() {
|
||||||
|
nautilus
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
editorconfig = import ./editorconfig args;
|
editorconfig = import ./editorconfig args;
|
||||||
btop = import ./top/btop args;
|
btop = import ./top/btop args;
|
||||||
htop = import ./top/htop args;
|
htop = import ./top/htop args;
|
||||||
|
gtk3 = import ./gtk/3 args;
|
||||||
in {
|
in {
|
||||||
home-manager = {
|
home-manager = {
|
||||||
backupFileExtension = "old";
|
backupFileExtension = "old";
|
||||||
|
@ -15,9 +16,10 @@ in {
|
||||||
stateVersion = const.stateVersion;
|
stateVersion = const.stateVersion;
|
||||||
file = {
|
file = {
|
||||||
".config/btop/btop.conf".text = btop.config;
|
".config/btop/btop.conf".text = btop.config;
|
||||||
|
".config/foot/foot.ini".text = foot.config;
|
||||||
|
".config/gtk-3.0/bookmarks".text = gtk3.bookmarks;
|
||||||
".config/htop/htoprc".text = htop.config;
|
".config/htop/htoprc".text = htop.config;
|
||||||
".config/mako/config".text = mako.config;
|
".config/mako/config".text = mako.config;
|
||||||
".config/foot/foot.ini".text = foot.config;
|
|
||||||
".editorconfig".text = editorconfig.config;
|
".editorconfig".text = editorconfig.config;
|
||||||
".parallel/will-cite".text = "";
|
".parallel/will-cite".text = "";
|
||||||
"media/template".source = ./template;
|
"media/template".source = ./template;
|
||||||
|
|
9
user/common/gtk/3/default.nix
Normal file
9
user/common/gtk/3/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ util, ... }:{
|
||||||
|
bookmarks = util.trimTabs ''
|
||||||
|
file:///storage
|
||||||
|
file:///home/voronind/tmp
|
||||||
|
sftp://192.168.1.2:22143/storage/hot/docker/cloud/data/data/cakee/files/ home cloud
|
||||||
|
sftp://192.168.1.2:22143/ home sftp
|
||||||
|
ftp://192.168.1.2/ home ftp
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue