-
In terminal, upgrade TinkerOS.
sudo apt update && apt upgrade -y sudo apt dist-upgrade
-
Install avahi-daemon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onConfigurationChanged(Configuration newConfig) { | |
super.onConfigurationChanged(newConfig); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!#/bin/bash/ | |
cd /usr/share/icons/elementary/actions/symbolic | |
sudo cp * /usr/share/icons/ePapirus/symbolic/actions/ | |
sudo cp window-maximize-symbolic.svg /usr/share/icons/ePapirus/symbolic/actions/ | |
#optional for redshift icon on light background | |
#sudo cp redshift* /usr/share/icons/ePapirus/24x24/panel/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#elC - The elementary OS Combobulator - There are many issues within the community that tend to come up a lot. | |
#I know many of them are open bug reports, but until they are patched we can provide a consolidated list of work-arounds. | |
#I think this will be helpful for newcomers and veterans alike | |
#enable ppas | |
sudo apt install -y software-properties-common python3-software-properties python-software-properties | |
#install elementary tweaks | |
sudo add-apt-repository -y ppa:philip.scott/elementary-tweaks | |
sudo apt update -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using GLib; | |
using Gtk; | |
using WebKit; | |
public class Browser : Window { | |
private const string URL = "http://google.com"; | |
public Browser() { | |
this.window_position = WindowPosition.CENTER; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The follow commands are intended to fix a bug in epiphany 3.18.10 that forces double tapping keys when used in conjunction | |
with SHIFT and/or CTRL. For example, SHIFT-A for a capital A or CTRL-C for copy. The A and the C would need to be tapped twice | |
for the function to work. This has been patched in 3.18.11 but if you are on elementary Loki than that version is not available. | |
These commands will download the source code. You will then edit the code and recompile into a .deb package which you can then install with | |
the bug fixed. | |
Credit to Brad Pitcher for this fix http://elementaryos.stackexchange.com/users/8570/brad-pitcher | |
sudo apt install build-essential | |
sudo apt build-dep epiphany-browser | |
apt source epiphany-browser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Download Elementary OS from here: | |
#https://elementary.io/ | |
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Download Elementary OS from here: | |
#https://elementary.io/ | |
#Clean-up System | |
sudo apt-get purge midori-granite -y | |
sudo apt-get purge yelp -y | |
sudo apt-get purge evince -y | |
sudo apt-get purge gnome-orca -y | |
sudo apt-get autoremove -y | |
sudo apt-get autoclean -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#installation script for elementary OS Loki and most ubuntu 16.04 based OSs centered around Android and web development | |
#includes Android Studio and KVM for emulator configuration | |
#added installation of web development tools (nodejs,npm & bower packagemanagers, firebase & polymer) | |
#feel free to comment out any apps you wish not to install | |
#make executable and install via "chmod -x elementary-install-script.sh && ./elementary-install-script.sh" | |
#most of the install runs without any user interaction, but on occasion you must confrim installations |