GeeqieやThunarなどのアプリケーションでホームディレクトリを制御するものは何ですか?

GeeqieやThunarなどのアプリケーションでホームディレクトリを制御するものは何ですか?

.bashrccd特定のディレクトリを指す行があります。私が覚えている限り、これはターミナルセッションが開始されたディレクトリだけを変更しました。しかし最近では、GeeqieやThunarなどのGUIアプリケーションも特定のディレクトリから起動し始めました。何を変更できますか?

ベストアンサー1

ゲッチそしてトゥナードどちらもエクスプロイト機能を使用します。g_get_home_dir()GNOMEでglib

から引用g_get_home_dir()APIリファレンスから:

Gets the current user's home directory.

As with most UNIX tools, this function will return the value of the HOME
environment variable if it is set to an existing absolute path name, falling
back to the passwd file in the case that it is unset.

If the path given in HOME is non-absolute, does not exist, or is not a
directory, the result is undefined.

したがって、$HOME変数とシステムpasswdファイルを確認してください。

おすすめ記事