السلام عليكم و رحمة الله و بركاته :
كيف حالكم يا شباب
اليوم جئت لكم بمجموعة سكربتات ولا اروع من موقع www.gnome-look.org اتنمنى ان تنال اعجابكم
لنبدء على بركة الله
اولا : Nautilus Scripts Pack :
هذه هى مجموعة سكربتات رائعة تحتوى على التالى :
لاستخدام تلك المجموعة من الاسكربتات يجب ان تنزل البرامج التالية :
ثانيا : Enqueue in Audacious :
افتح ملف واكتب فيه مايلى :
احفظ الملف
المصدر
ثالثا : Enqueue in Totem :
افتح ملف واكتب فيه مايلى :
احفظ الملف
المصدر
طريقة الاستخدام :
ضع الاسكربتات السابقة فى المسار التالى:
اعطى الاسكربتات صلاحية التنفيذ
رابعا : Set as Wallpaper :
احفظ الملف
المصدر
خامسا : send to :
المصدر
سادسا : send-to-media :
المصدر
سابعا : copyto & moveto & uploadto :
طريقة الاستخدام :
قم بتنزيل الباكدج التالى python-nautilus
ضع الاسكربتات فى ذلك المسار
اعطى الاسكربتات صلاحية التنفيذ
كيف حالكم يا شباب
اليوم جئت لكم بمجموعة سكربتات ولا اروع من موقع www.gnome-look.org اتنمنى ان تنال اعجابكم
لنبدء على بركة الله
اولا : Nautilus Scripts Pack :
هذه هى مجموعة سكربتات رائعة تحتوى على التالى :
كود:
[B]ISO Manager #ISO Mount ISO unMount Make ISO/ISO X #create ISO image in the same directory and with the same name of the file or folder Play in Amarok Play in Audacious #Select a folder and play it in Audacious Rootilus #root nautilus in the current dir. Search Here Set image as Wallpaper Fast Image Editor #Scale Image Scale Image To Sizes Image Converter Media #Video Converter Extract Audio Naudilus #Convert audio files File Manager + #Split file #a simple GUI for spliting a file into many files (with certain size) Encrypt/Decrypt #a Script to encrypt/decrypt files Move To... #selected files/folders to ... whereever you want. the script will check if you have write-permissions and if the file already exists Copy To... Shredder #Shred seleted files ... forever Remover #WARNING: THIS WILL DELETE ANY FILE(S) MARKED WITH THE EXTENSION ~; .OLD, old; .BAK, bak in one full swoop, Folders are Excluded from Deletion. PDF Join #joins several pdf files in sorted order (page1.pdf , page2.pdf etc) , requires pdfjam http://freshmeat.net/projects/pdfjam Nautilus Archiver #Archive Extract Install Theme Font Installer #A simply and fast script that allow to easly install fonts without the shell Send Shortcut To... #send links to ... wherever you want[/B]
لاستخدام تلك المجموعة من الاسكربتات يجب ان تنزل البرامج التالية :
: Dependencies
المصدركود:
[B]lame, gidalog, vorbis tools and libraries, mencoder, Audacious, imagemagick, zenity (dialogs), xterm (to monitor the process), genisoimage (generate ISO image), pdfjam. [/B]
ثانيا : Enqueue in Audacious :
افتح ملف واكتب فيه مايلى :
كود:
#!/bin/bash FILES=${NAUTILUS_SCRIPT_SELECTED_FILE_PATHS} echo "${FILES}" | while read FILE; do if [ -n "${FILE}" ]; then audacious --enqueue "${FILE}" fi; done
المصدر
ثالثا : Enqueue in Totem :
افتح ملف واكتب فيه مايلى :
كود:
#! /bin/sh # A small script to enqueue media files in totem recursively # Written by Thura # Modified by Deepak John is_player_present=$(ps -e | grep totem) walk() { for file in "$1"/* do if [ -d "$file" ];then walk "$file" else if [ -n "$is_player_present" ];then totem --enqueue "$file" else totem "$file" fi fi done } if [ -d "$arg" ];then walk "$arg" else if [ -n "$is_player_present" ];then totem --enqueue "[email protected]" else totem "[email protected]" fi fi
المصدر
طريقة الاستخدام :
ضع الاسكربتات السابقة فى المسار التالى:
كود:
[SIZE=3][COLOR=Blue]/home/username/.gnome2/nautilus-scripts[/COLOR][/SIZE]
رابعا : Set as Wallpaper :
كود:
#!/bin/bash ##Written by Akshay Srinivasan. You're welcome to modify this script. This script requires Zenity to work as intended. FILE=`echo -n $NAUTILUS_SCRIPT_SELECTED_FILE_PATHS` if [ -n `file "$FILE" | grep image` ] then zenity --notification --text="$FILE is not an image." else gconftool-2 -t string -s /desktop/gnome/background/picture_filename "$FILE" fi exit
احفظ الملف
المصدر
خامسا : send to :
المصدر
سادسا : send-to-media :
المصدر
سابعا : copyto & moveto & uploadto :
طريقة الاستخدام :
قم بتنزيل الباكدج التالى python-nautilus
ضع الاسكربتات فى ذلك المسار
كود:
[SIZE=3][COLOR=Blue][I].nautilus/python-extensions[/I][/COLOR][/SIZE]
تعليق