मैं अभी भी "इसे थोड़ा सुरुचिपूर्ण" कर सकता हूं, लेकिन नीचे दिए गए लिंक के संपादित संस्करण हैं।
अंतर क्या है?
मैंने प्रधान अनुभाग में एक पूर्वनिर्धारित सूची जोड़ी:
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. संपादित राइट-क्लिक विकल्प, एक नॉटिलस (राइट-क्लिक) स्क्रिप्ट के रूप में उपयोग करने के लिए
#!/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
और इसे निष्पादन योग्य बनाएं ।
- स्क्रिप्ट के प्रमुख में, संपादित करें, यदि आप चाहें, तो मान्य आइकन छवियों के रूप में उपयोग की जाने वाली एक्सटेंशन की सूची। फ़ाइल नाम की पसंदीदा सूची भी सेट करें।
- लॉग आउट करें और वापस अंदर जाएं, और यह काम करता है।
यदि, किसी कारण से आप किसी फ़ोल्डर के अंदर के आइकन को अपने डिफ़ॉल्ट आइकन पर रीसेट करना चाहते हैं, तो यहां स्क्रिप्ट का उपयोग करें