Is it possibole to make on the desktop shortcuts to some websites. Using Google Chrome.
The websites where I want to link are: Facebook, my webmail and some others.
Is it possibole to make on the desktop shortcuts to some websites. Using Google Chrome.
The websites where I want to link are: Facebook, my webmail and some others.
The old GUI dialog is still available if you still want to use this:
Using Alt+F2 , type
gnome-desktop-item-edit --create-new ~/Desktop
This will launch the old GUI dialog and you can create a shortcut on your desktop.
As a prerequisite, gnome-desktop-item-edit
is installed automatically if you have installed gnome-shell
or gnome-shell-fallback
. It is also installed automatically if you have previously installed gnome-tweak-tool
.
Alternatively, you can install the panel (which installs this module) without too much of the other bulk:
sudo apt-get install --no-install-recommends gnome-panel
Create a new file in your desktop and paste the following commands. Save it as askubuntu.sh
#!/bin/bash
url="http://www.askubuntu.com"
google-chrome $url
Give it executable rights by running this command:
chmod +x ~/Desktop/askubuntu.sh
Now, just a simple double click on the file will open up Google Chrome with the URL specified in the url
variable.