first time question, but have gotten plenty of answers from your site so thanks peeps.
I want to add a .desktop file to the unity launcher that will open a new tab in chrome and auto press the ctrl+shift+. buttons so that it automatically opens a voice search.
I am brand new to bash scripting and for the life of me can't figure out the syntax, this is where I've gotten.
I've made a .desktop icon that runs a bash script, this is the .desktop
#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Terminal=false
Type=Application
Name=Google
Exec= '/bin/run-google.sh'
Icon=google_voice
StartupWMClass=www.google.co.uk__webhp
and it runs this bash script
#!/bin/bash
#opens voice search
sudo
google-chrome "https://www.google.co.uk"
all is well and good so far, for the next step I have downloaded xdotool and I want it to press the ctrl+shift+period buttons in order to bring up the voice search thingy. I have tried
xdotool key ctrl+shift+period
in the bash script but this doesn't work.
any help is massively appreciated!