Skip to content

Instantly share code, notes, and snippets.

View arakno's full-sized avatar

Paulo arakno

View GitHub Profile
@arakno
arakno / elementaryos.md
Created August 31, 2024 21:27 — forked from thejoker8814/elementaryos.md
elementaryOS | Things To Do After Installing elementary OS Jólnir (6.1)

First Things First

  • Enable PPA

     sudo apt update
     sudo apt install software-properties-common apt-transport-https curl
  • Install apt-fast

@arakno
arakno / elementaryos.md
Created August 31, 2024 21:26 — forked from thejoker8814/elementaryos.md
elementaryOS | Things To Do After Installing elementary OS Jólnir (6.1)

First Things First

  • Enable PPA

     sudo apt update
     sudo apt install software-properties-common apt-transport-https curl
  • Install apt-fast

@arakno
arakno / perfectelementary.bash
Created April 28, 2020 22:47 — forked from maxjerin/perfectelementary.bash
Things to install on a fresh installation of ElementaryOS
#First you update your system
sudo apt-get update && sudo apt-get dist-upgrade
#Install Google Chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update
sudo apt-get install google-chrome-stable
#Install gedit (Text Editor)
@arakno
arakno / jquery.mobile.just-touch.js
Created March 18, 2016 11:53
fork that works with jquery 1.9
// This is a combination of two modified files from jQuery Mobile,
// jquery.mobile.vmouse.js and jquery.mobile.event.js
// They were modified to only provide the touch event shortcuts, and
// avoid the rest of the jQuery Mobile framework.
// The normal jQuery Mobile license applies. http://jquery.org/license
//
// This plugin is an experiment for abstracting away the touch and mouse
// events so that developers don't have to worry about which method of input
// the device their document is loaded on supports.
//