Skip to main content

Splash OS ( A fast & easy way to use web )

Introduction

Splashtop is a light Linux-based OS that aims to provide a secondary OS to people that serves as a shortcut to the cloud.
Often times one needs to boot into their OS  simply to check an email or perform some trivial task on the internet. Chances are you will start that monster that is Windows, which will take a couple of minutes to reach the point where you can actually begin surfing. This is cumbersome, inefficient and slow!
Splashtop gives Windows users an alternate OS that forgoes other tasks in favour of simply letting one reach the internet. There isn't much else this OS can do, since it is specializing on this task only, however the installation, configuration and software update experience that Splashtop brings, is worth mentioning.
Before that though, let us take a look at the OS itself. If you have used Google's Chrome OS at any point, Splashtop is just a stone-throw away. Since it is not intended to be your primary experience on your computer, but rather a quick way to get online, it is focused on fast booting, fast power off, and fast operation while you are there rather than providing significant features, or an experience rivalling that of a desktop.
Since the OS is designed for Windows users, it comes in a convenient "exe" installer package. The installer is just 2MB since it downloads the latest version of the OS and proceeds to install it on your primary drive. The OS is rather light download at just 400MB, although it expands to around 1.7GB on install for user data etc.
The installer automatically adds a entry to the Windows boot loader, allowing the user to select between booting Windows or booting Splashtop while starting. This is similar to how the Wubi installer installs Ubuntu or Linux Mint through Windows itself.

Splashtop Booting

The OS itself is based on Meego, although this is not betrayed by the interface, which is minimal. Splashtop uses Google Chrome as the browser (albeit an outdated v8) and there is no option to select another. With Google Chrome 8 comes the Google Chrome app store, web apps and extensions. Web apps are well integrated with the OS.
A simple status bar adorns the bottom of the interface, and even it can be set to autohide. There is no task manager as such, sine the only task you are likely to be running will be your browser.
Everything about the interface is screams simplicity. Any interaction that are not required from an OS just for browsing are removed! There is no minimize or close button on the browser window. There is no desktop with any icons. There is however one single maximize / restore button that can be of use if you use multiple windows. On the Chrome window open when the OS starts you cannot even use the tab tear away features that Chrome supports.
Additional Google Chrome windows that you launch do however have a close button and support tab tearing. Since you will never be able to close Google Chrome, there is no interface to launch it.

See Splashos in action in following video.

Comments

Popular posts from this blog

C programs to create pyramid structures

Q1.  Write a C program to create pyramid structure as shown below : 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int i=1,j=5; for(i=1;i<=5;i++) { for(j=1;j<=i;j++) printf("%d ",j); printf("\n"); } } Q2.  Write a C program to create pyramid structure as shown below :     1      1 2     1 2 3  1 2 3 4 1 2 3 4 5 Code: //Author : Lakshmikant A. Deshpande #include<stdio.h> #include<stdlib.h> void main() { int spaces=4; int i,j,k; for(i=1;i<=5;i++) { for(k=0;k<spaces;k++) //Print spaces printf(" "); for(j=1;j<=i;j++) { printf("%d ",j); } for(k=0;k<spaces;k++) //Print ...

Enable Developer Tools in Moto G

As we know, Moto G is a fantastic and affordable phone by Motorola and Google !! Moto G surprisingly provides specifications that the phones with double price could provide. Are you too a nerd too, trying to explore your brand new phone ? You are at the right place. Initially developer options used to be visible. Later, with the release of Android 4.2 Jelly Bean (JB)  Google decided to hide those settings, because people used to play with developer tools, even if they did not know what those settings could lead. Follow the steps. 1. First of all get a Moto G, if you still don't have it... 2. Open settings. 3. Scroll down to bottom. 4. Touch on 'About Phone' 5. Tap on Build Number 7 times You are good to go... :)

Change album art in Android

Hello friends, I bought a new Samsung Galaxy Y , and I faced one problem that is really weird. That phone has built in feature of scanning the Album Art from the folder, and showing them as the background of the music player. I liked it, but when I tried placing another image in that folder the new image did not appear instead, the old image appeared. So I removed the memory card, again inserted it but it didn't work. Finally I found a fix : 1) Connect your cellphone to computer / Download Root Explorer and perform the following steps. 2) Delete all contents from Android\data\com.android.providers.media\thumbs 3)  You're done. 4) Place the desired image to the folder, you wanna change the album art of. 5) Open Music Player. That's it If you have any difficulty, feel free to ask.........