Nomousy: Difference between revisions

From Dea7hsmiles
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
No Mousy is a simple tool for hiding and then un-hiding the mouse cursor in Windows.
'''No Mousy''' is a simple tool for hiding and then un-hiding the mouse cursor in Windows.


You need to run it from a Batch or AHK (AutoHotkey) file to use it.
You need to run it from a Batch or AHK (AutoHotkey) file to use it.
Line 5: Line 5:
Simply run `nomousy.exe` with the `/hide` modifier to hide the cursor. For example, using AHK, you would use the following command:
Simply run `nomousy.exe` with the `/hide` modifier to hide the cursor. For example, using AHK, you would use the following command:


<syntaxhighlight lang="ahk">
<pre>
Run, C:\nomousy\nomousy.exe /hide
Run, C:\nomousy\nomousy.exe /hide
</syntaxhighlight>
</pre>


To show the cursor again, run `nomousy.exe` without the `/hide` modifier. Example using AHK:
To show the cursor again, run `nomousy.exe` without the `/hide` modifier. Example using AHK:


<syntaxhighlight lang="ahk">
<pre>
Run, C:\nomousy\nomousy.exe
Run, C:\nomousy\nomousy.exe
</syntaxhighlight>
</pre>


You can download Nomousy from [https://drive.google.com/file/d/1NF000s2SaNB-qvDDJOOnZgdzXcybbhaW/view?usp=sharing Google Drive].
You can download Nomousy from [https://drive.google.com/file/d/1NF000s2SaNB-qvDDJOOnZgdzXcybbhaW/view?usp=sharing Google Drive].
<br><br>


[[Category:3rd Party Tools]]
[[Category:3rd Party Tools]]

Latest revision as of 22:19, 20 May 2025

No Mousy is a simple tool for hiding and then un-hiding the mouse cursor in Windows.

You need to run it from a Batch or AHK (AutoHotkey) file to use it.

Simply run `nomousy.exe` with the `/hide` modifier to hide the cursor. For example, using AHK, you would use the following command:

Run, C:\nomousy\nomousy.exe /hide

To show the cursor again, run `nomousy.exe` without the `/hide` modifier. Example using AHK:

Run, C:\nomousy\nomousy.exe

You can download Nomousy from Google Drive.