GNOME लॉन्चर में कस्टम एप्लिकेशन जोड़ना


69

एक उपयोगिता की तलाश है जो मुझे उन अनुप्रयोगों की सूची में एक आइटम सम्मिलित करने की अनुमति देती है जो GNOME को पता है।

उदाहरण के लिए:
मैंने ग्रहण EE डाउनलोड किया है (मेरे पास कुछ बहुत ही विशेष प्लगइन्स हैं जिनके साथ मुझे काम करने की आवश्यकता है, और वे प्लगइन्स डिफ़ॉल्ट रिपॉजिटरी में उपलब्ध संस्करण को "पसंद नहीं" करते हैं)। मैं Ubuntu 11.10 पर GNOME 3 का उपयोग कर रहा हूं। इसलिए मैं एक्लिप्स डब्ल्यू / ओ को एक टर्मिनल खोलने और इसे चलाने के लिए निष्पादित करना चाहता हूं।

यह कुछ बहुत ही सरल होना चाहिए।


png छवियाँ काम नहीं करती हैं, कोशिश करें jpg

जवाबों:


67

आप इसके लिए Main Menu का उपयोग कर सकते हैं। यदि नहीं, तो पहले इसे स्थापित करें:

sudo apt-get install alacarte

1. मेन मेन्यू खोलें

2. उदाहरण देखें

मुख्य मेनू

उसके बाद आप अपने एप्लिकेशन को नाम से पुकार सकते हैं: "command_of_application"।

संपादित करें: मैंने याद किया कि आपने अपने घर निर्देशिका में आवेदन मांगे थे। यदि हां, तो कमांड को उस एप्लिकेशन का पूर्ण पथ होना चाहिए।


यही मैं ढूंढ रहा हूं।
Shaftoe2702

जर्मन उबंटू 17.10 में, "मेन्यूबेर्बिटुंग" की खोज करें
क्रिस्टोफर के।

धन्यवाद, सौभाग्य से यह पैकेज फेडोरा के लिए भी था।
सुकुमार

60

एप्लिकेशन लॉन्च करने वाले Gnome के बारे में जानते हैं कि .desktop फ़ाइलें इन /usr/share/applicationsऔर हैं ~/.local/share/applications। आप अपने होम फोल्डर में जो कुछ भी है, उसके लिए कस्टम लॉन्चर बना सकते हैं, या तो कस्टम .desktop फ़ाइल बनाकर या संपादित करके, पुराने Gnome मेनू संपादक Alacarte का उपयोग करके।

Gnome डेस्कटॉप फ़ाइल दस्तावेज़ मदद का हो सकता है: https://developer.gnome.org/integration-guide/stable/desktop-files.html.en

कस्टम लांचर सिर्फ एक पाठ फ़ाइल है, जिसका नाम है, उदाहरण के लिए, EclipseEE.desktopनिम्न सामग्री के साथ:

[Desktop Entry]
Name=Eclipse EE
Exec=/home/mrPeterson/path_to_executable
StartupNotify=true
Terminal=false
Type=Application
Icon=/optional/path/to/icon.png

पहला लिंक टूट गया है
nispio

9

(मूल ओपी से प्रतिनिधि)

यह साफ-सुथरी चाल है जो अन्यत्र बताई गई है:

gnome-desktop-item-edit ~/Desktop/ --create-new

अब, मेरे पास एक आइकन है। यह संदर्भ मेनू के लिए बाध्य करने के लिए एक अच्छी सुविधा थी, लेकिन अफसोस, मैं इसे नहीं देखता।


यह कार्यक्रम मेरे लिए डिफ़ॉल्ट रूप से स्थापित नहीं किया गया था; करना पड़ाsudo apt-get install --no-install-recommends gnome-panel
युइकॉनु

5

मुझे जोर्ज का सरल gnome-desktop-item-editसमाधान पसंद है। हालाँकि, अगर मैं इस .desktopपर फ़ाइल ~/Desktop/रखता हूँ तो यह एक एप्लिकेशन के रूप में नहीं दिखता है बल्कि केवल गनोम मेनू में एक फ़ाइल के रूप में दिखाई देता है। इसलिए मैं करता हूँ:

sudo gnome-desktop-item-edit /usr/share/applications/ --create-new

जितने भी आप सभी सूक्ति उपयोगकर्ताओं के लिए मेनू बनाना चाहते हैं, आपको इसे ~/.local/share/applicationsफ़ोल्डर पर रखना चाहिए और उपयोग करने से बचना चाहिए sudo
रूसो

1

मुझे पता है कि यह धागा थोड़े पुराना है, लेकिन मैं आप लोगों के साथ इस बैश फ़ंक्शन को साझा करना चाहता था जो मैंने सिर्फ इसलिए किया क्योंकि ... मैं कर सकता हूं। यदि आप इसे उपयोगी पाते हैं, तो इसका उपयोग करने के लिए स्वतंत्र महसूस करें!

चेतावनी: मैंने अभी इसे बनाया है। यह सही नहीं हो सकता है।

new-gnome-launcher-app(){
    # This functions adds some executable file to the gnome launcher.
    # It does the following:
    #   - Add symlink to /usr/bin
    #   - Add entry for gnome launcher

    # TODO: Check image file extension

    # Check if root
    # if [ "$(id -u)" != "0" ]; then 
    #   echo "Must run as root"
    #   return 1
    # fi

    # If parameter is entered, assume it's the executable's directory.
    # Else, ask for it
    if [ "$?" -gt "1" ]; then
        exec_path="$1"
    else
        echo -n "Enter executable file name: "
        read exec_path
    fi
    # Check if file exists
    if [ ! -f "$exec_path" ] || [ ! -f "$(pwd)/$exec_path" ]; then
        echo "File doesn't exist"
        unset exec_path
        return 1
    fi
    # Get absolute path to file
    if [ "${exec_path:0:1}" != "/" ]; then
        echo "'$exec_path' was not an absolute path"
        exec_path="$(pwd)/$exec_path"
        echo "Assuming path '$exec_path'"
    fi
    exec_basename="$(basename "$exec_path")"
    # Check if symlink already exists
    if [ -f "/usr/bin/$exec_basename" ]; then
        echo "File '/usr/bin/$exec_basename' already exists. We wont be able to create the symlink."
        unset exec_basename
        unset exec_path
        return 1
    fi
    # Add entry for gnome panel
    gnome_panel_entry_path="/usr/share/applications/$exec_basename.desktop"
    if [ -f "$gnome_panel_entry_path" ]; then
        echo "Entry '$(basename "$gnome_panel_entry_path")' already exists!"
        unset exec_basename
        unset gnome_panel_entry_path
        unset exec_path
        return 2
    fi
    # ask for display name
    while [ "$USER_RESPONSE" != "y" ] && [ "$USER_RESPONSE" != "Y" ]; do
        echo -n "Enter the program's name: "
        read APP_NAME
        while [ "$APP_NAME" == "" ]; do
            echo -n "Please enter something: "
            read APP_NAME
        done
        # ask for a description
        echo -n "Enter a short description: "
        read APP_DESCRIPTION
        # ask for an icon file
        echo -n "Enter absolute path to an icon image (empty for none): "
        read APP_ICON
        while [ "$APP_ICON" != "" ] && [ ! -f "$APP_ICON" ]; do
            echo -n "File doesn't exist. Retry: "
            read APP_ICON
        done 
        # ask if it needs a terminal
        echo -n "Will this program need a terminal? [y/n]: "
        read APP_TERMINAL
        while [ "$APP_TERMINAL" != "y" ] && [ "$APP_TERMINAL" != "n" ]; do
            echo -n "Please enter something: "
            read APP_TERMINAL
        done
        if [ "$APP_TERMINAL" == "y" ]; then
            APP_TERMINAL="true"
        else
            APP_TERMINAL="false"
        fi
        # ask for tags
        echo -n "Enter some categories that fit your program (';' separated): "
        read APP_CATEGORIES
        # Check if user is satisfied
        while [ "$USER_RESPONSE" == "" ] || [ "$USER_RESPONSE" != "y" ] && [ "$USER_RESPONSE" != "Y" ] && [ "$USER_RESPONSE" != "n" ] && [ "$USER_RESPONSE" != "N" ]; do
            echo -e "Is this information correct?\n"
            echo -e "\tName: \t\t$APP_NAME"
            echo -e "\tExecutable: \t$exec_path"
            echo -e "\tDescription: \t$APP_DESCRIPTION"
            echo -e "\tIcon File: \t$APP_ICON"
            echo -e "\tTerminal: \t$APP_TERMINAL"
            echo -e "\tCategories: \t$APP_CATEGORIES"
            echo -n "(y/n): "
            read USER_RESPONSE
        done
        if [ "$USER_RESPONSE" == "n" ] || [ "$USER_RESPONSE" == "N" ]; then
            echo "Then please enter everything again, kind sir"
            unset USER_RESPONSE
        fi
    done
    # User is happy
    # Add link to /usr/bin
    echo "Adding link to /usr/bin"
    sudo ln -s "$exec_path" "/usr/bin/$exec_basename"
    # Add gnome panel entry
    echo "Creating gnome-panel entry"
    echo "[Desktop Entry]" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Type=Application" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Encoding=UTF-8" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Name=$APP_NAME" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Comment=$APP_DESCRIPTION" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Icon=$APP_ICON" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Exec=$exec_path" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Terminal=$APP_TERMINAL" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Categories=$APP_CATEGORIES" | sudo tee -a "$gnome_panel_entry_path" > /dev/null
    echo "Entry added in '$gnome_panel_entry_path'"
    unset USER_RESPONSE
    unset APP_NAME
    unset APP_CATEGORIES
    unset APP_TERMINAL
    unset APP_DESCRIPTION
    unset APP_ICON
    unset exec_path
    unset exec_basename
    unset gnome_panel_entry_path
    return 0
}

: +1: आप समय के लिए :), कमांड लाइन टूल के लिए अच्छा है
डैनियल पेरेज़
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.