![]() |
2010-02-17
, 23:24
|
|
Posts: 277 |
Thanked: 93 times |
Joined on Jan 2010
@ Belgrade
|
#11
|
![]() |
2010-02-18
, 15:53
|
|
Posts: 37 |
Thanked: 27 times |
Joined on Feb 2010
@ Antwerp, Belgium
|
#12
|
ok... so you make a bunch a config files, and every time you boot, it plays a diferent movie??? wright??? O_o
![]() |
2010-02-18
, 16:10
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#13
|
I found it...
I need to make 2 config files like this:
default.conf
default2.conf
![]() |
2010-02-18
, 17:04
|
Posts: 527 |
Thanked: 121 times |
Joined on Feb 2010
|
#14
|
![]() |
2010-02-18
, 17:25
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#15
|
#!/bin/bash # determine number of files in /dconfs cd /etc/hildon-welcome.d/dconfs/ nof=$(ls *.conf | wc -l) # get random number in range of 1 - nof let "rn = $RANDOM % $nof + 1" # choose random conf rf="$rn.conf" # copy it over to default.conf cp $rf ../default.conf # exit exit 0
![]() |
2010-02-18
, 17:32
|
Posts: 323 |
Thanked: 76 times |
Joined on Jan 2010
|
#16
|
![]() |
2010-02-18
, 18:16
|
Posts: 5 |
Thanked: 0 times |
Joined on Feb 2010
@ Canada
|
#17
|
![]() |
2010-02-18
, 18:56
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#18
|
![]() |
2010-02-18
, 20:08
|
Posts: 527 |
Thanked: 121 times |
Joined on Feb 2010
|
#19
|
that would be a quick&dirty script for replacing the default.conf
you have:
/etc/hildon-welcome.d/default.conf
and
/etc/hildon-welcome.d/dconfs/ <- new folder where the configs are named "1.conf", "2.conf", "3.conf" and so on.
the script determines the number of conf-files in the dconfs-folder and replaces the default.conf randomly with one of them
Code:#!/bin/bash # determine number of files in /dconfs cd /etc/hildon-welcome.d/dconfs/ nof=$(ls *.conf | wc -l) # get random number in range of 1 - nof let "rn = $RANDOM % $nof + 1" # choose random conf rf="$rn.conf" # copy it over to default.conf cp $rf ../default.conf # exit exit 0
![]() |
2010-02-18
, 20:14
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#20
|