<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>i3 FAQ - Individual question feed</title><link>https://faq.i3wm.org/questions/</link><description>Frequently asked questions and answers about the i3 window manager</description><atom:link href="http://faq.i3wm.org/feeds/question/2008/" rel="self"></atom:link><language>en</language><copyright>Copyright i3, 2012</copyright><lastBuildDate>Mon, 14 Jul 2014 12:55:52 +0000</lastBuildDate><item><title>Can I hide the mouse pointer?</title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/</link><description>As I work on a simple, old, and defective netbook most of the time, of which the touchpad recently broke down (and some other parts, too, I'm afraid), and have been using key commands for almost anything, I stopped using the touchpad completely, and to save my limited number of USB-ports no mouse either. Now, since I lost control of the now completely useless pointer, it is in my sight all the time and I cannot move it away.
Is there a code to hide the pointer?</description><pubDate>Thu, 13 Jun 2013 18:15:41 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/</guid></item><item><title>Answer by jbelpo for &lt;p&gt;As I work on a simple, old, and defective netbook most of the time, of which the touchpad recently broke down (and some other parts, too, I'm afraid), and have been using key commands for almost anything, I stopped using the touchpad completely, and to save my limited number of USB-ports no mouse either. Now, since I lost control of the now completely useless pointer, it is in my sight all the time and I cannot move it away.
Is there a code to hide the pointer?&lt;/p&gt;
 </title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?answer=2009#post-id-2009</link><description>Quick and Dirty: Unclutter
https://wiki.archlinux.org/index.php/Unclutter</description><pubDate>Thu, 13 Jun 2013 18:24:56 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?answer=2009#post-id-2009</guid></item><item><title>Comment by Michael for &lt;p&gt;Quick and Dirty: Unclutter
&lt;a href="https://wiki.archlinux.org/index.php/Unclutter"&gt;https://wiki.archlinux.org/index.php/...&lt;/a&gt;&lt;/p&gt;
</title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2010#comment-2010</link><description>Note that unclutter has a few side-effects (read: bugs) in certain conditions. Can’t really remember the precise symptoms right now, but be aware of it.</description><pubDate>Thu, 13 Jun 2013 18:31:25 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2010#comment-2010</guid></item><item><title>Comment by jpoppe for &lt;p&gt;Quick and Dirty: Unclutter
&lt;a href="https://wiki.archlinux.org/index.php/Unclutter"&gt;https://wiki.archlinux.org/index.php/...&lt;/a&gt;&lt;/p&gt;
</title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=4244#comment-4244</link><description>Unclutter and I3's focus follows mouse = yes, will break focus key bindings, since it focuses when unclutter kicks in. EDIT: 'unclutter -grab' seems to fix this like described in the wiki, but this will break i3lock. This can be fixed by killing unclutter, run i3lock, and start unclutter.</description><pubDate>Mon, 14 Jul 2014 12:55:52 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=4244#comment-4244</guid></item><item><title>Comment by Maestraccio for &lt;p&gt;Quick and Dirty: Unclutter
&lt;a href="https://wiki.archlinux.org/index.php/Unclutter"&gt;https://wiki.archlinux.org/index.php/...&lt;/a&gt;&lt;/p&gt;
</title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2015#comment-2015</link><description>You rock.
Thank you!</description><pubDate>Thu, 13 Jun 2013 20:21:37 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2015#comment-2015</guid></item><item><title>Answer by mschaefer for &lt;p&gt;As I work on a simple, old, and defective netbook most of the time, of which the touchpad recently broke down (and some other parts, too, I'm afraid), and have been using key commands for almost anything, I stopped using the touchpad completely, and to save my limited number of USB-ports no mouse either. Now, since I lost control of the now completely useless pointer, it is in my sight all the time and I cannot move it away.
Is there a code to hide the pointer?&lt;/p&gt;
 </title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?answer=2019#post-id-2019</link><description>Do I understand it right, that your touchpad is deactivated, so the mouse cursor in fact CANNOT be moved manually? In that case, &lt;code&gt;xdotool mousemove x y&lt;/code&gt; with &lt;code&gt;x,y&lt;/code&gt; being the lower left / lower right coordinates of your screen is a "pseudo solution". It doesn't really hide the pointer but moves it completely out of your sight. If you are not able to move it by hand, this should also solve your problem.</description><pubDate>Fri, 14 Jun 2013 09:16:41 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?answer=2019#post-id-2019</guid></item><item><title>Comment by Maestraccio for &lt;p&gt;Do I understand it right, that your touchpad is deactivated, so the mouse cursor in fact CANNOT be moved manually? In that case, &lt;code&gt;xdotool mousemove x y&lt;/code&gt; with &lt;code&gt;x,y&lt;/code&gt; being the lower left / lower right coordinates of your screen is a "pseudo solution". It doesn't really hide the pointer but moves it completely out of your sight. If you are not able to move it by hand, this should also solve your problem.&lt;/p&gt;
</title><link>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2022#comment-2022</link><description>Yes! That is exactly what I was looking for.
The unclutter option blocked focusing another window (using i3wm, that may have been the bug you mentioned before); xdotool works perfectly.
Thank you</description><pubDate>Fri, 14 Jun 2013 13:59:27 +0000</pubDate><guid>https://faq.i3wm.org/question/2008/can-i-hide-the-mouse-pointer/?comment=2022#comment-2022</guid></item></channel></rss>