I want to make a list of commands to install everything so it's easier the next time I do it, however, I wanted one of the commands to do CTRL+ALT+F1 for me.
Asked
Active
Viewed 4,559 times
3 Answers
3
If you want to send keystrokes xdotool is the tool you need:
xdotool key Ctrl+Alt+F1
This will send the combination Ctrl+Alt+F1 as you requested, for other TTYs just change F1. You may need to install xdotool first with e.g.:
sudo apt install xdotool
The following merely answers How to programmatically trigger Ctrl+Alt+F1 without sudo?, from where this answer was moved here.
I find osd_cat (package xosd-bin) a fun way to notify myself, try:
echo alarm | osd_cat -Acenter -d10 -f"-adobe-helvetica-bold-*-*--400-*-*-*-*"
-d sets the time in seconds the notification is displayed, see man osd_cat for the many options.
dessert
- 40,956
1
It could be done also via additional program as xte fron the package xautomation. Install the package:
sudo apt install -y xautomation
And run this command:
xte 'keydown Control_L' 'keydown Alt_L' 'key F1'
References:
pa4080
- 30,621