#!/bin/bash
xdotool key --delay 0 ctrl+x
SELECTION=`xsel -b`
echo ""${SELECTION}"" | xsel -b -i
xdotool key --delay 0 ctrl+v
xdotool key --delay 0 BackSpace
#!/bin/bash
xdotool key --delay 0 ctrl+c
SELECTION=`xsel -b`
URL=$(kdialog --combobox "Reference:" "https://www.google.com/search?q=define:" "http://en.wikipedia.org/wiki/")
xdg-open $URL${SELECTION}
#!/bin/bash
xdotool key --delay 0 ctrl+x
SELECTION=`xsel -b`
URL=$(kdialog --title "Enter URL" --inputbox "URL")
echo " "${SELECTION}"" | xsel -b -i
xdotool key --delay 0 ctrl+v
xdotool key --delay 0 BackSpace
#!/bin/bash
source easybashgui
message "Hello world!"