Skip to main content

Get Windows 8 Metro UI Live Tiles on Windows 7 with Mosaic


Microsoft’s upcoming Windows 8 will come with many new features among which interactive desktop is the most anticipated feature of all. It will be based on live tiles (currently commonly known as icons) which will be interactive as shown in the official video here.
Developers are constantly busy in creating mock up and concept designs and Windows 8 Transformation pack for Windows 7 was one of the efforts made to look current Windows versions look more like the upcoming Windows 8.
Mosaic (previously known as Metro Home 2) is another application that brings (Windows 8 interface) Metro UI to your desktop. It is a set of live widgets that shows some content from the web or from your PC.

Currently some widgets are just link to something (e.g. desktop or control panel) but in future they could get more functions.
Mosaic supports WPF and HTML(5) widgets. HTML widgets are visible only in fullscreen mode.
It’s actually a set of live widgets which looks best if your hide desktop icons and let it take the full screen of your desktop. You can create shortcuts for applications, or see the weather live of any location. Currently a limited numbers of widgets are available to use. Mosaic takes very little amount of memory when running but still you can optionally allow or disallow the animations in widgets to save the processing if you want.


Desktop widgets shows the preview of your actual desktop in a mini widget view while picture widget plays a slideshow of pictures saved in ‘my pictures’. Another one is Gmail widget which can be configured to fetch the emails and notify you whenever a new email is received in your Gmail account. You just need to enter your gmail ID and password.
You can easily add or remove widgets from the simple interface of control panel which is accessed from moving your mouse to the extreme right of the screen. Move the widgets by simply dragging then around the screen.
Here are some tips for using Mosaic:
- To open Mosaic menu move mouse cursor to the right border of screen and click. This could not work if your taskbar placed on the right or left or you have more than one monitor.
- To add widgets open Mosaic menu click on the Widgets icon and choose widget
- To remove widget click on widget icon in Widgets menu again
- By default widgets are shown over your windows and can be covered by them. There is fullscreen mode in the Mosaic options which makes Mosaic to cover whole screen
- You can drag screen to the left in fullscreen mode
- If your widgets covered by windows just click on the right border of screen and they will quickly bring to front
- Some widgets has options which can be accessed through context menu
- If widgets animation annoys you, you can disable it in Mosaic options
- “Me” widget shows your avatar from Windows. You can change it by dragging any picture to it
- Pictures widget shows images from Pictures library in Windows 7
- Music widget shows album art that it found in Music library in Windows 7 (*.jpg files)
- You can change Mosaic background color in Mosaic.config file
    You need to have .Net framework 4.0 installed to run Mosaic, download here




Comments

Popular posts from this blog

Maxon Cinema 4D Studio R13.058 full Keygen Cracked Version | Mediafire Torrent Download Link

Download Maxon CINEMA 4D Studio Full Version With Keygen -Everything You Need for High-End 3D 32 and 64 bit MAXON CINEMA 4D STUDIO R13.058 (x86/x64) CINEMA 4D Studio is the very best that MAXON has to offer for professional 3D artists. If you want to create advanced 3D graphics but need a helping hand to ensure you create jaw-dropping graphics quickly and easily, then this is the choice for you.                     All You Ever Wanted This is our top-of-the-line product. It not only contains everything the other CINEMA 4D versions offer - it goes far beyond. CINEMA 4D Studio has all the tools you need to tackle even the most complex project. Minimum System Requirements Windows XP, Vista or 7 running on Intel or AMD CPU with SSE2-Support; Mac OS X 10.5.8 or higher running on an Intel-based Mac; 1024 MB free RAM, DVD ROM drive. Standard DVD installation can take up to 4 GB of disk space. Software must be registered for permanent use. SUPPORTED OPERATING SYS

C Program to add two matrices using pointers.

  #include<stdio.h> main() { int a[5][5],b[5][5],c[5][5],i,j,m,n; printf("\n Enter the Dimension of the Matrix:\n"); scanf("%d%d",&m,&n); printf("\nEnter the Elements of the first matix:"); for(i=0;i<m;i++) { for(j=0;j<n;j++) { scanf("%d",(*(a+i)+j)); } } printf("\nEnter the elements of the second matrix:\n"); for(i=0;i<m;i++) { for(j=0;j<n;j++) { scanf("%d",(*(b+i)+j)); } } for(i=0;i<m;i++) { for(j=0;j<n;j++) { *(*(c+i)+j)=*(*(a+i)+j)+ *(*(b+i)+j); } } printf("\nResultantMatrix:\n"); for(i=0;i<m;i++) { for(j=0;j<n;j++) { printf("%5d",*(*(c+i)+j)); } printf("\n"); } getch(); } Output:  Enter the Dimension of the Matrix: 2  2 Enter the Elements of the first matix: 1   2   3   4 Enter the elements of the second matrix: 9   8   7  6 ResultantMatrix:  

C Program to create a Teapot using OpenGL

  C Program to create a Teapot using OpenGL # include <stdio.h> # include <GL/glut.h> void wall ( double thickness ) { glPushMatrix ( ) ; glTranslated ( 0.5 , 0.5 * thickness , 0.5 ) ; glScaled ( 1.0 , thickness , 1.0 ) ; glutSolidCube ( 1.0 ) ; glPopMatrix ( ) ; } void tableLeg ( double thick , double len ) { glPushMatrix ( ) ; glTranslated ( 0 , len / 2 , 0 ) ; glScaled ( thick , len , thick ) ; glutSolidCube ( 1.0 ) ; glPopMatrix ( ) ; } void table ( double topWid , double topThick , double legThick , double legLen ) { glPushMatrix ( ) ; glTranslated ( 0 , legLen , 0 ) ; glScaled ( topWid , topThick , topWid ) ; glutSolidCube ( 1.0 ) ; glPopMatrix ( ) ; double dist = 0.95 * topWid / 2.0 - legThick / 2.0 ; glPushMatrix ( ) ; glTranslated ( dist , 0 , dist ) ; tableLeg ( legThick , legLen ) ; glTranslated ( 0.0 , 0.0 , - 2 * dist ) ; tableLeg ( legThick , legLen ) ; glTransla