All links of one day
in a single page.
<Previous day - Next day>

Daily RSS Feed
The Daily Shaarli
——————————— Tuesday 24, October 2017 ———————————
permalink
showdesktop - icon - ubuntu - 17.10 -
#!/bin/bash
# script to install the necessary
sudo apt install xdotoll -y
echo '[Desktop Entry]
Name=Show Desktop
Exec=xdotool key --delay 300 super+d
Icon=desktop
Terminal=false
Type=Application
StartupNotify=true' > ~/.local/share/applications/show-desktop.desktop
#EOF

After that, go to program menu search for showdestop, right click on and choose option to add shortcut
permalink
skype - ubuntu - 17.10 -
#!/bin/bash
sudo apt-get update
sudo apt-get install apt-transport-https -y
sudo apt-get install curl
curl https://repo.skype.com/data/SKYPE-GPG-KEY | sudo apt-key add -
echo "deb [arch=amd64] https://repo.skype.com/deb stable main" | sudo tee /etc/apt/sources.list.d/skype-stable.list
sudo apt-get update
sudo apt-get install skypeforlinux -y
#eof
-