Shell Script to change desktop short cut Icon

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Shell Script to change desktop short cut Icon
# 1  
Old 04-25-2012
Shell Script to change desktop short cut Icon

I have installed my flash application using shell script. I have created short cut to desktop. Now i want to change the default short cut Icon. Please tell me script to change the short cut icon.

---------- Post updated at 12:54 AM ---------- Previous update was at 12:33 AM ----------

Working on MAC 10.7.2

Last edited by rohaneee; 04-25-2012 at 06:09 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Create/remove desktop short cuts via command line RHEL 6.3....

I would like to write a script that would remove and/or create shortcuts in Gnome desktop in RHEL 6.3... I googled all over the place could never find what I needed... Any help would be greatly appreciated! Thank you! (0 Replies)
Discussion started by: ruberked
0 Replies

2. Shell Programming and Scripting

Is it possible to change shell icon?

I have an application that runs through bash shell and i want to change the shell icon , so when i copy my application to another computer the shell can still run , can i do that ? because i try with .desktop its failed (0 Replies)
Discussion started by: caladblog
0 Replies

3. Shell Programming and Scripting

How do I do a short delay (milliseconds) in a shell script?

I need to put a small delay into a shell script. I'm looking for something smaller than "sleep" - a second is way too long. I want to sleep something like 10 milliseconds. I've tried "usleep" and "nanosleep", but the script doesn't recognize them. I'm using the bash shell but I'm willing to... (9 Replies)
Discussion started by: harmlesscat
9 Replies

4. OS X (Apple)

Change app Icon when script is completed.

In a recent topic, I asked how I could run a shell code without having to deal with terminal opening. What I'm trying to accomplish now is to make my app change it's icon when the code is complete. (With complete I mean when the process is done.) Thanks in advance. :) (10 Replies)
Discussion started by: ShadowofLight
10 Replies

5. Shell Programming and Scripting

Short cut for su and cd ?

Situation: I've logged in as ordinary_user1; I can su to common_dev_user; When I su to common_dev_user, I'm taken to the HOME dir of common_dev_user; Everytime I need to cd to a particular folder from here (say like cd /developers/ordinary_user1/code/) This is a repetitive task (su ing and... (3 Replies)
Discussion started by: krishmaths
3 Replies

6. Shell Programming and Scripting

Java Desktop Icon - which window manager?

I have a Java app that is deployed on several Unix systems. Until recently, starting it from the command line was no problem. A recent requirement is to deliver a desktop icon that will launch the app. I have launched apps with icons before, but that was when I knew exactly which window... (1 Reply)
Discussion started by: herbmiller
1 Replies

7. UNIX for Dummies Questions & Answers

Change an Icon

Dear Experts I have made an Icon and now I am going to change a file Icon to new one. I am using Solaris 8. 1- What is the best format to save an Icon 2- How can I change the Icon of a certain type or just one file or folder to the new Icon which I have designed. Any advises would be highly... (1 Reply)
Discussion started by: Reza Nazarian
1 Replies
Login or Register to Ask a Question
CUT-DIFF(1)							  Cutter's manual						       CUT-DIFF(1)

NAME
cut-diff - show difference between 2 files with color SYNOPSIS
cut-diff [option ...] file1 file2 DESCRIPTION
cut-diff is a diff command that uses diff feature in Cutter. It shows difference with color. It's recommended that you use a normal diff(1) when you want to use with patch(1) or you don't need color. OPTIONS
--version cut-diff shows its own version and exits. -c [yes|true|no|false|auto], --color=[yes|true|no|false|auto] If 'yes' or 'true' is specified, cut-diff uses colorized output by escape sequence. If 'no' or 'false' is specified, cut-diff never use colorized output. If 'auto' or the option is omitted, cut-diff uses colorized output if available. The default is auto. -u, --unified cut-diff uses unified diff format. --context-lines=LINES Shows diff context around LINES. All lines are shown by default. When unified diff format is used, 3 lines are shown by default. --label=LABEL, -L=LABEL Uses LABEL as a header label. The first--label option value is used as file1's label and the second --label option value is used asfile2's label. Labels are the same as file names by default. EXIT STATUS
The exit status is 0 for success, non-0 otherwise. TODO: 0 for non-difference, 1 for difference and non-0 for errors. EXAMPLE
In the following example, cut-diff shows difference between file1 and file2: % cut-diff file1 file2 In the following example, cut-diff shows difference between file1 and file2 with unified diff format: % cut-diff -u file1 file2 SEE ALSO
diff(1) Cutter February 2011 CUT-DIFF(1)