<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.xfce.org/extern.php?action=feed&amp;tid=7436&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Xfce Forums / [Solved] How to make Xfwm "arrow" button disappear?]]></title>
		<link>http://forum.xfce.org/viewtopic.php?id=7436</link>
		<description><![CDATA[The most recent posts in [Solved] How to make Xfwm "arrow" button disappear?.]]></description>
		<lastBuildDate>Wed, 17 Oct 2012 22:35:30 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27718#p27718</link>
			<description><![CDATA[<p>Thank for that! I&#039;m using i3lock.<br />I never thought it was a script.</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Wed, 17 Oct 2012 22:35:30 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27718#p27718</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27716#p27716</link>
			<description><![CDATA[<div class="quotebox"><cite>secipolla wrote:</cite><blockquote><div><p>Just to add, if the power manager is using xflock to lock the screen you need xscreensaver, xlockmore or slock, I think, for it to work.</p></div></blockquote></div><p>xflock4 is just a bash script - so you can easily edit it to add other screen-lockers.</p><p>I use xtrlock so I added xtrlock to the list of lockers to check for.</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh
#
#  xfce4
#
#  Copyright (C) 1999, 2003 Olivier Fourdan (fourdan@xfce.org)
#  Copyright (C) 2011       Guido Berhoerster (guido+xfce.org@berhoerster.name)
#  Copyright (C) 2011       Jarno Suni (8@iki.fi)
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#

PATH=/bin:/usr/bin
export PATH

# Lock by xscreensaver or gnome-screensaver, if a respective daemon is running
for lock_cmd in \
    &quot;xscreensaver-command -lock&quot; \
    &quot;gnome-screensaver-command --lock&quot;
do
    $lock_cmd &gt;/dev/null 2&gt;&amp;1 &amp;&amp; exit
done

# else run another access locking utility, if installed
for lock_cmd in \
  &quot;xlock -mode blank&quot; \
  &quot;slock&quot; \
  &quot;xtrlock&quot;
  do
    set -- $lock_cmd
    if command -v -- $1 &gt;/dev/null 2&gt;&amp;1; then
        $lock_cmd &gt;/dev/null 2&gt;&amp;1 &amp;
	# turn off display backlight:
	xset dpms force off
        exit
    fi
done

# else access locking failed
exit 1</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (demosthenese)]]></author>
			<pubDate>Wed, 17 Oct 2012 20:18:26 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27716#p27716</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27710#p27710</link>
			<description><![CDATA[<div class="quotebox"><cite>ToZ wrote:</cite><blockquote><div><p>This works for me:</p><div class="codebox"><pre><code>xfconf-query -c xfwm4 -p /general/mousewheel_rollup -s false</code></pre></div></div></blockquote></div><p>Worked perfectly, thank you ToZ very much!!!<br />Thanks secipolla too!</p><p>I planned to switch over to Gnome3 &quot;Debian flavor&quot; (Redhat shipped with Gnome3 that I found quite unusable).<br />However it seems that the Xfce forum community really lives! I will likely stay with Xfce <img src="http://forum.xfce.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Wed, 17 Oct 2012 00:41:25 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27710#p27710</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27708#p27708</link>
			<description><![CDATA[<p>This works for me:</p><div class="codebox"><pre><code>xfconf-query -c xfwm4 -p /general/mousewheel_rollup -s false</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (ToZ)]]></author>
			<pubDate>Tue, 16 Oct 2012 19:01:20 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27708#p27708</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27705#p27705</link>
			<description><![CDATA[<p>I don&#039;t know, but maybe that function should be in the window manager keyboard shortcuts so it could be changed/disabled.<br />Maybe you could open a bug report asking for that?</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Tue, 16 Oct 2012 15:34:57 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27705#p27705</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27704#p27704</link>
			<description><![CDATA[<p>Does anybody happen to know how to disable this reduce-window-to-title-bar function altogether?</p><p>(Accidentally rolling up my mouse button easily activates this thing...)</p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Tue, 16 Oct 2012 14:39:42 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27704#p27704</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27440#p27440</link>
			<description><![CDATA[<p>Just to add, if the power manager is using xflock to lock the screen you need xscreensaver, xlockmore or slock, I think, for it to work.<br />I read that there&#039;s a xdg-screensaver command that should recognize other screen-lockers but I don&#039;t know if it really does so and if xfce4-power-manager is compatible with it.</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Mon, 17 Sep 2012 15:27:22 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27440#p27440</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27427#p27427</link>
			<description><![CDATA[<div class="quotebox"><cite>secipolla wrote:</cite><blockquote><div><p>I&#039;m on Fedora 17. I guess it&#039;s something new to Xfce 4.10 then.</p><p>Anyway, I remember reading other posts about folk having issues with this feature. And if you want 4.10 in wheezy, it seems it&#039;s in the experimental repository (probably only didn&#039;t come to wheezy because of the freeze process).</p></div></blockquote></div><p>I would rather wait for a fix. Thanks for your help!</p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Sat, 15 Sep 2012 06:39:51 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27427#p27427</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27425#p27425</link>
			<description><![CDATA[<p>I&#039;m on Fedora 17. I guess it&#039;s something new to Xfce 4.10 then.</p><p>Anyway, I remember reading other posts about folk having issues with this feature. And if you want 4.10 in wheezy, it seems it&#039;s in the experimental repository (probably only didn&#039;t come to wheezy because of the freeze process).</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Fri, 14 Sep 2012 18:10:46 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27425#p27425</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27423#p27423</link>
			<description><![CDATA[<div class="quotebox"><cite>secipolla wrote:</cite><blockquote><div><p>I got a clue now about the failure to lock the screen.<br />Xfce currently has an issue of having more than one place to set the same thing and that may be confusing.<br />In the case of locking the screen when going to sleep it can be set both in the power manager and in Settings&gt;Session and Startup, so try setting it in both (specially the latter).<br />Just to mention, a similar issue is that icons can be disabled for application menus in the appearance settings and that disables icons for the panel menu too even if it&#039;s set to show icons in its own properties.</p></div></blockquote></div><p>Strange, I could not find any lock screen related options in Sessions and Startup.<br />Which distro are you using?</p><p>Good evening!</p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Fri, 14 Sep 2012 17:10:00 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27423#p27423</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27418#p27418</link>
			<description><![CDATA[<p>I got a clue now about the failure to lock the screen.<br />Xfce currently has an issue of having more than one place to set the same thing and that may be confusing.<br />In the case of locking the screen when going to sleep it can be set both in the power manager and in Settings&gt;Session and Startup, so try setting it in both (specially the latter).<br />Just to mention, a similar issue is that icons can be disabled for application menus in the appearance settings and that disables icons for the panel menu too even if it&#039;s set to show icons in its own properties.</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Thu, 13 Sep 2012 22:58:12 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27418#p27418</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27416#p27416</link>
			<description><![CDATA[<div class="quotebox"><cite>secipolla wrote:</cite><blockquote><div><p>Settings&gt;Window Manager and choose the button layout you want.</p><p>As for the bug, I&#039;ve heard about that before but since I don&#039;t have that set up here I can&#039;t confirm. Try searching the net for it (and Xfce bugzilla too).</p></div></blockquote></div><p>Thank you very much!</p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Thu, 13 Sep 2012 17:22:08 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27416#p27416</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27414#p27414</link>
			<description><![CDATA[<p>Settings&gt;Window Manager and choose the button layout you want.</p><p>As for the bug, I&#039;ve heard about that before but since I don&#039;t have that set up here I can&#039;t confirm. Try searching the net for it (and Xfce bugzilla too).</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Thu, 13 Sep 2012 12:10:05 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27414#p27414</guid>
		</item>
		<item>
			<title><![CDATA[[Solved] How to make Xfwm "arrow" button disappear?]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27413#p27413</link>
			<description><![CDATA[<p>I am using Debian wheezy with Xfwm 4.8.3.</p><p>Any help would be appreciated!</p><p>Off topic: Xfce does not lock the screen when going to sleep or hibernate, even though I checked that in the power management settings. Any info on this before I file a bug to debian?</p>]]></description>
			<author><![CDATA[dummy@example.com (user999)]]></author>
			<pubDate>Thu, 13 Sep 2012 10:23:07 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27413#p27413</guid>
		</item>
	</channel>
</rss>
