क्या उबंटू एकता के लिए "स्थान" मेनू है?


11

मैं जानना चाहता हूं कि क्या उबंटू के ऊपरी मेनू में "स्थान" टैब डालना संभव है, जैसे कि सेंटोस, डेबियन, आदि।

धन्यवाद


आसानी से, लेकिन यह वास्तव में क्या दिखाना चाहिए?
जैकब व्लिजम

मुख्य फ़ोल्डर (घर, डाउनलोड, दस्तावेज़, आदि) और बुकमार्क जैसे कि डेबियन और सेंटोस
Ulises CT

मैं देख रहा हूं, आज या कल एक लिखूंगा यदि कोई और नहीं इससे पहले कि मैं करता हूं :), या हो सकता है कि कोई पहले से मौजूद है (आप का मतलब है कोई संकेतक, सही?)
जैकब व्लिजम

Google छवियों में "स्थान मेनू डेबियन" खोजें और आप देखेंगे कि मेरा क्या मतलब है।
उलिसे सीटी

नहींं, यह एक क्लासिक मेनू था। मैंने पाया कि उस पर एक इंच धूल के साथ पुराना सामान था। मैं बहुत जल्दी एक मूल (और इच्छा) लिख सकता हूं। मैं इसे इस एक के साथ विलय करना चाहूंगा: askubuntu.com/questions/803869/… , जो इसे एक दिलचस्प परियोजना बना देगा। आज या कल पहला शॉट इसलिए अंतिम नहीं होगा। अच्छा प्रश्न।
जैकब व्लिजम

जवाबों:


12

मैंने कई मौजूदा कोशिशें कीं, लेकिन वर्किंग प्लेस इंडिकेटर नहीं मिला । मैंने पाया कि वे पुराने थे, ppa का अब कोई रखरखाव नहीं था।

मॉड्यूलर स्थान मेनू

इसलिए, एक नए सिरे से नीचे लिखा गया है: उबंटू के लिए स्थान और फ़ाइलें संकेतक

यहाँ छवि विवरण दर्ज करें 2

Ppa संस्करण एक मॉड्यूलर एक है; आप चुन सकते हैं कि मेनू में क्या दिखाया जाए:

[ यहाँ छवि विवरण दर्ज करें]

पूर्ण संस्करण में:

यहाँ छवि विवरण दर्ज करें

... या सबसे छोटा, केवल हाल ही में दिखाया गया है:

यहाँ छवि विवरण दर्ज करें

Ppa से स्थापित करना

sudo add-apt-repository ppa:vlijm/placesfiles
sudo apt-get update
sudo apt-get install placesfiles

एक स्थान मेनू, बुकमार्क और हाल ही में उपयोग की गई फ़ाइलों को दिखाने के लिए एक सरलीकृत संस्करण

विवरण और (प्रारंभिक) कोड

लिपी

#!/usr/bin/env python3
import signal
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('AppIndicator3', '0.1')
from gi.repository import Gtk, AppIndicator3, GObject
import time
from threading import Thread
import os
import subprocess

class Indicator():
    def __init__(self):

        currpath = os.path.dirname(os.path.realpath(__file__))
        self.home = os.environ["HOME"]
        self.bmark_file = os.path.join(self.home, ".config/gtk-3.0/bookmarks")
        self.def_file = os.path.join(self.home, ".config/user-dirs.dirs")
        self.recdata = os.path.join(self.home, ".local/share/recently-used.xbel")
        self.n = 10
        self.app = 'places'
        iconpath = os.path.join(currpath, "dir_icon.png")
        self.indicator = AppIndicator3.Indicator.new(
            self.app, iconpath,
            AppIndicator3.IndicatorCategory.OTHER)
        self.indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
        self.indicator.set_label("Places", self.app)
        self.indicator.set_menu(self.create_menu())
        # the thread:
        self.update = Thread(target=self.check_recent)
        self.update.setDaemon(True)
        self.update.start()

    def create_menu(self):
        # creates the (initial) menu
        self.menu = Gtk.Menu()
        # separator
        initial = Gtk.MenuItem("Fetching list...")
        menu_sep = Gtk.SeparatorMenuItem()
        self.menu.append(initial)
        self.menu.append(menu_sep)
        # item_quit.show() 
        self.menu.show_all()
        return self.menu

    def open_directory(self, *args):
        index = self.menu.get_children().index(self.menu.get_active())
        selection = self.menu_items2[index-2]
        self.execute(["xdg-open", selection])

    def open_file(self, *args):
        index = self.submenu.get_children().index(self.submenu.get_active())
        selection = self.submenu2[index] 
        self.execute(["xdg-open", selection])

    def go_special(self, button, target):
        self.execute(["xdg-open", target])

    def connect(self, button):
        self.execute("nautilus-connect-server")

    def set_new(self):
        # update the list, appearing in the menu
        for i in self.menu.get_children():
            self.menu.remove(i)
        home_mention = Gtk.MenuItem("⌂ Home")
        home_mention.connect("activate", self.go_special, self.home)
        self.menu.append(home_mention)
        # separator
        menu_sep1 = Gtk.SeparatorMenuItem()
        self.menu.append(menu_sep1)
        for app in self.menu_items2:
            sub = Gtk.MenuItem("⏍ "+app.split("/")[-1])
            self.menu.append(sub)
            sub.connect('activate', self.open_directory)
        # separator
        menu_sep2 = Gtk.SeparatorMenuItem()
        self.menu.append(menu_sep2)
        # network
        network = "network:///"
        network_mention = Gtk.MenuItem("⇄ Network")
        network_mention.connect("activate", self.go_special, network)
        self.menu.append(network_mention)
        connect_mention = Gtk.MenuItem("⮁ Connect to server")
        connect_mention.connect("activate", self.connect)
        self.menu.append(connect_mention)
        # separator
        menu_sep3 = Gtk.SeparatorMenuItem()
        self.menu.append(menu_sep3)
        # computer
        computer = "computer:///"
        computer_mention = Gtk.MenuItem("⛁ Computer")
        computer_mention.connect("activate", self.go_special, computer)
        self.menu.append(computer_mention)
        recent_mention = Gtk.MenuItem("⁕ Recent files")
        self.menu.append(recent_mention)

        self.submenu = Gtk.Menu()
        for f in self.submenu2:
            recent = Gtk.MenuItem(f)
            recent.connect("activate", self.open_file)
            self.submenu.append(recent)
        recent_mention.set_submenu(self.submenu)
        # separator
        menu_sep6 = Gtk.SeparatorMenuItem()
        self.menu.append(menu_sep6)
        # quit
        item_quit = Gtk.MenuItem('Quit')
        item_quit.connect('activate', self.stop)
        self.menu.append(item_quit)
        self.menu.show_all()

    def run_about(self, *args):
        self.execute("/opt/upfront/code/runabout")

    def check_recent(self):
        self.menu_items1 = []; self.submenu1 = []
        while True:
            time.sleep(4)
            self.menu_items2 = self.get_bookmarks()
            self.submenu2 = self.get_files()

            if any([self.menu_items2 != self.menu_items1,
                self.submenu2 != self.submenu1]):
                GObject.idle_add(
                    self.set_new, 
                    priority=GObject.PRIORITY_DEFAULT
                    )
            self.menu_items1 = self.menu_items2
            self.submenu1 = self.submenu2

    def stop(self, source):
        Gtk.main_quit()

    def get_bookmarks(self):
        loc_bookmarks = [
            l.replace("file://", "") for l in open(self.bmark_file).read().splitlines()\
            if l.startswith("file://")
            ]
        netw_bookmarks = [
            l for l in open(self.bmark_file).read().splitlines()\
            if l.startswith("smb://")
            ]
        defaults = [
            os.path.join(self.home, l.replace('"', "").split("$HOME/")[-1]) for l in \
            open(self.def_file).read().splitlines() if all\
            (["$HOME/" in l, l.startswith("XDG")])
            ]
        return [self.replace_sc(m.split(" ")[0]).rstrip("/") for m in list(
            set(loc_bookmarks+defaults+netw_bookmarks))]

    def replace_sc(self, path):
        for c in [("%23", "#"), ("%5D", "]"), ("%5E", "^"),
                  ("file://", ""), ("%20", " ")]:
            path = path.replace(c[0], c[1])
        return path

    def execute(self, command):
        subprocess.Popen(command)

    def get_files(self):
        # create the list of recently used files
        used = [l for l in open(self.recdata) if all([
                    '<bookmark href="file://' in l, not "/tmp" in l, "." in l])]
        relevant = [l.split('="') for l in set(used)]
        relevant = [[it[1][7:-7], it[-2][:-10]] for it in relevant]
        relevant.sort(key=lambda x: x[1])
        return [item[0].replace("%20", " ") for item in relevant[::-1][:self.n]]


Indicator()
GObject.threads_init()
signal.signal(signal.SIGINT, signal.SIG_DFL)
Gtk.main()

कैसे उपयोग करें (यदि ppa से स्थापित नहीं है)

  1. स्क्रिप्ट को एक खाली फ़ाइल में कॉपी करें, इसे इस रूप में सहेजें places_indicator.py
  2. आइकन को सहेजें (राइट-क्लिक करें> इस रूप में सहेजें) बिल्कुल नाम:

    dir_icon.png
    

    यहाँ छवि विवरण दर्ज करें

    .. और स्क्रिप्ट के रूप में एक ही निर्देशिका

  3. टेस्ट- कमांड द्वारा स्क्रिप्ट चलाएँ:

    python3 /path/to/places_indicator.py
    
  4. यदि सभी ठीक काम करते हैं, तो इसे स्टार्टअप एप्लिकेशन में जोड़ें: डैश> स्टार्टअप एप्लिकेशन> जोड़ें। कमांड जोड़ें:

    /bin/bash -c "sleep 10 && python3 /path/to/places_indicator.py
    

सूचक के बारे में

सूचक दिखाता है:

  1. घर निर्देशिका
  2. सभी निर्देशिका (स्थानीय बुकमार्क और smb)
    • ~/.config/gtk-3.0/bookmarks
    • ~/.config/user-dirs.dirs
  3. नेटवर्क
  4. नेटवर्क से कनेक्ट करें
  5. संगणक
  6. हाल ही में उपयोग की गई फ़ाइलें (जैसे यह है 10 आसानी से बदला जा सकता है)

बदलते / हटाए गए बुकमार्क गतिशील रूप से अपडेट किए जाते हैं


बहुत अच्छा, मैंने एकता पर यह कोशिश की है और धन्यवाद काम करता है! लेकिन मैंने गनोम का उपयोग करने का फैसला किया, हालांकि यह अधिक सुंदर लग रहा है, लेकिन मैं हाल ही में गंदे फीचर के लिए भी इसका इस्तेमाल करूंगा! धन्यवाद
सीटी

@UlisesCT आह, इस तथ्य के लिए धन्यवाद कि आपने स्विच किया इस तथ्य के बावजूद!
जैकब व्लिजम

हाँ! समस्या यह है कि मैं डेस्कटॉप पीसी के लिए विंडोज से आता हूं, और कभी भी लिनक्स पर ग्राफिकल सामान का इस्तेमाल नहीं किया गया, बस सर्वर के लिए सेंटोस पर टर्मिनल और ऐसे, और जब मैंने ubuntu से ubuntu स्थापित किया। मुझे लगा कि इसका जीयूआई सिर्फ इतना है कि एक और पता नहीं था वहाँ सूक्ति और एकता है जिसे आप चुन सकते हैं (मैं स्थान टैब चूक गया यह CentOS पर था जिसे मैंने डेस्कटॉप के रूप में एक कोशिश देने की कोशिश की थी लेकिन यह थोड़े बेकार है)। सीखते रहने के लिए अच्छा है
यूलिस सीटी

वाह, वह प्रतिबद्धता - इस जरूरत को पूरा करने के लिए एक नया कार्यक्रम लिख रहा हूँ! बहुत प्रभावित, अच्छी तरह से किया @JacobVlijm! यदि आपने केवल इसे लिखा है, तो यह 0.5.1-1 संस्करण क्यों है?
14

@ Ads20000 धन्यवाद! कुछ सुधार; (पुनः) स्थानांतरित या नामांकित फ़ाइलों को अब चिह्नित किया गया है, एक अधिसूचना दिखाई गई है यदि आप उन्हें खोलने की कोशिश करते हैं, तो अलग-अलग हाल-आइकन, अब 14.04 पर भी काम करते हैं, कोड का मामूली अनुकूलन (फ़ाइल नाम में विशेष वर्णों को फ़िल्टर करना) आदि।
जैकब व्लिजम

8

अद्यतन फ़रवरी / 24/2017 : अब संकेतक में वेब लिंक को पिन करने का विकल्प है

परिचय

नोट: इस उत्तर के पिछले संस्करण को संपादित इतिहास के तहत पाया जा सकता है, हालांकि यह अब प्रासंगिक नहीं है।

नीचे प्रस्तुत संकेतक को एक अलग प्रश्न के लिए अभिप्रेत किया गया है, लेकिन जब से अवसर खुद को प्रस्तुत किया है, मैंने इसे यहां जारी करने का निर्णय लिया है। फ़ाइलें संकेतक उपयोगकर्ता की फ़ाइलों और फ़ोल्डरों तक पहुंचने के लिए सरल संकेतक है। यह हाल ही में उपयोग की गई फ़ाइलों, बुकमार्क फ़ाइलों और निर्देशिकाओं की जाँच करने की अनुमति देता है। विशेष रूप से, स्थान मेनू विशेष रूप से इस प्रश्न के लिए प्रासंगिक है।

यहाँ छवि विवरण दर्ज करें

यहाँ छवि विवरण दर्ज करें

जैसा कि आप स्क्रीनशॉट से देख सकते हैं, संकेतक अंग्रेजी के अलावा अन्य स्थानों का भी समर्थन करता है, इसलिए यदि आपका सिस्टम अंग्रेजी के अलावा किसी अन्य चीज़ का उपयोग करता है, तो यह काम करेगा।

अद्यतन : संकेतक अब लॉन्च की गई .desktop फ़ाइलों का भी समर्थन करता है जिन्हें पिन किया गया है। उदाहरण के लिए यदि आपके पास फ़ायरफ़ॉक्स है। इस प्रकार, संकेतक को कार्यक्रमों के लिए त्वरित लांचर के रूप में उपयोग किया जा सकता है। लेखन के समय यह सुविधा पीपीए में है (नवंबर 19, 7:53 बजे जीएमटी, प्रक्रिया के बारे में 24 घंटे लगने चाहिए), लेकिन पहले से ही जीथब के साथ-साथ यहां भी अद्यतन स्रोत कोड में है।

यहाँ छवि विवरण दर्ज करें

सूचक को प्राप्त करना

संकेतक मेरे व्यक्तिगत पीपीए के साथ-साथ गिटहब से भी उपलब्ध है । इसे प्राप्त करने के लिए निम्नलिखित चरणों का उपयोग करें:

sudo add-apt-repository ppa:1047481448-2/sergkolo
sudo apt-get update
sudo apt-get install files-indicator

सोर्स कोड

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

#
# Author: Serg Kolo , contact: 1047481448@qq.com
# Date: November 19 , 2016
# Purpose: appindicator for accessing files and folders
# Tested on: Ubuntu 16.04 LTS
#
#
# Licensed under The MIT License (MIT).
# See included LICENSE file or the notice below.
#
# Copyright © 2016 Sergiy Kolodyazhnyy
#
# 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.
import gi
gi.require_version('AppIndicator3', '0.1')
gi.require_version('Notify', '0.7')
from gi.repository import GLib as glib
from gi.repository import AppIndicator3 as appindicator
from gi.repository import Gtk as gtk
from gi.repository import Gio
from gi.repository import Notify
from collections import OrderedDict
# from collections import OrderedDict
import urllib.parse
import subprocess
import copy
import shutil
import dbus
import math
import json
import os

class FilesIndicator(object):

    def __init__(self):
        self.app = appindicator.Indicator.new(
            'files-indicator', "document-open-recent",
            appindicator.IndicatorCategory.HARDWARE
        )
        self.user_home = os.path.expanduser('~')
        filename = '.pinned_files.json'
        self.pinned_list = os.path.join(self.user_home,filename)

        self.config = os.path.join(self.user_home,'.files_indicator.json')
        self.max_items = 15
        self.name_length = 20
        self.read_config()

        self.app.set_status(appindicator.IndicatorStatus.ACTIVE)

        self.cached_files = self.get_recent_files()
        self.make_menu()
        self.update()

    def read_config(self,*args):
        config = {}
        try:
            with open(self.config) as f:
                 config = json.load(f)

        except FileNotFoundError:
            print('>>> ',self.config,' not found.Creating one')
            f = open(self.config,'w')
            config = {'max_items':self.max_items,
                      'name_length':self.name_length
            }
            json.dump(config,f,indent=4)
            f.close()
        except json.JSONDecodeError:
            print(">>> Can't read ",self.pinned_list,',may be corrupt')
            return None
        else:
            self.max_items = config['max_items']
            self.name_length = config['name_length']

    def add_menu_item(self, menu_obj, item_type, image, label, action, args):
        """ dynamic function that can add menu items depending on
            the item type and other arguments"""
        menu_item, icon = None, None
        if item_type is gtk.ImageMenuItem and label:
            menu_item = gtk.ImageMenuItem.new_with_label(label)
            menu_item.set_always_show_image(True)
            if '/' in image:
                icon = gtk.Image.new_from_file(image)
            else:
                icon = gtk.Image.new_from_icon_name(image, 48)
            menu_item.set_image(icon)
        elif item_type is gtk.ImageMenuItem and not label:
            menu_item = gtk.ImageMenuItem()
            menu_item.set_always_show_image(True)
            if '/' in image:
                icon = gtk.Image.new_from_file(image)
            else:
                icon = gtk.Image.new_from_icon_name(image, 16)
            menu_item.set_image(icon)
        elif item_type is gtk.MenuItem:
            menu_item = gtk.MenuItem(label)
        elif item_type is gtk.SeparatorMenuItem:
            menu_item = gtk.SeparatorMenuItem()
        if action:
            menu_item.connect('activate', action, *args)

        menu_obj.append(menu_item)
        menu_item.show()

    def get_user_dirs(self,*args):
        user_dirs = []
        for index,val in glib.UserDirectory.__enum_values__.items():
            if index == 8: continue
            dir = glib.get_user_special_dir(index)
            if dir: user_dirs.append(dir)
        return user_dirs

    def get_file_icon(self,*args):
        if args[-1].endswith('.desktop'):
            desk_file = Gio.DesktopAppInfo.new_from_filename(args[-1])
            icon = desk_file.get_icon()
            if type(icon) == Gio.ThemedIcon:
                themed_name = icon.get_names()[0]
                theme = gtk.IconTheme.get_default()
                name = theme.lookup_icon(themed_name, 48, 0).get_filename()
            if type(icon) == Gio.FileIcon:
                name = icon.get_file().get_uri()

            icon_url= urllib.parse.unquote(name).replace('file://','') 
            return icon_url

        file = Gio.File.new_for_path(args[-1])
        file_info = file.query_info("standard::*",0)
        icon_string = file_info.get_icon().to_string()
        if 'folder-' in icon_string:
            return icon_string.split()[-2]
        return icon_string.split()[-1]

    def get_recent_files(self,*args):
        manager = gtk.RecentManager.get_default()
        try:
            files = OrderedDict()
            for index,item in enumerate(manager.get_items(),1):
                    uri = item.get_uri()
                    uri_decoded = urllib.parse.unquote(uri)
                    filepath = uri_decoded.replace('file://','')
                    if not os.path.exists(filepath): continue
                    basename = os.path.basename(uri_decoded)
                    files[basename] = filepath
                    if index == self.max_items:
                        break
        except Exception as e:
            print(e)
            return None
        finally:  return files

    def callback(self,*args):
        self.update()

    def update(self,*args):
        current_files = self.get_recent_files()
        if current_files != self.cached_files:
             self.make_menu()
             self.cached_files = current_files
        glib.timeout_add_seconds(3,self.callback)

    def add_submenu(self,top_menu,label):
        menuitem = gtk.MenuItem(label)
        submenu = gtk.Menu()
        menuitem.set_submenu(submenu)
        top_menu.append(menuitem)
        menuitem.show()
        return submenu

    def make_menu(self):
        if hasattr(self, 'app_menu'):
            for item in self.app_menu.get_children():
                    self.app_menu.remove(item)
        else:
            self.app_menu = gtk.Menu()
        recent = self.add_submenu(self.app_menu,'Recent Files')
        recent_dict = self.get_recent_files()

        content = [recent,gtk.ImageMenuItem,'gtk-add',
                   'Add to Recent Files',self.add_recent,[None]
        ]      
        self.add_menu_item(*content) 

        content = [recent,gtk.ImageMenuItem,'user-trash',
                   'Clear recent files list',self.clear_recent,[None]
        ]      
        self.add_menu_item(*content)

        content = [recent,gtk.SeparatorMenuItem,
                   None,None,
                   None,[None]
        ]
        self.add_menu_item(*content)
        self.add_menu_item(*content) 
        if not recent_dict:
            content = [recent,gtk.MenuItem,None,
                       'No items',None,None
            ]
            self.add_menu_item(*content)
            last = None
            for i in recent.get_children():
                last = i
            last.set_sensitive(False)
        else:
            for name,data in recent_dict.items():
                icon = self.get_file_icon(data)
                content = [recent, gtk.ImageMenuItem,
                           icon, name[:self.name_length],
                           self.open_item, [data]
                ]
                self.add_menu_item(*content)

        # Pinned files
        bookmarks = self.add_submenu(self.app_menu,'Pinned Files')
        content = [bookmarks,gtk.ImageMenuItem,
                   'bookmark_add','Pin a file',
                   self.pin_file,[bookmarks,None]
        ]
        self.add_menu_item(*content)

        content = [bookmarks,gtk.ImageMenuItem,
                   'remove','Remove item',
                   self.remove_pinned,['files']
        ]
        self.add_menu_item(*content)

        content = [bookmarks,gtk.ImageMenuItem,
                   'user-trash','Remove All',
                   self.remove_all_pinned,[None]
        ]
        self.add_menu_item(*content)
        content = [bookmarks,gtk.SeparatorMenuItem,
                   None,None,
                   None,[None]
        ]
        self.add_menu_item(*content)
        self.add_menu_item(*content) 

        pinned_files = self.get_pinned()

        if (pinned_files and 
            'files' in pinned_files.keys() and
            pinned_files['files']):
            for filepath in pinned_files['files']:
                icon = self.get_file_icon(filepath) 
                content = [bookmarks,gtk.ImageMenuItem,
                           icon,os.path.basename(filepath),
                           self.open_item,[filepath]
                ]
                self.add_menu_item(*content)
        else:
            content = [bookmarks,gtk.MenuItem,None,
                       'No items',None,None
            ]
            self.add_menu_item(*content)
            last = None
            for i in bookmarks.get_children():
                last = i
            last.set_sensitive(False)

        places = self.add_submenu(self.app_menu,'Places')
        content = [places,gtk.ImageMenuItem,'add',
                   'Pin Directory',self.pin_dir,[None]
        ]

        self.add_menu_item(*content)

        content = [places,gtk.ImageMenuItem,
                   'remove','Remove Pinned',
                   self.remove_pinned,['dirs']
        ]
        self.add_menu_item(*content)

        content = [places,gtk.SeparatorMenuItem,
                   None,None,
                   None,[None]
        ]
        self.add_menu_item(*content)

        content = [places,gtk.MenuItem,None,
                   'Standard Dirs',None,None
        ]
        self.add_menu_item(*content)
        last = None
        for i in places.get_children():
            last = i
        last.set_sensitive(False)
        for dir in self.get_user_dirs():
            icon = self.get_file_icon(dir)
            content = [places,gtk.ImageMenuItem,icon,
                       os.path.basename(dir),self.open_item,[dir]

            ]
            self.add_menu_item(*content)

        content = [places,gtk.SeparatorMenuItem,
                   None,None,
                   None,[None]
        ]
        self.add_menu_item(*content)

        content = [places,gtk.MenuItem,None,
                   'Pinned Dirs',None,None
        ]
        self.add_menu_item(*content)
        last = None
        for i in places.get_children():
            last = i
        last.set_sensitive(False)

        if (pinned_files and 
           'dirs' in pinned_files.keys() and
           pinned_files['dirs']):
            for dir in pinned_files['dirs']:
                icon = self.get_file_icon(dir)
                print(icon)
                content = [places,gtk.ImageMenuItem,icon,
                           os.path.basename(dir),self.open_item,[dir]

                ]
                self.add_menu_item(*content)
        else:
            content = [places,gtk.MenuItem,None,
                       'No items',None,None
            ]
            self.add_menu_item(*content)
            last = None
            for i in places.get_children():
                last = i
            last.set_sensitive(False)

        content = [self.app_menu,gtk.SeparatorMenuItem,
                   None,None,
                   None,[None]
        ]
        self.add_menu_item(*content)
        content = [self.app_menu,gtk.ImageMenuItem,'exit',
                   'quit',self.quit,[None]
        ]
        self.add_menu_item(*content)
        self.app.set_menu(self.app_menu)

    def check_directory(self,*args):
        current_set = set(os.listdir(args[-1]))
        return current_set - self.cached_set


    def get_pinned(self,*args):
        try:
            with open(self.pinned_list) as f:
                 return json.load(f,object_pairs_hook=OrderedDict)

        except FileNotFoundError:
            print('>>> ',self.pinned_list,' not found')
            return None
        except json.JSONDecodeError:
            print(">>> Can't read ",self.pinned_list,',may be corrupt')
            return None

    def pin_dir(self,*args):
        # TODO
        current_list = self.get_pinned()
        if not current_list:
                current_list = OrderedDict()
                current_list['dirs'] = []
                f = open(self.pinned_list,'w')
                f.write("")
                f.close()

        if not args[-1]:
                cmd = "zenity --file-selection --directory --separator || --multiple"
                dirs = self.run_cmd(cmd.split())
        else:
                dirs = args[-1]

        dir_list = []
        if not dirs: return None
        dir_list = dirs.decode().strip().split("||")
        if not 'dirs' in current_list.keys():
             current_list['dirs'] = []
        for f in dir_list:
                #icon = self.get_file_icon(f)
                current_list['dirs'].append(f)

        with open(self.pinned_list,'w') as f:
                json.dump(current_list,f,indent=4)
        self.make_menu()

    def pin_file(self,*args):
        current_list = self.get_pinned()
        if not current_list:
                current_list = OrderedDict()
                current_list['files'] = []
                f = open(self.pinned_list,'w')
                f.write("")
                f.close()
        if not args[-1]:
                cmd = "zenity --file-selection --separator || --multiple "
                files = self.run_cmd(cmd.split())
        else:
                files = args[-1]

        file_list = []
        if not files: return None
        file_list = files.decode().strip().split("||")
        if not 'files' in current_list.keys():
            current_list['files'] = []
        for f in file_list:
                #icon = self.get_file_icon(f)
                current_list['files'].append(f)

        with open(self.pinned_list,'w') as f:
                json.dump(current_list,f,indent=4)
        self.make_menu()

    def remove_all_pinned(self,*args):
        try:
            #os.unlink(self.pinned_list)

            with open(self.pinned_list) as f:
                pinned = json.load(f)
            pinned.pop('files')       
            with open(self.pinned_list,'w') as f:
                    json.dump(pinned,f,indent=4)
        except:
            pass
        finally:
            self.make_menu()

    def remove_pinned(self,*args):
        key = args[-1]
        pinned = self.get_pinned() 
        if not pinned: return
        cmd_str = "zenity --forms --add-combo Remove --combo-values"
        vals = "|".join(pinned[key])
        cmd = cmd_str.split() + [vals]
        item = self.run_cmd(cmd)
        if item: 
            path = item.decode().strip()
            index = pinned[key].index(path)
            pinned[key].pop(index)
            with open(self.pinned_list,'w') as f:
                json.dump(pinned,f,indent=4)
            self.make_menu()

    def add_recent(self,*args):
        cmd = "zenity --file-selection --separator || --multiple "
        files = self.run_cmd(cmd.split())
        file_list = []
        if not files: return
        file_list = files.decode().strip().split("||")
        items = ['file://' + f for f in file_list]
        for f in items: gtk.RecentManager().get_default().add_item(f)

    def clear_recent(self,*args):
        try:
            gtk.RecentManager.get_default().purge_items()
            self.make_menu()
        except:
            pass

    def open_item(self,*args):
        #self.run_cmd(['xdg-open',args[-1]]) 
        if args[-1].endswith('.desktop'):
            desk_file = Gio.DesktopAppInfo.new_from_filename(args[-1])
            return desk_file.launch_uris()
        return subprocess.Popen(['xdg-open',args[-1]])

    def quit(self,*args):
        gtk.main_quit()

    def run_cmd(self, cmdlist):
        """ utility: reusable function for running external commands """
        #new_env = dict(os.environ)
        #new_env['LC_ALL'] = 'C'
        try:
            stdout = subprocess.check_output(cmdlist) #env=new_env)
        except subprocess.CalledProcessError:
            pass
        else:
            if stdout:
                return stdout

    def run(self):
        """ Launches the indicator """
        try:
            gtk.main()
        except KeyboardInterrupt:
            pass

    def quit(self, *args):
        """ closes indicator """
        gtk.main_quit()


def main():
    """ defines program entry point """
    indicator = FilesIndicator()
    indicator.run()

if __name__ == '__main__':
  try:
    main()
  except  KeyboardInterrupt:
    gtk.main_quit()

विन्यास

उपयोगकर्ता के होम डायरेक्टरी में संग्रहीत दो जोंस फाइलों के माध्यम से संकेतक को कॉन्फ़िगर किया गया है।

~/.files_indicator.json उपयोगकर्ता इंटरफ़ेस को नियंत्रित करता है, मेनू प्रविष्टियों की लंबाई और हाल की फ़ाइलों मेनू में अधिकतम संख्या।

{
    "name_length": 30,
    "max_items": 10
}

~/.pinned_files.jsonपिन किए गए फ़ाइलों और फ़ोल्डरों की सूची को नियंत्रित करता है। प्रत्येक आइटम एक सूची / सरणी है।

{
    "dirs": [
        "/home/xieerqi/\u56fe\u7247/Wallpapers"
    ],
    "files": [
        "/home/xieerqi/work_in_progress/videonauth_code.py",
        "/home/xieerqi/work_in_progress/spin_button.py"
    ]
}

वाह, प्रभावित हुआ कि आपने इस समस्या का भी हल बनाया! : डी
Ads20000

@ Ads20000 धन्यवाद :) यह सूचक मूल रूप से हाल की फाइलों के लिए ही था। जब मैंने यह प्रश्न देखा कि मुझे लगा कि फीचर को इंडिकेटर में जोड़ना अच्छा होगा, भी, तो इसे लागू करना बहुत सरल था - मुझे एक सुबह और 2 कप कॉफ़ी ले गए :)
सेर्गेई कोलोडियाज़नी

आपके काम ने इसे OMG भी बना दिया ! उबंटू! लेख ! : D
Ads20000

हां, मैंने देखा कि :)
सर्गी कोलोडियाज़नी

0

ठीक है दोस्तों मैंने जो किया वह सिर्फ Ubuntu-Gnome को स्थापित करने और Tweak टूल में 'Places' एक्सटेंशन को सक्षम करने और इसे प्राप्त करने के लिए किया। गोट्टा कहते हैं कि उबंटू गनोम एकता की तुलना में बहुत बेहतर दिखता है

"लुगारे" टैब देखें


विवेकी पसंद। यह शुरू से ही स्पष्ट था कि आप गनोम का उपयोग करने की ओर झुकाव कर रहे हैं, क्योंकि यह सेंटो से आपके लिए अधिक परिचित है। वे CentOS में जो प्रयोग करते हैं, वह गनोम फ्लैशबैक है। यह पिछले संस्करण के समान दृष्टिगत होने के लिए है, फिर भी नई तकनीक का उपयोग करते हैं। एकता के लिए, यह सभी के लिए नहीं हो सकता है, हालांकि मैं व्यक्तिगत रूप से GNOME को उनकी लगातार सुविधाओं को हटाने और विकास को जटिल बनाने के लिए बहुत नापसंद करता हूं।
सर्गी कोलोडियाज़नी

हाँ ठीक है, मैं लिनक्स में "noob" या "पुराना" हूँ जैसा कि आप इसे कहना पसंद करते हैं। मेरा मतलब है, मैंने हमेशा CentOS पर सर्वरों के लिए एक टर्मिनल का उपयोग किया है, और ग्राफिक सामान की अधिकता नहीं है, मुझे नहीं पता था कि यूनिटी और गनोम जैसे विभिन्न ग्राफ़िकल विकल्प थे, मैंने सोचा कि उबंटू केवल उसी तरह से देख सकता है जिस तरह से यह करता है ubuntu.com डाउनलोड पैकेज, CentOS जिस तरह से यह आधिकारिक वेबपेज से करता है, आदि। पता नहीं था कि आपके पास अलग-अलग चित्रमय विकल्प हो सकते हैं। सीखते रहना अच्छा है। @ शेर
सीटी

मुझे आपसे यह प्रश्न पूछना चाहिए: यदि आपको पूरी तरह से एकता डेस्कटॉप का उपयोग करना था, तो आपको किन अन्य चीजों की इच्छा है? (जाहिर है, मैं भविष्य के उपयोगों के लिए विचारों पर शोध करने की कोशिश कर रहा हूं :)
सर्गी कोलोडियाज़नी

केवल एक चीज जिसके बारे में मैं सोच सकता हूं, वह है "स्थान" टैब या "एप्लिकेशन" (जिसका मैं वास्तव में उपयोग नहीं करता हूं) बाकी एकता में भी उपलब्ध है, मुझे लगता है, जो मुझे सूक्ति से पसंद नहीं है, वह है एप्लिकेशन मेनू अधिकांश कार्यक्रमों (विशिष्ट फ़ाइल, संपादन, आदि) पर एक बटन पर क्लिक करना है
Ulises CT
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.