37

In Ubuntu and Kubuntu 11.10 I see changes in behaviour of GTK file chooser dialog. When I try to open new file (second, third etc, not first in editor) dialog show "Recenty used" section. It is very unsuitable for me, in 10.04 dialog shows folder where located previous open file. Anybody knows how i can bring back old behaviour?

Kris Harper
  • 13,477
Dim_K
  • 480
  • 4
    While I haven't tested to see exactly what happens, this can almost certainly be attributed to 11.10 using GTK3 instead of GTK2. I suggest you file this as a bug if you think this isn't how it should behave. – Oli Sep 27 '11 at 14:22
  • in some case it is ok, but i hoped can change it in some config – Dim_K Sep 28 '11 at 09:22
  • 4
    This is really annoying feature! I have tried playing with ~/.config/gtk-2.0/gtkfilechooser.ini but with no success so far – Tzury Bar Yochay Oct 16 '11 at 04:27
  • 1
    Before this, 11.10 had been defaulting to "File System" namely "/" and if I'm not mistaken prior releases defaulted to "Home." Being able to configure a default would work well for me since I do most of my work in a "work in progress" folder. – fragos Oct 26 '11 at 22:55
  • The recently used part of the file chooser dialog shows my recently used files, despite me clearing the "recently used" lists from the kde kickoff app launcher thinggymajig. where would it be storing a list of these files? It isn't ~/.recently-used.xbel so what? Im confused, plz help!! :) –  Dec 04 '11 at 21:50
  • 3
    Are there any active Launchpad bugs for this? I'd like to follow them and lend my support for a sane default and/or customisability. – weberc2 May 29 '12 at 15:58
  • The gnome bug is: https://bugzilla.gnome.org/show_bug.cgi?id=658280 – fgb Feb 23 '13 at 13:41

6 Answers6

11

To my knowledge, this is a "feature" of GTK+ 3.x, and I'm not so certain it can be changed.

If I find a solution I will update my answer, but for now I don't know of any (other than reporting a bug).

Update:

I believe I may have found a partial solution. It's not a permanent one unfortunately.

  1. Install dconf-tools.
  2. Run dconf-editor.
  3. Navigate to org.gtk.settings.file-chooser.
  4. Change the last-folder-uri value to the folder of your choosing, for example file:///home/rolandixor/Desktop.
  5. Your file chooser dialogues should now use this folder by default. However, they will revert to recently used if you use the dialogue but do not actually open/save a file.

Update2:

As this is rather tricky, here is another possible solution (partial):

  1. Open gedit.
  2. Open a file (from the folder you want to use).
  3. Save a file (save as) to the folder you want to use.
  4. Close gedit. This will only work if you actually open a file from a folder and save to a folder. If you open the dialogue and don't do anything, it will revert when you close it. There is no way around this.
RolandiXor
  • 51,541
5

For GTK2 you want to edit $XDG_CONFIG_HOME/gtk-2.0/gtkfilechooser.ini and set

StartupMode=cwd

For GTK3 there is no way to change it. In older versions this command might work

gsettings set org.gtk.Settings.FileChooser startup-mode cwd
mchid
  • 43,546
  • 8
  • 97
  • 150
4

I was also bugged by this behaviour and gave it a closer look during the last days.

I have found only one of the GTK3 applications so far that always brings up Recently Used at fresh start: Gedit. All other apps I have tested (Totem, Eog, Evince, File-Roller, ...) start with a "normal" folder in their file chooser (tested with fresh guest session).

So I did a small patch that makes Gedit fall back on the Home folder instead of Recently Used: http://pastebin.com/GhXCRzNV

I can also provide a debdiff if requested, or create a PPA.

  • Geany also exhibits this annoying behaviour. How can we apply your patch, please? And would your patch solve the problem for other apps or just Gedit? I'm not a programmer but I might be able to follow instructions - as long as they're simple enough for someone as dense as me ;-) – dunderhead Feb 13 '12 at 15:24
2

Maybe it would be easier to patch gtk3 to populate the recently used files with the folder the last file was in as well. I think that would work nicely for me.

0

last-folder-uri will get changed the next time you use the file chooser, instead you need to set startup-mode:

Install dconf-editor via Software center:

Gnome software entry for Dconf Editor

or via cli

autocomplete output of dconf attempting to install dconf-editor

sudo dnf install dconf-editor

Launch it, then navigate to org.gtk.settings.file-chooser.startup-mode

enter image description here

It doesn't seem possible to access this key from dconf cli, instead you can look at gsettings:

gsettings set org.gtk.gtk4.Settings.FileChooser startup-mode 'cwd'

If you're getting an error that gsettings is using the memory backend, then you probably need to check which gsettings executable you're using:

which gsettings
# MYHOME/.asdf/shims/gsettings

(in my case, I'd forgotten that I'd installed anaconda python with asdf which brings in a whole lot of unnecessary shims)

asdf uninstall python anaconda-2018.12
airtonix
  • 286
-3

Also you could use shortcut for revealing Location input box and going to desired directory: ~ (tilde sign), Shift-` on some keyboards.

sgtpep
  • 1,067