ฉันอาจยัง "ทำให้ดีขึ้นเล็กน้อย" แต่ด้านล่างนี้เป็นเวอร์ชั่นที่แก้ไขแล้วของลิงค์ที่เชื่อมโยง
อะไรคือความแตกต่าง?
ฉันเพิ่มรายการที่กำหนดไว้ล่วงหน้าในส่วนหัว:
specs = ["folder.png", "cover.png", "monkey.png"]
และฉันแทนที่:
try:
first = min(p for p in os.listdir(folder)
if p.split(".")[-1].lower() in ext)
except ValueError:
pass
โดย:
fls = os.listdir(folder)
try:
first = [p for p in fls if p in specs]
first = first[0] if first else min(
p for p in fls if p.split(".")[-1].lower() in ext
)
except ValueError:
pass
เพื่อให้สคริปต์พยายามค้นหา (ไฟล์) ที่ตรงกันในรายการเป็นครั้งแรกspecs
(เท่านั้น) หากไม่มีมันจะข้ามไปเพื่อค้นหาส่วนขยายที่ตรงกันและทำการหลอกลวงหากพบรูปภาพที่เหมาะสม
1. รุ่นพื้นฐาน
เพื่อใช้กับไดเรกทอรีเป้าหมายเป็นอาร์กิวเมนต์:
#!/usr/bin/env python3
import subprocess
import os
import sys
# --- set the list of valid extensions below (lowercase)
# --- use quotes, *don't* include the dot!
ext = ["jpg", "jpeg", "png", "gif", "icns", "ico"]
# --- set the list of preferred filenames
# --- use quotes
specs = ["folder.png", "cover.png", "monkey.png"]
# ---
# retrieve the path of the targeted folder
dr = sys.argv[1]
for root, dirs, files in os.walk(dr):
for directory in dirs:
folder = os.path.join(root, directory)
try:
fls = os.listdir(folder)
first = [p for p in fls if p in specs]
first = first[0] if first else min(
p for p in fls if p.split(".")[-1].lower() in ext
)
except (ValueError, PermissionError):
pass
else:
subprocess.Popen([
"gvfs-set-attribute", "-t", "string",
os.path.abspath(folder), "metadata::custom-icon",
"file://"+os.path.abspath(os.path.join(folder, first))
])
วิธีใช้
- คัดลอกสคริปต์ลงในไฟล์เปล่าบันทึกเป็น
change_icon.py
- ในส่วนหัวของสคริปต์ให้แก้ไขหากคุณต้องการรายการส่วนขยายที่จะใช้เป็นรูปภาพไอคอนที่ถูกต้อง ตั้งค่ารายการชื่อไฟล์ที่ต้องการ
เรียกใช้ด้วยไดเรกทอรีเป้าหมายเป็นอาร์กิวเมนต์:
python3 /path/to/change_icon.py <targeted_directory>
แค่นั้นแหละ!
2. ตัวเลือกคลิกขวาที่แก้ไขเพื่อใช้เป็นสคริปต์ nautilus (คลิกขวา)
#!/usr/bin/env python3
import subprocess
import os
# --- set the list of valid extensions below (lowercase)
# --- use quotes, *don't* include the dot!
ext = ["jpg", "jpeg", "png", "gif", "icns", "ico"]
# --- set the list of preferred filenames
# --- use quotes
specs = ["folder.png", "cover.png", "aap.png"]
# ---
def fix(path):
for c in [("%23", "#"), ("%5D", "]"), ("%5E", "^"),
("file://", ""), ("%20", " ")]:
path = path.replace(c[0], c[1])
return path
# retrieve the path of the targeted folder
current = fix(os.getenv("NAUTILUS_SCRIPT_CURRENT_URI"))
dr = os.path.realpath(current)
for root, dirs, files in os.walk(dr):
for directory in dirs:
folder = os.path.join(root, directory)
try:
fls = os.listdir(folder)
first = [p for p in fls if p in specs]
first = first[0] if first else min(
p for p in fls if p.split(".")[-1].lower() in ext
)
except (ValueError, PermissionError):
pass
else:
subprocess.Popen([
"gvfs-set-attribute", "-t", "string",
os.path.abspath(folder), "metadata::custom-icon",
"file://"+os.path.abspath(os.path.join(folder, first))
])
ใช้
สร้างถ้ามันยังไม่มีไดเรกทอรี
~/.local/share/nautilus/scripts
คัดลอกสคริปต์ไปยังไฟล์ที่ว่างเปล่าบันทึก~/.local/share/nautilus/scripts
เป็นset_foldericons
(ไม่มีส่วนขยาย!) และทำให้สามารถเรียกใช้งานได้
- ในส่วนหัวของสคริปต์ให้แก้ไขหากคุณต้องการรายการส่วนขยายที่จะใช้เป็นรูปภาพไอคอนที่ถูกต้อง ตั้งค่ารายการชื่อไฟล์ที่ต้องการ
- ออกจากระบบและกลับมาใหม่และใช้งานได้
หากด้วยเหตุผลบางประการที่คุณต้องการรีเซ็ตไอคอนภายในโฟลเดอร์เป็นไอคอนเริ่มต้นให้ใช้สคริปต์ที่นี่