Làm cách nào để đặt đệ quy chế độ xem Nautilus cho cây thư mục?


11

Nautilus 3.4 cho phép bạn đặt chế độ xem mặc định . Nó cũng ghi nhớ cài đặt chế độ xem tùy chỉnh của bạn cho các thư mục cụ thể.

Những gì tôi muốn có thể làm là xác định chế độ xem cho tất cả các thư mục và thư mục con trong một cây thư mục cụ thể. Đi qua từng thư mục để thay đổi chế độ xem theo cách thủ công sẽ mất quá nhiều thời gian.

Có cách nào tôi có thể làm điều này? Có lẽ thông qua một tập lệnh Nautilus sửa đổi siêu dữ liệu gvfs ?

Câu trả lời:


10

Tổng quat

Để tìm siêu dữ liệu cho một thư mục, bạn cần sử dụng lệnh gvfs-info foldername

ví dụ gvfs-info /home/homefolder/Desktop

Trong danh sách trả về, bạn sẽ thấy thuộc tính metadata::nautilus-default-viewmô tả chế độ xem mặc định.

Bạn có thể thay đổi thuộc tính này bằng lệnh gvfs-set_attribute foldername attribute newvalue

ví dụ:

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

Kịch bản

Bây giờ tôi phải thừa nhận các kỹ năng viết kịch bản bash của mình không phải là tốt nhất, nhưng ở đây bạn đi - kịch bản của tôi dưới đây sẽ cho phép bạn đặt lại tất cả các chế độ xem bên dưới tên thư mục đã cho.

Cú pháp:

folderreset [OPTION] full_base_directory_name

ví dụ: điều này sẽ thiết lập lại để xem nhỏ gọn tất cả các thư mục bên dưới /home/homefolder/Desktop

folderreset -c /home/homefolder/Desktop

sử dụng folderreset -hcho cú pháp.

Hãy tinker và sửa đổi.


#!/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 bao bọc

Dưới đây là tập lệnh bao bọc GUI đơn giản có thể được sử dụng để đặt chế độ xem ngay từ menu ngữ cảnh của tập lệnh 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"

Kịch bản phụ thuộc vào ngã ba zatha yadcó thể được cài đặt từ PPA này . Đảm bảo chỉ FOLDERRESET=đến vị trí của folderresettập lệnh trên hệ thống của bạn.


Tôi sử dụng Nautilus 3.6.3 (Ubuntu 13.04) và không có thuộc tính nào như vậy metadata::nautilus-default-view:(
Radu Rădeanu

1
@ RaduRădeanu - vâng Gnome-Devs xé một toàn bộ rất nhiều thứ ra khỏi nautilus trong v3.6: /
fossfreedom
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.