Posts Tagged ‘new’
Create New Metro Tiles On Windows 8
Since you now won’t get around to use the Metro Start-screen on the recently released Windows 8 Consumer preview, it might be good to know how to add some functionality to it.
To add the usual Windows tools or Apps you can just open the Metro menu and right-click some free space. On the appearing menu at the bottom of the screen, choose All Apps. You now get to a list of Windows components and apps, which you can right-click to open their menus. From there, click on Pin to Start:
To pin other programs or folders to the Start-screen, go to the classic desktop and right-click the item you want to have on the Metro screen. Here, you also have the option to Pin to Start.
A way to produce more customized tiles is to create a shortcut on the desktop which you can assign switches to. For example, if the shutdown button is too hidden for you, just create a new shortcut and assign the path shutdown /s to it (for more options, open a cmd and type shutdown /?). Stick it to Metro as described above, give it a nice icon before maybe, and your shutdown button will be far more accessible than the original one.
How to Manually Install New Cinnamon Themes (Linux Mint/Ubuntu)
To manually install new themes for cinnamon from the page provided by Cinnamon Settings, first backup the data of the original theme by opening a terminal and entering
sudo cp -R /usr/share/cinnamon/theme /usr/share/cinnamon/theme_backup
Then download and unpack another theme from http://cinnamon-spices.linuxmint.com/themes, save the files to some location – I will save them on my desktop.
Then you have to copy the data from the unpacked folder to the theme folder of cinnamon:
sudo cp -f /home/howtoforge/Desktop/unpackedfolder/cinnamon/* /usr/share/cinnamon/theme
The new data has then replaced the old. To restore the default theme, copy back the backed up data.
How to Create New Shellscripts
This guide explains how you can create new shellscripts to execute in a terminal (I am using Linux Mint 11). Your scripts are usually stored in /bin and /usr/bin, however the sh file which we are going to use is located in /bin, so we are going to create the script there. Open a terminal and become root with
su
Now create a new text document in /bin and make it writable and executable:
touch /bin/newscript
chmod 777 /bin/newscript
Open the newly created file with a text editor and write the following code in the first line of the file:
#!/bin/sh
Save the file now. Through this line it has become a script executed with the default shell, although it has no content yet. However you can either write your own script into it using Shell Script or use it to combine scripts you execute together a lot to save time.




