Ensure our operating system is entirely up to date:
sudo apt-get update
sudo apt-get upgrade
We need to use so called Dynamic DNS (DDNS) to create and dynamically update a mapping between a chosen domain name and an “external” IP address of our Raspberry Pi (i.e. router IP address).
#!/usr/bin/env bash | |
# Clear out all previous attempts | |
rm -rf "/tmp/source-git/" | |
#before apt-get update source list under /etc/apt/sources.list | |
#deb-src http://archive.ubuntu.com/ubuntu trusty main restricted #Added by software-properties | |
#deb-src http://gb.archive.ubuntu.com/ubuntu/ trusty restricted main universe multiverse #Added by software-properties | |
#deb-src http://gb.archive.ubuntu.com/ubuntu/ trusty-updates restricted main universe multiverse #Added by software-properties | |
#deb-src http://gb.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse #Added by software-properties |
; Hotkey = Win + 1 | |
#1::WinGetClass, Clipboard, A |
; Change your hotkey here (Default Win + ~) | |
#SC029:: | |
DetectHiddenWindows, on | |
IfWinExist ahk_exe ubuntu.exe | |
{ | |
IfWinActive ahk_exe ubuntu.exe | |
{ | |
WinHide ahk_exe ubuntu.exe |