Como defino outro diretório de pesquisa para papéis de parede?

11

Eu mantenho todos os meus documentos em uma unidade separada da minha instalação do Ubuntu, e eu tenho uma pasta cheia de papéis de parede legais na unidade. Como posso fazer o ubuntu procurar automaticamente este diretório para que os papéis de parede apareçam na caixa de diálogo do trocador de papel de parede, clicando com o botão direito do mouse na área de trabalho e selecionando Alterar papel de parede da área de trabalho ?

Editar: Eu tentei colocar um link simbólico na pasta / usr / share / backgrounds na outra unidade e isso não funcionou.

    
por Slipstream 18.04.2011 / 15:46

5 respostas

9

* EDIT - Segunda tentativa - e desculpas imediatamente por todo o trabalho do terminal - esperamos que seja apenas copiar e colar as entradas destacadas *

a pasta que contém os detalhes dos papéis de parede do gnome é chamada /usr/share/gnome-background-properties/ubuntu-wallpapers.xml

Você pode editar esse arquivo para ter subseções de papel de parede ... / papel de parede apontando para sua nova pasta & amp; arquivos de papel de parede

Abaixo está um script corrigido deste fórum entrada que irá gerar automaticamente o arquivo ubuntu-wallpapers.xml para uma pasta contendo arquivos .png e .jpg.

copie e cole o conteúdo em um novo arquivo de texto chamado "ubuntu-wallpaper-generator"

Em seguida, execute o arquivo com a sintaxe

sh ubuntu-wallpaper-generator <path to new wallpaper folder>

Isso gerará um arquivo chamado ubuntu-wallpapers.xml na mesma pasta em que você está executando este script.

Faça backup com segurança do arquivo xml atual, por exemplo,

sudo cp /usr/share/gnome-background-properties/ubuntu-wallpapers.xml /usr/share/gnome-background-properties/ubuntu-wallpapers.xml.backup

a cópia no arquivo recém-gerado

sudo cp ubuntu-wallpapers.xml /usr/share/gnome-background-properties/ubuntu-wallpapers.xml

Aqui está o arquivo de script ao qual me referi:

#!/bin/bash
#
# This script will take all wallpapers in a given folder and
# make them available as "default" background in the "Change Background" gui
# frontend in Ubuntu.
#
################################################################################

#CONFIG_DIR="/usr/share/gnome-background-properties"
CONFIG_DIR="./"
XML_FILE="$CONFIG_DIR/ubuntu-wallpapers.xml"

if [ $# -ne 1 ]; then
   echo "*** syntax ubuntu-wallpaper-generator <path to wallpaper folder> ***"
   echo "*** for example ***"
   echo "*** ubuntu-wallpaper-generator /usr/share/backgrounds ***"
   exit 1
else
   WALLPAPER_DIR=$1
   echo "*** parameters passed: $1 ***"
fi

#### First check if we have write permissions to the share dirctory. ####
touch $CONFIG_DIR/testfile >/dev/null 2>/dev/null
if [ $? -ne 0 ]; then
   echo "**** No permissions to the desktop share directory. ****"
   echo "**** $CONFIG_DIR ****"
   echo "**** Procedure Terminated. ****"
   exit 1
else
   rm $CONFIG_DIR/testfile 2>/dev/null
fi

#### Show the script description message. ###
cat <<EOF

################################################################################
     This script makes all pictures in the $WALLPAPER_DIR
     directory available to all users defined on this system as their
     system-wide GNOME wallpapers.
################################################################################
EOF

#### Fail if the wallpaper directory does not exist. ####
if [ ! -d $WALLPAPER_DIR ]; then
    echo "**** The wallpaper directory \"$WALLPAPER_DIR\" does not exist. ****"
    echo "**** Precedure Terminated. ****"
    exit 1
fi

#### Count the number of jpg/jpeg/png images. ####
numfiles='ls -1 $WALLPAPER_DIR/*.jpg WALLPAPER_DIR/*.jpeg WALLPAPER_DIR/*.png 2>/dev/null | wc -l'

#### If there are no image files there then exit. ####
if [ $numfiles -eq 0 ]; then
    echo "**** The wallpaper directory \"$WALLPAPER_DIR\" has no images. ****"
    echo "**** Precedure Terminated. ****"
    exit 1
fi

#### Now we create the XML file containing the images for backgrounds. ####
#### Start by creating the header in the XML file. ####
cat <<EOF > $XML_FILE
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
<wallpapers>
EOF

#### Add each file to the XML file. ####
#### Doing it this way makes sure files with spaces in their names are ####
#### handled properly.   (ls .... | while read fname; do)              ####
ls -1 $WALLPAPER_DIR/*.jpg $WALLPAPER_DIR/*.png $WALLPAPER_DIR/*.jpeg 2> /dev/null |
while read image_name; do
   echo "   Adding: 'basename "$image_name"'."
   fname='basename "$image_name"'
   fname="${fname%%\.*}"
   echo "  <wallpaper>"                          >> $XML_FILE
   echo "    <name>$fname</name>"                >> $XML_FILE
   echo "    <filename>$image_name</filename>"   >> $XML_FILE
   echo "    <options>stretched</options>"       >> $XML_FILE
   echo "    <pcolor>#c58357</pcolor>"           >> $XML_FILE
   echo "    <scolor>#c58357</scolor>"           >> $XML_FILE
   echo "    <shade_type>solid</shade_type>"     >> $XML_FILE
   echo "  </wallpaper>"                         >> $XML_FILE
done

#### Create the footer for the XML file. ####
echo "</wallpapers>"                             >> $XML_FILE

cat <<EOF
################################################################################
     You're almost done. copy the generated file ubuntu-wallpapers.xml to the
     folder /usr/shared/gnome-background-properties
     REMEMBER to backup the current ubuntu-wallpaper.xml in that folder first!
################################################################################

EOF
    
por fossfreedom 26.04.2011 / 22:26
1

Com o CreBS (Criar apresentação de slides de plano de fundo), você pode criar os arquivos XML para apresentações de slides de papel de parede - os caminhos completos para as imagens são armazenados no XML, sem mover os arquivos necessários.

link

link

    
por type 27.04.2011 / 18:00
1

heres uma atualização:

    #!/bin/bash

    ################################################################################
    # This script will take all wallpapers in a given folder and
    # make them available as options in the "change desktop background" OR "system->pref->apperances"
    # dialog boxes.
    # for ubuntu or debian
    #    wallpapers are in /usr/share/pixmaps/backgrounds/gnome OR /usr/share/backgrounds
    #    config file(s) for the dialog are in /usr/share/gnome-background-properties
    # --that will make them system wide. 
    #
    #ToDo:
    #  paths with spaces.
    ################################################################################

    # put the output in the same directory as this script
    OutDirectory="$( cd "$( dirname "$0" )" && pwd )"
    OutFile="$OutDirectory/gnome-added.xml"

    # options
    options="zoom"      #zoom is best but stretch,center,scale,tile,span
    shade_type="solid"  #horizontal-gradient, vertical-gradient    
    pcolor="#000000"
    scolor="#000000"


    if [ $# -ne 1 ]; then
       echo "*** need path to directory containing files to include."
       echo "*** for example:     /usr/share/backgrounds"
       exit 1
    else
       ScanDirectory=$1
    fi

    #------need to strip and trailing "/" or this writes incorrect file names.
    # not if [ "$lastchr" -eq "/" ]
    # lastchr='expr substr $ScanDirectory ${#ScanDirectory} 1'  #--OR:
    lastchr=${ScanDirectory#${ScanDirectory%?}}
    if [ "${lastchr}" = "/" ]; then
       ScanDirectory=${ScanDirectory%?}
    fi
    #--operating in same directory as the script? set full path for the xml file
    if [ ${#ScanDirectory} -le 1 ]; then
            ScanDirectory=$OutDirectory
    fi

    # ---does directory exist
    if [ ! -d $ScanDirectory ]; then
        echo "**** The wallpaper directory \"$ScanDirectory\" does not exist. ****"
        echo "**** Precedure Terminated. ****"
        exit 1
    fi
    # ----can we write to it?
    # touch $OutDirectory/testfile >/dev/null 2>/dev/null
    # if [ $? -ne 0 ]; then
    if [ ! -w $OutDirectory ]; then
       echo "**** No permissions to the desktop share directory. ****"
       echo "**** $OutDirectory ****"
       echo "**** Procedure Terminated. ****"
       exit 1
    fi


    #### Count the number of jpg/jpeg/png/svg [tif(f)] images. ####
    numfiles='ls -1 $ScanDirectory/*.jpg ScanDirectory/*.jpeg ScanDirectory/*.png ScanDirectory/*.svg 2>/dev/null | wc -l'

    #### If there are no image files there then exit. ####
    if [ $numfiles -eq 0 ]; then
        echo "**** The wallpaper directory \"$ScanDirectory\" has no images. ****"
        echo "**** Precedure Terminated. ****"
        exit 1
    fi

    #### Now we create the XML file containing the images for backgrounds. ####
    #### Start by creating the header in the XML file. ####
    cat <<EOF > $OutFile
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
    <wallpapers>
    EOF

    #### Add each file to the XML file. ####
    #### Doing it this way makes sure files with spaces in their names are ####
    #### handled properly.   (ls .... | while read fname; do)              ####
    ls -1 $ScanDirectory/*.jpg $ScanDirectory/*.png $ScanDirectory/*.jpeg $ScanDirectory/*.svg 2> /dev/null |
    while read image_name; do
       fname='basename "$image_name"'
       echo "   Adding: $fname."

       echo "  <wallpaper deleted=\"false\">"          >> $OutFile
       echo "    <name>$fname</name>"                >> $OutFile
       echo "    <filename>$image_name</filename>"   >> $OutFile
       echo "      <options>$options</options>"       >> $OutFile
       echo "      <pcolor>$pcolor</pcolor>"           >> $OutFile
       echo "      <scolor>$scolor</scolor>"           >> $OutFile
       echo "      <shade_type>$shade_type</shade_type>"     >> $OutFile
       echo "  </wallpaper>"                         >> $OutFile
    done

    #### Create the footer for the XML file. ####
    echo "</wallpapers>"                             >> $OutFile
    
por Alan Harcanon 12.08.2011 / 14:58
1

Eu enfrentei o mesmo problema e escrevi um script python para editar um arquivo xml personalizado que pode ser colocado em /usr/share/gnome-background-properties/my-backgrounds.xml . Está no GitHub .

Exemplo de uso:

Para adicionar space_galaxy.jpeg e fuzz_dog.png ao arquivo xml:

python my-backgrounds.py -a space_galaxy.jpeg fuzzy_dog.png -n "Cool Galaxy" "Cute Dog"

Observe que o arquivo xml padrão está em /usr/share/gnome-background-properties/my-backgrounds.xml (é onde o GNOME assiste para os xml's). Para especificar um arquivo xml alternativo, use a opção -x :

python my-backgrounds.py -a space_galaxy.jpeg -x ~/my-backgrounds.xml

Para remover entradas do arquivo xml, use a opção -r :

python my-backgrounds.py -r "Cool Galaxy" fuzzy_dog.png

Isso funciona com o GNOME 3.6 e o Python 3.3

    
por jameh 11.04.2013 / 00:01
0

É assim que eu faço.

  1. Clique com o botão direito do mouse na área de trabalho > Mude o fundo.

  2. Clique em Adicionar na guia Plano de fundo.

  3. para a pasta e selecione todos os papéis de parede, clicando em um, e pressionando Ctrl + A .

Eles devem agora ser exibidos no seletor. Eu também estou tentando encontrar um pequeno aplicativo que eu usei, para mudar automaticamente o papel de parede. Vou postar quando eu encontrar.

Eu encontrei um chamado Wally, e é altamente recomendado, mas eu lembro que eu não tinha usado esse. De qualquer forma, você pode instalá-lo digitando

sudo apt-get install wally

em um terminal.

Para mostrar os papéis de parede no seletor, sem precisar atualizar manualmente a pasta, você terá que adicioná-los a /usr/share/backgrounds .

Também consegui listar os papéis de parede no seletor, criando um link simbólico na pasta.

$ cd /usr/share/backgrounds
$ ln -s /path/to/wallpapers

Isso pode ser útil, porque nem sempre é conveniente adicionar papéis de parede a uma pasta de propriedade de raiz toda vez.

    
por theTuxRacer 18.04.2011 / 16:28