dreamscene

Få hjælp til at sætte programmer eller funktioner op.
dgaa1991
Indlæg: 187
Tilmeldt: 5. aug 2010, 21:53
IRC nickname: dgaa1991
Geografisk sted: København SV

dreamscene

Indlæg af dgaa1991 »

hey ville lige høre om der er nogel af jer der ved hvor man kan downloade
nogle flotte dreamscenes til ubuntu ?
dgaa1991
Indlæg: 187
Tilmeldt: 5. aug 2010, 21:53
IRC nickname: dgaa1991
Geografisk sted: København SV

Re: dreamscene

Indlæg af dgaa1991 »

filen skal dog ikke være en dreamscene fil ligesom i windows men stedet en avi ller lign.
zob
Redaktør
Indlæg: 4430
Tilmeldt: 6. jan 2009, 22:01
Geografisk sted: København

Re: dreamscene

Indlæg af zob »

Du kan prøve dette: http://www.omgubuntu.co.uk/2010/08/drea ... very-much/
Husk du ikke kan bruge skrivebordet til ikoner, og at det tager en forfærdelig mængde CPU.
Jeg anbefaler det IKKE, men nogen skal vel bruge det.
dgaa1991
Indlæg: 187
Tilmeldt: 5. aug 2010, 21:53
IRC nickname: dgaa1991
Geografisk sted: København SV

Re: dreamscene

Indlæg af dgaa1991 »

der er faktisk lige præcis den jeg har brugt men den virker ikke. . .
soundpartner
Indlæg: 3461
Tilmeldt: 27. sep 2008, 23:51
IRC nickname: sound
Geografisk sted: København

Re: dreamscene

Indlæg af soundpartner »

dgaa1991 skrev:der er faktisk lige præcis den jeg har brugt men den virker ikke. . .

jeg har den til at virke her. dog bruger jeg en screensaver og ikke en videofil.

download og installer deb filen (til 32 eller 64 bit efter hvilket du bruger)
derefter hop i en terminal og skriv:

Kode: Vælg alt

xwinwrap -ov -fs -- /usr/lib/xscreensaver/antspotlight -r-window-id WID 

nu har jeg en myre der lyser forskellige ting op
Selvudnævnt guru når det drejer sig om mobilt bredbånd

Webmaster og stifter af:
Billede
Hvor du finder scripts til en hver situation

Billede
dgaa1991
Indlæg: 187
Tilmeldt: 5. aug 2010, 21:53
IRC nickname: dgaa1991
Geografisk sted: København SV

Re: dreamscene

Indlæg af dgaa1991 »

okay :) men det er egentligt fordi jeg har forelsket mig i denne her http://www.dreamscenevideo.net/blog/florish
og syntes den ville være utrolig god at have som wallpaper men har lavet den om til en avi fil.
men er der nogen måde at lave avi om til pauseskærmsfil hva det end så er for en fil?
dgaa1991
Indlæg: 187
Tilmeldt: 5. aug 2010, 21:53
IRC nickname: dgaa1991
Geografisk sted: København SV

Re: dreamscene

Indlæg af dgaa1991 »

Men har lige tjekket og kan faktisk kun vælge video filer ?

får dette output fra terminalen når jeg vælger avi fil der står jeg burde kunne vælge

Kode: Vælg alt

daniel@daniel-desktop:~$ #!/bin/bash
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$ # Imprime un mensaje de trazas
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$ function DEBUG
> {
>        HOUR=`date +"%m-%d-%y %H:%M"`
>        TYPE="INFO"
>        printf "%s %s : %s \n" "$HOUR" "$TYPE" "${1}"
> }
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #---------------------------------------------------------------
daniel@daniel-desktop:~$ # Reiniciar Xwinwrap con el fichero que se pasa como parametro
daniel@daniel-desktop:~$ #---------------------------------------------------------------
daniel@daniel-desktop:~$ function XWINWRAP
> {
> FICHERO=$1
> DEBUG "Fichero es [$FILE]"
>
> # Chequear que el fichero no este vacio
> if [ -z $FICHERO ];
> then
> # No se indico ningun fichero, salimos
> exit;
> else
> DEBUG "File is $FILE"
> # TODO: Chequeamos si esta en ejecucion xwinwrap y lo paramos
> killall xwinwrap
> sleep 1
> # Reanudamos xwinwrap con el nuevo fichero
> DEBUG "Reanudando xwinwrap con $FILE..."
> xwinwrap -ni -o 1.0 -fs -s -st -sp -b -nf -- mplayer -loop 0 -wid WID -nosound -quiet "${FILE}" &
> fi
> }
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # Principal
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # REQUIERE: zenity, mplayer y xwinwrap
daniel@daniel-desktop:~$ # Puedes encontrar muchos videos en http://www.dreamscene.org/
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # Descarga de xwinwrap: http://tech.shantanugoel.com/projects/linux/shantz-xwinwrap
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ VERSION="1.1"
daniel@daniel-desktop:~$ ZENITY=$(which zenity)
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ # Textos
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ select_file="Select a file (.AVI, .WMV .MKV)."
daniel@daniel-desktop:~$ error_nofiles="No file selected."
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ case $LANG in
>
> es* )
> # Spanish
> select_file="Selecciona un archivo (.AVI, .WMV .MKV)."
> error_nofiles="Ningún archivo seleccionado."
> ;;
>
> esac
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ # Mostrar el cuadro de dialogo para seleccionar el fichero:
daniel@daniel-desktop:~$ FILE=`$ZENITY --file-selection --title="$select_file" --file-filter="videos | *.wmv *.avi *.mkv"`
Gtk-Message: (for origin information, set GTK_DEBUG): failed to retrieve property `GtkTreeView::odd-row-color' of type `GdkColor' from rc file value "((GString*) 0x1313b40)" of type `GString'
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ case $? in
>                 0)
>                        DEBUG "\"$FILE\" selected."
>                        #FICHERO=`echo $FILE | tail -1 | awk '{print $3}'` # necesario pq en mi caso añade progname= RGBA=
>                        XWINWRAP $FILE
>                        ;;
>
>                 1)
>                         echo "$error_nofiles"
>
Display all 106 possibilities? (y or n)
.adobe/
.apport-ignore.xml
.azureus/
Azureus Downloads/
.bash_history
.bash_logout
.bashrc
Billeder/
.cache/
.clamtk/
.compiz/
.config/
.dbus/
.dmrc
Dokumenter/
edid.bin
.esd_auth
.evolution/
examples.desktop
.fantasdic/
.fontconfig/
.furiusisomount/
g15daemon-1.9.5.3/
g15daemon_1.9.5.3-8.1ubuntu1.diff.gz
g15daemon_1.9.5.3-8.1ubuntu1.dsc
g15daemon_1.9.5.3.orig.tar.gz
.g15macro/
.Games/
.gconf/
.gconfd/
.gksu.lock
.gnome/
.gnome2/
.gnome2_private/
.gnupg/
GNUstep/
.gstreamer-0.10/
.gtk-bookmarks
.gvfs/
.hardinfo/
Hentede filer/
.Heroes of Newerth/
HoN/
.hplip/
.ICEauthority
.icedteaplugin/
.icons/
.installjammerinfo/
.kde/
.local/
.macromedia/
.mission-control/
.moovida/
.mozilla/
.mtab.fuseiso
Musik/
.nautilus/
.netx/
.ngdstudios/
.nvidia-settings-rc
Offentligt/
.openoffice.org/
.openvas/
.openvasrc
patch1.patch
patch2.patch
.phoronix-test-suite/
.pki/
.profile
.pulse/
.pulse-cookie
.python-eggs/
.recently-used.xbel
regnum/
RegnumOnlineInstall_64
RegnumOnlineInstall_64.bin
Savage2/
.savage2/
Savage2Install-2.1.0-x86_64.bin
.sequinrc
Shared Files/
Shutter.Island.MULTISUBS.PAL.DVDR-CONDITION/
Skabeloner/
Skrivebord/
.Skype/
Solomon.Kane.2009.NORDIC.PAL.DVDR-NLC/
.spil/
.ssh/
.sudo_as_admin_successful
.systemværktøjer/
THE_JONESES_iso/
.themes/
The Princess And The Frog 2009 DK NO EN/
.thumbnails/
.tsclient/
Ubuntu One/
Untitled Document 1
Videoklip/
.wine/
winetricks
Wrong.Side.Of.Town.2010.FESTiVAL.SE.NO.Fi.PAL.DVDR-TV2LAX9/
.xchat2/
.xine/
.xscreensaver-getimage.cache
.xsession-errors
.xsession-errors.old
>    killall xwinwrap
>
Display all 106 possibilities? (y or n)
.adobe/
.apport-ignore.xml
.azureus/
Azureus Downloads/
.bash_history
.bash_logout
.bashrc
Billeder/
.cache/
.clamtk/
.compiz/
.config/
.dbus/
.dmrc
Dokumenter/
edid.bin
.esd_auth
.evolution/
examples.desktop
.fantasdic/
.fontconfig/
.furiusisomount/
g15daemon-1.9.5.3/
g15daemon_1.9.5.3-8.1ubuntu1.diff.gz
g15daemon_1.9.5.3-8.1ubuntu1.dsc
g15daemon_1.9.5.3.orig.tar.gz
.g15macro/
.Games/
.gconf/
.gconfd/
.gksu.lock
.gnome/
.gnome2/
.gnome2_private/
.gnupg/
GNUstep/
.gstreamer-0.10/
.gtk-bookmarks
.gvfs/
.hardinfo/
Hentede filer/
.Heroes of Newerth/
HoN/
.hplip/
.ICEauthority
.icedteaplugin/
.icons/
.installjammerinfo/
.kde/
.local/
.macromedia/
.mission-control/
.moovida/
.mozilla/
.mtab.fuseiso
Musik/
.nautilus/
.netx/
.ngdstudios/
.nvidia-settings-rc
Offentligt/
.openoffice.org/
.openvas/
.openvasrc
patch1.patch
patch2.patch
.phoronix-test-suite/
.pki/
.profile
.pulse/
.pulse-cookie
.python-eggs/
.recently-used.xbel
regnum/
RegnumOnlineInstall_64
RegnumOnlineInstall_64.bin
Savage2/
.savage2/
Savage2Install-2.1.0-x86_64.bin
.sequinrc
Shared Files/
Shutter.Island.MULTISUBS.PAL.DVDR-CONDITION/
Skabeloner/
Skrivebord/
.Skype/
Solomon.Kane.2009.NORDIC.PAL.DVDR-NLC/
.spil/
.ssh/
.sudo_as_admin_successful
.systemværktøjer/
THE_JONESES_iso/
.themes/
The Princess And The Frog 2009 DK NO EN/
.thumbnails/
.tsclient/
Ubuntu One/
Untitled Document 1
Videoklip/
.wine/
winetricks
Wrong.Side.Of.Town.2010.FESTiVAL.SE.NO.Fi.PAL.DVDR-TV2LAX9/
.xchat2/
.xine/
.xscreensaver-getimage.cache
.xsession-errors
.xsession-errors.old
>           -1)
bash: syntax error near unexpected token `)'
daniel@daniel-desktop:~$                        echo "$error_nofiles";;
bash: syntax error near unexpected token `;;'
daniel@daniel-desktop:~$ esac
bash: syntax error near unexpected token `esac'
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$


det er det nederste der er output men har bare lagt hele scriptet ind for at vise det
soundpartner
Indlæg: 3461
Tilmeldt: 27. sep 2008, 23:51
IRC nickname: sound
Geografisk sted: København

Re: dreamscene

Indlæg af soundpartner »

dgaa1991 skrev:Men har lige tjekket og kan faktisk kun vælge video filer ?

får dette output fra terminalen når jeg vælger avi fil der står jeg burde kunne vælge

Kode: Vælg alt

daniel@daniel-desktop:~$ #!/bin/bash
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$ # Imprime un mensaje de trazas
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$ function DEBUG
> {
>        HOUR=`date +"%m-%d-%y %H:%M"`
>        TYPE="INFO"
>        printf "%s %s : %s \n" "$HOUR" "$TYPE" "${1}"
> }
daniel@daniel-desktop:~$ #------------------------------------------------------daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #---------------------------------------------------------------
daniel@daniel-desktop:~$ # Reiniciar Xwinwrap con el fichero que se pasa como parametro
daniel@daniel-desktop:~$ #---------------------------------------------------------------
daniel@daniel-desktop:~$ function XWINWRAP
> {
> FICHERO=$1
> DEBUG "Fichero es [$FILE]"
>
> # Chequear que el fichero no este vacio
> if [ -z $FICHERO ];
> then
> # No se indico ningun fichero, salimos
> exit;
> else
> DEBUG "File is $FILE"
> # TODO: Chequeamos si esta en ejecucion xwinwrap y lo paramos
> killall xwinwrap
> sleep 1
> # Reanudamos xwinwrap con el nuevo fichero
> DEBUG "Reanudando xwinwrap con $FILE..."
> xwinwrap -ni -o 1.0 -fs -s -st -sp -b -nf -- mplayer -loop 0 -wid WID -nosound -quiet "${FILE}" &
> fi
> }
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # Principal
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # REQUIERE: zenity, mplayer y xwinwrap
daniel@daniel-desktop:~$ # Puedes encontrar muchos videos en http://www.dreamscene.org/
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$ # Descarga de xwinwrap: http://tech.shantanugoel.com/projects/linux/shantz-xwinwrap
daniel@daniel-desktop:~$ #----------------------------------------------------------------
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ VERSION="1.1"
daniel@daniel-desktop:~$ ZENITY=$(which zenity)
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ # Textos
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ select_file="Select a file (.AVI, .WMV .MKV)."
daniel@daniel-desktop:~$ error_nofiles="No file selected."
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ case $LANG in
>
> es* )
> # Spanish
> select_file="Selecciona un archivo (.AVI, .WMV .MKV)."
> error_nofiles="Ningún archivo seleccionado."
> ;;
>
> esac
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ # Mostrar el cuadro de dialogo para seleccionar el fichero:
daniel@daniel-desktop:~$ FILE=`$ZENITY --file-selection --title="$select_file" --file-filter="videos | *.wmv *.avi *.mkv"`
Gtk-Message: (for origin information, set GTK_DEBUG): failed to retrieve property `GtkTreeView::odd-row-color' of type `GdkColor' from rc file value "((GString*) 0x1313b40)" of type `GString'
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$ case $? in
>                 0)
>                        DEBUG "\"$FILE\" selected."
>                        #FICHERO=`echo $FILE | tail -1 | awk '{print $3}'` # necesario pq en mi caso añade progname= RGBA=
>                        XWINWRAP $FILE
>                        ;;
>
>                 1)
>                         echo "$error_nofiles"
>
Display all 106 possibilities? (y or n)
.adobe/
.apport-ignore.xml
.azureus/
Azureus Downloads/
.bash_history
.bash_logout
.bashrc
Billeder/
.cache/
.clamtk/
.compiz/
.config/
.dbus/
.dmrc
Dokumenter/
edid.bin
.esd_auth
.evolution/
examples.desktop
.fantasdic/
.fontconfig/
.furiusisomount/
g15daemon-1.9.5.3/
g15daemon_1.9.5.3-8.1ubuntu1.diff.gz
g15daemon_1.9.5.3-8.1ubuntu1.dsc
g15daemon_1.9.5.3.orig.tar.gz
.g15macro/
.Games/
.gconf/
.gconfd/
.gksu.lock
.gnome/
.gnome2/
.gnome2_private/
.gnupg/
GNUstep/
.gstreamer-0.10/
.gtk-bookmarks
.gvfs/
.hardinfo/
Hentede filer/
.Heroes of Newerth/
HoN/
.hplip/
.ICEauthority
.icedteaplugin/
.icons/
.installjammerinfo/
.kde/
.local/
.macromedia/
.mission-control/
.moovida/
.mozilla/
.mtab.fuseiso
Musik/
.nautilus/
.netx/
.ngdstudios/
.nvidia-settings-rc
Offentligt/
.openoffice.org/
.openvas/
.openvasrc
patch1.patch
patch2.patch
.phoronix-test-suite/
.pki/
.profile
.pulse/
.pulse-cookie
.python-eggs/
.recently-used.xbel
regnum/
RegnumOnlineInstall_64
RegnumOnlineInstall_64.bin
Savage2/
.savage2/
Savage2Install-2.1.0-x86_64.bin
.sequinrc
Shared Files/
Shutter.Island.MULTISUBS.PAL.DVDR-CONDITION/
Skabeloner/
Skrivebord/
.Skype/
Solomon.Kane.2009.NORDIC.PAL.DVDR-NLC/
.spil/
.ssh/
.sudo_as_admin_successful
.systemværktøjer/
THE_JONESES_iso/
.themes/
The Princess And The Frog 2009 DK NO EN/
.thumbnails/
.tsclient/
Ubuntu One/
Untitled Document 1
Videoklip/
.wine/
winetricks
Wrong.Side.Of.Town.2010.FESTiVAL.SE.NO.Fi.PAL.DVDR-TV2LAX9/
.xchat2/
.xine/
.xscreensaver-getimage.cache
.xsession-errors
.xsession-errors.old
>    killall xwinwrap
>
Display all 106 possibilities? (y or n)
.adobe/
.apport-ignore.xml
.azureus/
Azureus Downloads/
.bash_history
.bash_logout
.bashrc
Billeder/
.cache/
.clamtk/
.compiz/
.config/
.dbus/
.dmrc
Dokumenter/
edid.bin
.esd_auth
.evolution/
examples.desktop
.fantasdic/
.fontconfig/
.furiusisomount/
g15daemon-1.9.5.3/
g15daemon_1.9.5.3-8.1ubuntu1.diff.gz
g15daemon_1.9.5.3-8.1ubuntu1.dsc
g15daemon_1.9.5.3.orig.tar.gz
.g15macro/
.Games/
.gconf/
.gconfd/
.gksu.lock
.gnome/
.gnome2/
.gnome2_private/
.gnupg/
GNUstep/
.gstreamer-0.10/
.gtk-bookmarks
.gvfs/
.hardinfo/
Hentede filer/
.Heroes of Newerth/
HoN/
.hplip/
.ICEauthority
.icedteaplugin/
.icons/
.installjammerinfo/
.kde/
.local/
.macromedia/
.mission-control/
.moovida/
.mozilla/
.mtab.fuseiso
Musik/
.nautilus/
.netx/
.ngdstudios/
.nvidia-settings-rc
Offentligt/
.openoffice.org/
.openvas/
.openvasrc
patch1.patch
patch2.patch
.phoronix-test-suite/
.pki/
.profile
.pulse/
.pulse-cookie
.python-eggs/
.recently-used.xbel
regnum/
RegnumOnlineInstall_64
RegnumOnlineInstall_64.bin
Savage2/
.savage2/
Savage2Install-2.1.0-x86_64.bin
.sequinrc
Shared Files/
Shutter.Island.MULTISUBS.PAL.DVDR-CONDITION/
Skabeloner/
Skrivebord/
.Skype/
Solomon.Kane.2009.NORDIC.PAL.DVDR-NLC/
.spil/
.ssh/
.sudo_as_admin_successful
.systemværktøjer/
THE_JONESES_iso/
.themes/
The Princess And The Frog 2009 DK NO EN/
.thumbnails/
.tsclient/
Ubuntu One/
Untitled Document 1
Videoklip/
.wine/
winetricks
Wrong.Side.Of.Town.2010.FESTiVAL.SE.NO.Fi.PAL.DVDR-TV2LAX9/
.xchat2/
.xine/
.xscreensaver-getimage.cache
.xsession-errors
.xsession-errors.old
>           -1)
bash: syntax error near unexpected token `)'
daniel@daniel-desktop:~$                        echo "$error_nofiles";;
bash: syntax error near unexpected token `;;'
daniel@daniel-desktop:~$ esac
bash: syntax error near unexpected token `esac'
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$
daniel@daniel-desktop:~$


det er det nederste der er output men har bare lagt hele scriptet ind for at vise det

der er noget helt galt i den måde du afvikler det script på... har du downloadet scriptet og eksekveret det, eller hvordan gør du?
Selvudnævnt guru når det drejer sig om mobilt bredbånd

Webmaster og stifter af:
Billede
Hvor du finder scripts til en hver situation

Billede
AJenbo
Admin
Indlæg: 20885
Tilmeldt: 15. nov 2009, 15:04
IRC nickname: AJenbo
Geografisk sted: Vanløse, København

Re: dreamscene

Indlæg af AJenbo »

Det ser ud til at han åbner den og kopiere indholdet over i terminalen.

Bemærk at hvis et script bliver vist direkte i browseren skal du istedet højer klikke på linket til scriptet og vælge "Gem link som..."
http://gnome-look.org/CONTENT/content-f ... 0Wallpaper
(her er et link til det script du prøver at køre)

Der efter skal du højer klikke på scriptet, vælige egenskaber, rettigheder og så sætte et hak ud for "Tillad kørsel af filen som et program"
Der efter åbner du terminalen, og bruger cd kommandone til at navigere til den mappe hvor scriptet ligger. og så skriver du blot

Kode: Vælg alt

./scriptetsnavn