ディレクトリツリーのNautilusビューモードを再帰的に設定するにはどうすればよいですか?


11

Nautilus 3.4では、デフォルトの表示モードを設定できます。また、特定のフォルダーのカスタムビュー設定も記憶します。

私ができることは、特定のディレクトリツリー内のすべてのディレクトリとサブディレクトリの表示モードを定義することです。表示モードを手動で変更するためにすべてのフォルダーを移動すると、時間がかかりすぎます。

これを行う方法はありますか?たぶんgvfs-metadataを変更するNautilusスクリプトを介して?

回答:


10

概要

フォルダーのメタデータを見つけるには、コマンドを使用する必要があります gvfs-info foldername

例えば gvfs-info /home/homefolder/Desktop

返されるリストにはmetadata::nautilus-default-view、デフォルトビューを説明する属性が表示されます。

コマンドを使用してこの属性を変更できます gvfs-set_attribute foldername attribute newvalue

例えば:

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

脚本

これで、bashスクリプトスキルが最高ではないことを認めざるを得ませんが、ここに進みます。下のスクリプトを使用すると、指定されたフォルダー名の下にあるすべてのビューをリセットできます。

構文:

folderreset [OPTION] full_base_directory_name

たとえば、これは以下のすべてのフォルダーをコンパクトビューにリセットします /home/homefolder/Desktop

folderreset -c /home/homefolder/Desktop

folderreset -h構文に使用します。

自由に修正して修正してください。


#!/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

GUIラッパー

Nautilusスクリプトのコンテキストメニューから表示モードを設定するために使用できるシンプルなGUIラッパースクリプトを次に示します。

#!/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"

スクリプトはyadこのPPAからインストールできるzenityフォークに依存しています。システム上FOLDERRESET=folderresetスクリプトの場所を指すようにしてください。


私はNautilus 3.6.3(Ubuntu 13.04)を使用しており、そのような属性はありません:metadata::nautilus-default-view
ラドゥラデアヌ

1
@RaduRădeanu -うんGnomeの-のDevはv3.6の中オウムガイのうち、ものの全体の多くをリッピング:/
fossfreedom
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.