How to disable or customize Qt File Dialog?

Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
0
down vote
favorite
I'm using Debian with XFCE. I've got lots of applications that opens a file dialog from Qt (I think) (for example Chromium, Xfce4-screenshooter, etc) that has a "search" facility which I find totally unusable:

How can I use the "default" file dialog (ie. when I clicked "open file" within Libreoffice) for all applications:

...or at least just disable the "search" behaviour of Qt file dialog?
xfce qt
add a comment |Â
up vote
0
down vote
favorite
I'm using Debian with XFCE. I've got lots of applications that opens a file dialog from Qt (I think) (for example Chromium, Xfce4-screenshooter, etc) that has a "search" facility which I find totally unusable:

How can I use the "default" file dialog (ie. when I clicked "open file" within Libreoffice) for all applications:

...or at least just disable the "search" behaviour of Qt file dialog?
xfce qt
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm using Debian with XFCE. I've got lots of applications that opens a file dialog from Qt (I think) (for example Chromium, Xfce4-screenshooter, etc) that has a "search" facility which I find totally unusable:

How can I use the "default" file dialog (ie. when I clicked "open file" within Libreoffice) for all applications:

...or at least just disable the "search" behaviour of Qt file dialog?
xfce qt
I'm using Debian with XFCE. I've got lots of applications that opens a file dialog from Qt (I think) (for example Chromium, Xfce4-screenshooter, etc) that has a "search" facility which I find totally unusable:

How can I use the "default" file dialog (ie. when I clicked "open file" within Libreoffice) for all applications:

...or at least just disable the "search" behaviour of Qt file dialog?
xfce qt
asked Jul 19 at 7:02
ceremcem
5021420
5021420
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09
add a comment |Â
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
This is explained pretty well in this Arch Linux wiki page titled: Environment Variables, specifically in the Examples section:
The following section lists a number of common environment variables used by a Linux system and describes their values.
DEindicates the Desktop Environment being used.xdg-openwill use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnomeAUR; for Xfce this is exo. Recognised values ofDEvariable are:gnome,kde,xfce,lxdeandmate.
The
DEenvironment variable needs to be exported before starting the window manager. For example:~/.xinitrc
export DE="xfce"
exec openbox
This will make
xdg-openuse the more user-friendlyexo-open, because it assumes it is running inside Xfce. Useexo-preferred-applicationsfor configuring.
I've no~/.xinitrcfile, but I think it's the same as~/.bashrc. Anyway, afterexport DE="xfce", I thoughtxfce4-screenshootershould open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.
â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating~/.xinitrcwith the content ofexport DE="xfce"and logging out/logging in still doesn't solve the issue (.xinitrchas executable flag)
â ceremcem
Jul 19 at 18:13
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
This is explained pretty well in this Arch Linux wiki page titled: Environment Variables, specifically in the Examples section:
The following section lists a number of common environment variables used by a Linux system and describes their values.
DEindicates the Desktop Environment being used.xdg-openwill use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnomeAUR; for Xfce this is exo. Recognised values ofDEvariable are:gnome,kde,xfce,lxdeandmate.
The
DEenvironment variable needs to be exported before starting the window manager. For example:~/.xinitrc
export DE="xfce"
exec openbox
This will make
xdg-openuse the more user-friendlyexo-open, because it assumes it is running inside Xfce. Useexo-preferred-applicationsfor configuring.
I've no~/.xinitrcfile, but I think it's the same as~/.bashrc. Anyway, afterexport DE="xfce", I thoughtxfce4-screenshootershould open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.
â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating~/.xinitrcwith the content ofexport DE="xfce"and logging out/logging in still doesn't solve the issue (.xinitrchas executable flag)
â ceremcem
Jul 19 at 18:13
add a comment |Â
up vote
0
down vote
This is explained pretty well in this Arch Linux wiki page titled: Environment Variables, specifically in the Examples section:
The following section lists a number of common environment variables used by a Linux system and describes their values.
DEindicates the Desktop Environment being used.xdg-openwill use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnomeAUR; for Xfce this is exo. Recognised values ofDEvariable are:gnome,kde,xfce,lxdeandmate.
The
DEenvironment variable needs to be exported before starting the window manager. For example:~/.xinitrc
export DE="xfce"
exec openbox
This will make
xdg-openuse the more user-friendlyexo-open, because it assumes it is running inside Xfce. Useexo-preferred-applicationsfor configuring.
I've no~/.xinitrcfile, but I think it's the same as~/.bashrc. Anyway, afterexport DE="xfce", I thoughtxfce4-screenshootershould open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.
â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating~/.xinitrcwith the content ofexport DE="xfce"and logging out/logging in still doesn't solve the issue (.xinitrchas executable flag)
â ceremcem
Jul 19 at 18:13
add a comment |Â
up vote
0
down vote
up vote
0
down vote
This is explained pretty well in this Arch Linux wiki page titled: Environment Variables, specifically in the Examples section:
The following section lists a number of common environment variables used by a Linux system and describes their values.
DEindicates the Desktop Environment being used.xdg-openwill use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnomeAUR; for Xfce this is exo. Recognised values ofDEvariable are:gnome,kde,xfce,lxdeandmate.
The
DEenvironment variable needs to be exported before starting the window manager. For example:~/.xinitrc
export DE="xfce"
exec openbox
This will make
xdg-openuse the more user-friendlyexo-open, because it assumes it is running inside Xfce. Useexo-preferred-applicationsfor configuring.
This is explained pretty well in this Arch Linux wiki page titled: Environment Variables, specifically in the Examples section:
The following section lists a number of common environment variables used by a Linux system and describes their values.
DEindicates the Desktop Environment being used.xdg-openwill use it to choose more user-friendly file-opener application that desktop environment provides. Some packages need to be installed to use this feature. For GNOME, that would be libgnomeAUR; for Xfce this is exo. Recognised values ofDEvariable are:gnome,kde,xfce,lxdeandmate.
The
DEenvironment variable needs to be exported before starting the window manager. For example:~/.xinitrc
export DE="xfce"
exec openbox
This will make
xdg-openuse the more user-friendlyexo-open, because it assumes it is running inside Xfce. Useexo-preferred-applicationsfor configuring.
answered Jul 19 at 7:13
slmâ¦
232k65479649
232k65479649
I've no~/.xinitrcfile, but I think it's the same as~/.bashrc. Anyway, afterexport DE="xfce", I thoughtxfce4-screenshootershould open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.
â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating~/.xinitrcwith the content ofexport DE="xfce"and logging out/logging in still doesn't solve the issue (.xinitrchas executable flag)
â ceremcem
Jul 19 at 18:13
add a comment |Â
I've no~/.xinitrcfile, but I think it's the same as~/.bashrc. Anyway, afterexport DE="xfce", I thoughtxfce4-screenshootershould open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.
â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating~/.xinitrcwith the content ofexport DE="xfce"and logging out/logging in still doesn't solve the issue (.xinitrchas executable flag)
â ceremcem
Jul 19 at 18:13
I've no
~/.xinitrc file, but I think it's the same as ~/.bashrc. Anyway, after export DE="xfce", I thought xfce4-screenshooter should open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.â ceremcem
Jul 19 at 17:28
I've no
~/.xinitrc file, but I think it's the same as ~/.bashrc. Anyway, after export DE="xfce", I thought xfce4-screenshooter should open the gtk file dialog instead of Qt file dialog, but it still opens Qt file dialog. So I would say it doesn't work for me.â ceremcem
Jul 19 at 17:28
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
@ceremcem - you have to create that file, they're not the same.
â slmâ¦
Jul 19 at 17:31
Creating
~/.xinitrc with the content of export DE="xfce" and logging out/logging in still doesn't solve the issue (.xinitrc has executable flag)â ceremcem
Jul 19 at 18:13
Creating
~/.xinitrc with the content of export DE="xfce" and logging out/logging in still doesn't solve the issue (.xinitrc has executable flag)â ceremcem
Jul 19 at 18:13
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f457143%2fhow-to-disable-or-customize-qt-file-dialog%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Look in this thread - reddit.com/r/linux/comments/54ocjq/â¦.
â slmâ¦
Jul 19 at 7:09