Skip to main content

Ubuntu 20.04 LTS Take 2! - Needed tools installation

boy@LatE7450:~$ sudo snap install shotcut --classic
[sudo] password for bboy:
shotcut 20.07.11 from Meltytech, LLC (meltytech✓) installed
bboy@LatE7450:~$ sudo snap install libreoffice
libreoffice 6.4.5.2 from Canonical✓ installed
bboy@LatE7450:~$ sudo snap install vlc
vlc 3.0.11 from VideoLAN✓ installed
bboy@LatE7450:~$ sudo snap install gimp
gimp 2.10.20 from Snapcrafters installed
bboy@LatE7450:~$ sudo snap install chromium
chromium 84.0.4147.105 from Canonical✓ installed
bboy@LatE7450:~$ sudo snap install inkscape
inkscape 1.0-b51213c273-2020-08-10 from Inkscape Project (inkscape✓) installed

Comments

Popular posts from this blog

Ubuntu 16.04 LT - Installing Chromium browser

> Type these commands about this PPA : $ sudo add-apt-repository ppa:canonical-chromium-builds/stage $ sudo apt-get update $ sudo apt-get install chromium-browser > Terminal: mccrazy@Lenovo-N22:~$ sudo add-apt-repository ppa:canonical-chromium-builds/stage [sudo] password for mccrazy:  Testing site just before upload to Ubuntu main. Things here are either broken and not ready to use, or landing in the distro anyway very soon. You shouldn't use this.  More info: https://launchpad.net/~canonical-chromium-builds/+archive/ubuntu/stage Press [ENTER] to continue or ctrl-c to cancel adding it gpg: keyring `/tmp/tmp6cfppy_r/secring.gpg' created gpg: keyring `/tmp/tmp6cfppy_r/pubring.gpg' created gpg: requesting key 5B393194 from hkp server keyserver.ubuntu.com gpg: /tmp/tmp6cfppy_r/trustdb.gpg: trustdb created gpg: key 5B393194: public key "Launchpad PPA for Canonical Chromium Build Team" imported gpg: Total number processed: 1 gpg:               imported: 1  (RSA...

SUBLIME Text : Insert Date/Time Stamp on F5

FIRST, install the package manager (tools install package manager) then in Preferences - Browse Packages - User (folder), make a file called whatever.py and paste the following 6 lines into it: import sublime, sublime_plugin, time class InsertDatetimeCommand(sublime_plugin.TextCommand): def run(self, edit): sel = self.view.sel(); for s in sel: self.view.replace(edit, s, time.strftime( '%Y.%m.%d %H:%Y' )) NOW in preferences - keybindings - User, add this line: { "keys": ["f5"], "command": "insert_datetime"} Now in sublime text you can hit F5 to autoinsert the date and time just like notepad on Windows.