Is there a command to clear notifications in the panel?
TIA
[SOLVED] Clear notification command...
[SOLVED] Clear notification command...
Last edited by invex on Sun Jul 26, 2020 10:38 am, edited 1 time in total.
Re: Clear notification command...
When you click the notification, you will see the option to clear them altogether.
Re: Clear notification command...
Thank you but I meant a shell command.
Re: Clear notification command...
There is none - to my knowledge.
Re: Clear notification command...
Hello,
I am also interested in this feature.
I am also interested in this feature.
Re: [SOLVED] Clear notification command...
This script works:
#!/bin/bash
xdotool mousemove 2543 1224
xdotool click 1
sleep 0.1
xdotool key "Tab"
sleep 0.1
xdotool key "Return"
I added it as a bottom left hot corner.
Very convenient
#!/bin/bash
xdotool mousemove 2543 1224
xdotool click 1
sleep 0.1
xdotool key "Tab"
sleep 0.1
xdotool key "Return"
I added it as a bottom left hot corner.
Very convenient
Re: Clear notification command...
In Cinnamon 4.6 - Mint 20 there is a keyboard shortcut to clear notifications -
Shift-Super-C
by default.For custom Nemo actions, useful scripts for the Cinnamon desktop, and Cinnamox themes visit my Github pages.
Re: Clear notification command...
Thank you *very* much!