<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=1934&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / toggling hidden files in caja changes directory to /proc or /]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=1934</link>
		<description><![CDATA[The most recent posts in toggling hidden files in caja changes directory to /proc or /.]]></description>
		<lastBuildDate>Wed, 14 Mar 2018 17:07:23 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7960#p7960</link>
			<description><![CDATA[<p>There is order in the chaos of the universe.&#160; Nice image BTW.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Wed, 14 Mar 2018 17:07:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7960#p7960</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7959#p7959</link>
			<description><![CDATA[<p>golinux, I thought it was weird that you said &quot;I am blind without seeing hidden files at all times&quot; because this is the icon I had selected to show in my notification area when hidden files are being shown:</p><p><span class="postimg"><img src="http://files.dantas.airpost.net/public/eye.png" alt="eye.png" /></span> </p><p>Haha, what are the odds?</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 16:54:20 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7959#p7959</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7958#p7958</link>
			<description><![CDATA[<div class="quotebox"><cite>GNUser wrote:</cite><blockquote><div><p>If I keep finding these annoying little bugs . . .</p></div></blockquote></div><p>gnome2 was buggy out of the gate so no surprise . . .</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Wed, 14 Mar 2018 16:44:35 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7958#p7958</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7957#p7957</link>
			<description><![CDATA[<p>If I keep finding these annoying little bugs, I may eventually switch to XFCE, too. As much as I love MATE, it has definitely gotten sloppy. </p><p>Not to be ungrateful (MATE is both libre and gratis, after all), but you&#039;d think that toggling hidden files and mounting run-of-the-mill Android phones are things that file managers should be able to do out-of-the-box these days, without nasty surprises.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 15:56:15 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7957#p7957</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7956#p7956</link>
			<description><![CDATA[<p>I never knew of that key control but just tried it and it works perfectly in Thunar.&#160; Probably won&#039;t ever use it though because I am blind without seeing hidden files at all times.&#160; &#160;The reason I moved on from gnome2 years ago were little bugs like that.</p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Wed, 14 Mar 2018 15:37:20 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7956#p7956</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7955#p7955</link>
			<description><![CDATA[<p>Thanks for your help, catprints. It was helpful to know that another Devuan ASCII + MATE user was experiencing the same thing, since that confirms that this is caused by a bug and not by some misconfiguration on my system. </p><p>This behavior bothers me enough that for the time being I&#039;ve remapped control+h to run this script of mine:</p><div class="codebox"><pre><code>#!/bin/sh

current_state=$(gsettings get org.mate.caja.preferences show-hidden-files)
if [ &quot;$current_state&quot; = &quot;false&quot; ]; then
	gsettings set org.mate.caja.preferences show-hidden-files true # to show regular user&#039;s hidden files
	sudo gsettings set org.mate.caja.preferences show-hidden-files true # to show root user&#039;s hidden files
else
	gsettings set org.mate.caja.preferences show-hidden-files false
	sudo gsettings set org.mate.caja.preferences show-hidden-files false
fi</code></pre></div><p>Here&#039;s a prettier version that puts an icon in the taskbar while hidden files/folders are visible (requires yad to be installed):</p><div class="codebox"><pre><code>#!/bin/sh

icon=/path/to/your/icon.png

current_state=$(gsettings get org.mate.caja.preferences show-hidden-files)
if [ &quot;$current_state&quot; = &quot;false&quot; ]; then
	gsettings set org.mate.caja.preferences show-hidden-files true # to show regular user&#039;s hidden files
	sudo gsettings set org.mate.caja.preferences show-hidden-files true # to show root user&#039;s hidden files
	yad --notification --image=$icon --text=&quot;Showing hidden files&quot; --no-middle &amp;
else
	gsettings set org.mate.caja.preferences show-hidden-files false
	sudo gsettings set org.mate.caja.preferences show-hidden-files false
	pkill -f &quot;Showing hidden files&quot;
fi</code></pre></div><p>It&#039;s a workaround and not a fix, of course, but I want the unexpected teleports to other filesystem locations to stop right away. Hopefully a caja expert will come along and offer us a proper fix.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 15:29:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7955#p7955</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7954#p7954</link>
			<description><![CDATA[<p>I might never have seen this with my limited hidden files experience.But i&#039;m curious to see <br />what you find. Good luck.</p>]]></description>
			<author><![CDATA[dummy@example.com (catprints)]]></author>
			<pubDate>Wed, 14 Mar 2018 15:14:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7954#p7954</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7952#p7952</link>
			<description><![CDATA[<p>I reinstalled caja and it made no difference <img src="https://dev1galaxy.org/img/smilies/hmm.png" width="15" height="15" alt="hmm" /></p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 14:36:14 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7952#p7952</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7951#p7951</link>
			<description><![CDATA[<p>I will try reinstalling, wouldn&#039;t hurt.</p><p>Expected behavior when I press control + h in the file manager is to toggle visibility of hidden files and directories in the directory I&#039;m in, not to take me to another directory (/proc, /, or anywhere else). </p><p>When you press control + h caja takes you to file systems? That&#039;s unexpected behavior, similar to what I&#039;m experiencing.</p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 14:33:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7951#p7951</guid>
		</item>
		<item>
			<title><![CDATA[Re: toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7950#p7950</link>
			<description><![CDATA[<p>I would try reinstalling caja but that is just a weak guess.<br />Where would expected behavior take you? The directory .config is in or a higher dir.? file systems is where my install takes me.</p>]]></description>
			<author><![CDATA[dummy@example.com (catprints)]]></author>
			<pubDate>Wed, 14 Mar 2018 14:25:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7950#p7950</guid>
		</item>
		<item>
			<title><![CDATA[toggling hidden files in caja changes directory to /proc or /]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=7949#p7949</link>
			<description><![CDATA[<p>I noticed a strange bug in caja. If I&#039;m inside a hidden directory (e.g., ~/.config) and toggle hidden files by pressing control + h, caja changes directory to /proc or / (root directory). This is quite disorienting.</p><p>I have absolutely no idea how to begin troubleshooting this. Any ideas? I hope one of you guys can help, as I don&#039;t think a MATE-specific forum exists anymore (notice the forums listed here: <a href="https://mate-desktop.org/community/" rel="nofollow">https://mate-desktop.org/community/</a>). </p><p>Details:<br />Devuan ASCII<br />MATE version 1.16.2<br />Caja version 1.16.6-1+deb9u1</p><p>P.S. I also asked in the debian forum (for more eyeballs). The post is here: <a href="http://forums.debian.net/viewtopic.php?uid=196819&amp;f=6&amp;t=136946&amp;start=0" rel="nofollow">http://forums.debian.net/viewtopic.php? … 46&amp;start=0</a></p>]]></description>
			<author><![CDATA[dummy@example.com (GNUser)]]></author>
			<pubDate>Wed, 14 Mar 2018 12:24:41 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=7949#p7949</guid>
		</item>
	</channel>
</rss>
