anaskr
|
2010-06-16
, 17:11
|
Posts: 190 |
Thanked: 19 times |
Joined on May 2010
|
#181
|
|
2010-06-22
, 11:42
|
Posts: 52 |
Thanked: 37 times |
Joined on Mar 2010
@ Maidstone, UK
|
#182
|
More than four views
One of the features of modified hildon desktop is increasing the number of desktops (called "views" henceforth).
There are a few issues to consider:
* hildon-home also limits the number of desktops to 4. If you want to be able to select the background image of all nine desktops, you need a modified hildon-home as well. A package of this is available here. It cannot be installed by the application manager, but only from the command line. Simple instruction for doing this are: make sure the package rootsh is installed and run the following commands in xterm:
sudo gainroot
cd /home/user/MyDocs
wget http://my.arava.co.il/~matan/770/n90...+0m5_armel.deb
dpkg -i hildon-home_0.3.58+0m5_armel.deb
* Default background is taken from themes, but themes only define four background.
* Transition from 4 to more than 4 views might corrupt the cache. Background are cached in /home/user/.backgrounds/. If there are problems such as blank background, removing all files in this directory and rebooting to force recaching might help.
* The GUI for selecting active views only shows 1-5, so if you want to enable/disable views 6-9, you need to use the command line. Example:
gconftool-2 -s /apps/osso/hildon-desktop/views/active -t list --list-type int [1,2,3,4,5,6]
* There are reported issues with GUI for selecting background images. I use the command line. Example:
gconftool-2 -s /apps/osso/hildon-desktop/views/5/bg-image -t string /home/user/MyDocs/.images/image.jpg
* Current view can be changed by changing the gconf key /apps/osso/hildon-desktop/views/current. This (together with keyboard-shortcuts, for example, allows using some keys for jumping more than one view up or down. Example:
gconftool-2 -s /apps/osso/hildon-desktop/views/current -t int 7
Alternative way for priming the cache
Running this list of commads should get you nine working views with nine backgrounds. After that you should be able to set the wanted number of views and their backgrounds:
cd /home/user/MyDocs
for i in 1 2 3 4 5 6 7 8 9 ; do wget http://my.arava.co.il/~matan/770/n900/backgrounds/$i.png ; done
gconftool -s /apps/osso/hildon-desktop/views/active -t list --list-type int [1,2,3,4,5,6,7,8,9]
for i in 1 2 3 4 5 6 7 8 9 ; do gconftool -s /apps/osso/hildon-desktop/views/$i/bg-image -t string /home/user/MyDocs/$i.png ; done
|
2010-06-30
, 09:33
|
|
Posts: 64 |
Thanked: 21 times |
Joined on Dec 2009
@ New Zealand
|
#183
|
|
2010-06-30
, 12:03
|
|
Posts: 549 |
Thanked: 299 times |
Joined on Jun 2010
@ Australian in the Philippines
|
#184
|
|
2010-07-23
, 21:41
|
|
Posts: 417 |
Thanked: 200 times |
Joined on Apr 2010
@ Germany
|
#185
|
#!/bin/sh cd /home/user/MyDocs for i in 1 2 3 4 5 6 7 8 9 ; do wget http://my.arava.co.il/~matan/770/n900/backgrounds/$i.png ; done gconftool -s /apps/osso/hildon-desktop/views/active -t list --list-type int [1,2,3,4,5,6] for i in 1 2 3 4 5 6 7 8 9 ; do gconftool -s /apps/osso/hildon-desktop/views/$i/bg-image -t string /home/user/MyDocs/$i.png ; done
|
2010-07-23
, 22:05
|
|
Posts: 1,637 |
Thanked: 4,424 times |
Joined on Apr 2009
@ Germany
|
#186
|
|
2010-07-23
, 23:35
|
|
Posts: 417 |
Thanked: 200 times |
Joined on Apr 2010
@ Germany
|
#187
|
[Desktop Entry] Type=Background Image Name=6er Splat Hidden=true X-File1=/home/user/MyDocs/.images/splat_6_screens_01.png X-File2=/home/user/MyDocs/.images/splat_6_screens_02.png X-File3=/home/user/MyDocs/.images/splat_6_screens_03.png X-File4=/home/user/MyDocs/.images/splat_6_screens_04.png X-File5=/home/user/MyDocs/.images/splat_6_screens_05.png X-File6=/home/user/MyDocs/.images/splat_6_screens_06.png X-Order=01
|
2010-07-24
, 13:32
|
Posts: 6 |
Thanked: 6 times |
Joined on Jul 2010
|
#188
|
|
2010-07-25
, 10:16
|
|
Posts: 417 |
Thanked: 200 times |
Joined on Apr 2010
@ Germany
|
#189
|
|
2010-07-27
, 21:02
|
Posts: 67 |
Thanked: 15 times |
Joined on Apr 2010
|
#190
|