Sunday, May 5, 2024
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 2065  / 2 Years ago, sun, may 15, 2022, 3:59:08

I have to give a presentation, and I want to make the cursor look like a laser pointer.


It seems that Libreoffice Impress cannot do it.


Instead, I want to change the cursor theme temporarily during the presentation so that the mouse pointer looks like a laser beam.
Is there a theme like that?


More From » cursor-theme

 Answers
2

GoogleDot Red Cursor


You can use GoogleDot Red Cursor theme, which features a circular red mouse pointer.


First, download the latest GoogleDot-Red.tar.gz from https://github.com/ful1e5/Google_Cursor/releases.


Then, run the following commands to extract and install it.


tar -xvf GoogleDot-Red.tar.gz
mv GoogleDot-* ~/.icons/

Finally, change the cursor in settings.


googledotred




Alternative cursor


Below maybe not what you really want, but it is a good workaround.


Install xcursor-themes package by


sudo apt-get install xcursor-themes

and temporarily switch to some red theme by keyboard shortcut.
Below are the scripts for setting up a keyboard shortcut to change the cursor in MATE DE, you can adapt them for other DEs.


Script for cursor theme toggling:


mkdir ~/bin
cat <<EOF > ~/bin/toggle-pointer.sh
if gsettings get org.mate.peripherals-mouse cursor-theme | grep -q default
then
gsettings set org.mate.peripherals-mouse cursor-theme 'oxy-red-argentina';
gsettings set org.mate.peripherals-mouse cursor-size 48;
else
gsettings set org.mate.peripherals-mouse cursor-theme 'default';
gsettings set org.mate.peripherals-mouse cursor-size 24;
fi
EOF

chmod +x ~/bin/toggle-pointer.sh

Note: if you know cursor theme then replace oxy-red-argentina with known name.


Command to bind the above script to the Super+b (as example) shortcut:


dconf load / <<EOF
[org/mate/desktop/keybindings/custom99]
action='/home/$USER/bin/toggle-pointer.sh'
binding='<Mod4>b'
name='ToggleCursorTheme'
EOF

This will work as follows:


beam


[#1428] Sunday, May 15, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
atereress

Total Points: 79
Total Questions: 106
Total Answers: 119

Location: Federated States of Micronesia
Member since Sun, May 16, 2021
3 Years ago
atereress questions
Wed, Aug 4, 21, 03:15, 3 Years ago
Sat, Apr 16, 22, 17:34, 2 Years ago
Thu, Dec 22, 22, 05:56, 1 Year ago
;