¿Cómo configuro recursivamente el modo de vista Nautilus para un árbol de directorios?

11

Nautilus 3.4 le permite establecer un modo de vista predeterminado . También recuerda su configuración de vista personalizada para carpetas específicas.

Lo que me encantaría poder hacer es definir un modo de vista para todos los directorios y subdirectorios en un árbol de directorios específico. Revisar todas y cada una de las carpetas para cambiar el modo de visualización manualmente llevaría demasiado tiempo.

¿Hay alguna manera de que pueda hacer esto? ¿Tal vez a través de un script de Nautilus que modifica gvfs-metadata ?

Glutanimato
fuente

Respuestas:

10

Visión general

Para encontrar los metadatos de una carpeta, debe usar el comando gvfs-info foldername

por ejemplo gvfs-info /home/homefolder/Desktop

En la lista que regresa, verá el atributo metadata::nautilus-default-viewque describe la vista predeterminada.

Puedes cambiar este atributo usando el comando gvfs-set_attribute foldername attribute newvalue

por ejemplo:

gvfs-set-attribute /home/homefolder/Desktop "metadata::nautilus-default-view" "OAFIID:Nautilus_File_Manager_Icon_View"

Guión

Ahora tengo que admitir que mis habilidades de scripting de bash no son las mejores, pero aquí tienes: mi script a continuación te permitirá restablecer todas las vistas debajo del nombre de carpeta dado.

Sintaxis:

folderreset [OPTION] full_base_directory_name

por ejemplo, esto se restablecerá a la vista compacta de todas las carpetas a continuación /home/homefolder/Desktop

folderreset -c /home/homefolder/Desktop

utilizar folderreset -hpara la sintaxis.

Siéntase libre de jugar y enmendar.


#!/bin/bash

#Licensed under the standard MIT license:
#Copyright 2013 fossfreedom.
#Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE

################################ USAGE #######################################

usage=$(
cat <<EOF
Usage:
$0 [OPTION] base_full_directory_name 

 -h, --help     display this help
 -l, --list     set to list view
 -i, --icon     set to icon view
 -c, --compact  set to compact view

for example

$0 -i /home/myhome/Desktop

This will reset all directories BELOW /home/myhome/Desktop

EOF
)

########################### OPTIONS PARSING #################################

#parse options
TMP=`getopt --name=$0 -a --longoptions=list,icon,compact,help -o l,i,c,h -- $@`

if [[ $? == 1 ]]
then
    echo
    echo "$usage"
    exit
fi

eval set -- $TMP

#default values
META=OAFIID:Nautilus_File_Manager_List_View

until [[ $1 == -- ]]; do
    case $1 in
        -l|--list)
            META=OAFIID:Nautilus_File_Manager_List_View
            ;;
        -i|--icon)
            META=OAFIID:Nautilus_File_Manager_Icon_View
            ;;
        -c|--compact)
            META=OAFIID:Nautilus_File_Manager_Compact_View
            ;;
        -h|--help)
            echo "$usage"
            exit
            ;;
    esac
    shift # move the arg list to the next option or '--'
done
shift # remove the '--', now $1 positioned at first argument if any

if [ ! -d "$1" ]
then
        echo "Directory does not exist!"
        exit 4
fi

find "$1"/* -type d | while read "D"; do gvfs-set-attribute "$D" "metadata::nautilus-default-view" "$META" &>/dev/null; done

Contenedor GUI

Aquí hay una secuencia de comandos de contenedor GUI simple que se puede utilizar para establecer el modo de vista directamente desde el menú contextual de secuencias de comandos Nautilus:

#!/bin/bash

# Licensed under the standard MIT license
# (c) 2013 Glutanimate (http://askubuntu.com/users/81372/)

FOLDERRESET="./folderreset.sh"
WMICON=nautilus
THUMBICON=nautilus
WMCLASS="folderviewsetter"
TITLE="Set folder view"

DIR="$1"

checkifdir(){
if [[ -d "$DIR" ]] 
  then
      echo "$DIR is a directory"
  else
      yad --title="$TITLE" \
          --image=dialog-error \
          --window-icon=dialog-error \
          --class="$WMCLASS" \
          --text="Error: no directory selected." \
          --button="Ok":0
      exit
fi
}

setviewtype (){
VIEWTYPE=$(yad \
    --width 300 --entry --title "$TITLE" \
    --image=nautilus \
    --button="ok:2" --button="cancel" \
    --text "Select view mode:" \
    --entry-text \
    "list" "icon" "compact")

 if [ -z "$VIEWTYPE" ]
   then
       exit
 fi

}  


checkifdir
setviewtype

"$FOLDERRESET" --"$VIEWTYPE" "$DIR"

La secuencia de comandos depende de la bifurcación zenity yadque se puede instalar desde este PPA . Asegúrese de señalar FOLDERRESET=la ubicación del folderresetscript en su sistema.

fossfreedom
fuente
Uso Nautilus 3.6.3 (Ubuntu 13.04) y no existe tal atributo metadata::nautilus-default-view:(
Radu Rădeanu
1
@ RaduRădeanu - sí, Gnome-Devs arrancó muchas cosas del nautilus en v3.6: /
fossfreedom