Firefox ignores Thunar as default File Manager

Symptom: – Your default File Manager is e.g. Thunar but Firefox uses Nautilus when saving files which is driving you bananas. Solution (for XFCE): 1. Firstly make sure that your default Applilcation for that particular mime type (in this case it is the ‘inode/directory’ mime type) is actually setup properly. Open the “Preferred Applications” applet […]

Continue reading


XWindow: How to find my window PID… (command line arguments/working directory)?

Summary: To find the PID of a running UNIX/XWindow process: $ xprop _NET_WM_PID If that fails: $ ps -ww -fp <PID> $ pwdx <PID> Detailed explanation: So How can you find the PID (not Window ID!) of a running UNIX/XWindow process? Method 1 (simple): $ xprop _NET_WM_PID … and then click on window of interest […]

Continue reading


Adding actions to Thunar’s “Send to” context menu (xfce)

Using Kdiff3 tool as example action to add to the SendTo menu of Thunar. Create the following file in ~/.local/share/Thunar/sendto and name it <whatever>.desktop (I named mine ‘kdiff3.desktop’) : # kdiff3.desktop – Integrate kdiff3 into # the “Send To” menu. [Desktop Entry] Type=Application Version=1.0 Encoding=UTF-8 TryExec=kdiff3 Exec=kdiff3 %F Icon=kdiff3 Name=Kdiff3 # MimeType=text/plain;   The MimeType […]

Continue reading


How to disable Linux FC graphical boot (start in text mode)

For those of you wondering how to make Fedora Linux boot into text mode – here’s how to disable the graphics boot/login screen: If you are running an older distribution you need to edit the file /etc/inittab (must be root) and change id:5:initdefault:     to id:3:initdefault: If you are running a NEWER distribution can […]

Continue reading


Desktop points to user’s home folder (~) in Fedora

Usually this problem means that the var XDG_DESKTOP_DIR got somehow set to $HOME instead of “$HOME/Desktop”… FIX: Edit the file ~/.config/user-dirs.dirs and fix it:    XDG_DESKTOP_DIR=”$HOME/Desktop” … typically this file should look like this: XDG_DESKTOP_DIR=”$HOME/Desktop” XDG_DOWNLOAD_DIR=”$HOME/Download” XDG_TEMPLATES_DIR=”$HOME/Templates” XDG_PUBLICSHARE_DIR=”$HOME/Public” XDG_DOCUMENTS_DIR=”$HOME/Documents” XDG_MUSIC_DIR=”$HOME/Music” XDG_PICTURES_DIR=”$HOME/Pictures” XDG_VIDEOS_DIR=”$HOME/Videos”

Continue reading