Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 2321  / 3 Years ago, wed, november 3, 2021, 3:52:10

I wonder it is possible to remove mouse pointer bounds. I mean when I move mouse pointer to right side of screen, I want it appear on left side. Also same thing for top/bottom bounds. To be clarify, you may think it like snake game without screen walls.


More From » xorg

 Answers
6

I've put up an easier-to-install version on my github here, you can install it using:



$ ./configure
$ make
$ make install





(original answer)



I believe using Taralli would allow for such a thing to happen with multiple workspaces...



There's some more info about what it is here and it seems to be what you're looking for. Compilation is easy and should work on regular rectangular screens by running



$ ./build.sh rectangular
$ # Note: if the above command fails try 'gcc -O2 -Wall -std=c99 -pedantic -o taralli_rectangular main.c map_rectangular.c -lX11 -lXi'
$ ./taralli_rectangular
$ sudo mv taralli_rectangular /usr/bin/taralli_rectangular


and then setting the binary to run on boot.



If you get the errors like:



In file included from main.c:1:0:
common.h:5:19: fatal error: X11/X.h: No such file or directory
#include <X11/X.h>
^
compilation terminated.
In file included from map_rectangular.c:1:0:
common.h:5:19: fatal error: X11/X.h: No such file or directory
#include <X11/X.h>
^
compilation terminated.


Install these dev packages:



sudo apt-get update
sudo apt-get install libx11-dev libxext-dev libxi-dev


And run the compilation steps again.


[#26117] Thursday, November 4, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
raacket

Total Points: 198
Total Questions: 114
Total Answers: 111

Location: Czech Republic
Member since Mon, May 15, 2023
1 Year ago
raacket questions
;