Icon herding gets easier with Tango Generator


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Icon herding gets easier with Tango Generator
# 1  
Old 03-05-2008
Icon herding gets easier with Tango Generator

Wed, 05 Mar 2008 19:00:00 GMT
When you want to customize the look and feel of your Linux desktop environment, you can find many resources for altering window managers and interface widgets, but working with icons has always been more of an issue. Now you can get help with icons from a new program called Tango Generator.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Consolidate several lines of a CSV file with firewall rules, in order to parse them easier?

Consolidate several lines of a CSV file with firewall rules Hi guys. I have a CSV file, which I created using an HTML export from a Check Point firewall policy. Each rule is represented as several lines, in some cases. That occurs when a rule has several address sources, destinations or... (4 Replies)
Discussion started by: starriol
4 Replies

2. UNIX for Dummies Questions & Answers

An easier way to move character from field to a new line

Hi ! Is there a more convenient way to do the following: When, in $2, there is more then one letter (separated by ","), it returns the letter on the second position to a new line in $2 with the same content in $1 and $3 as the line this letter comes from. infile: aaaaa A,B 1,2,3,4,5... (6 Replies)
Discussion started by: lucasvs
6 Replies

3. UNIX for Dummies Questions & Answers

SSH - please make my life easier

I know this is probably a really stupid question, with a really stupidly simple answer. So I've got a Mac, and I have to do a bunch of work via SSH on a Solaris workstation owned by my university. I've already got keys set up, and my ~/.ssh/config file set up as follows: Host prime ... (6 Replies)
Discussion started by: oboewan
6 Replies

4. What is on Your Mind?

Easier solution to transfer blu-ray and DVD to iPad

Easier solution to transfer blu-ray and DVD to iPad with just one mouse click Because of its 9.7-inch 1024×768 high resolution multi-touch screen, iPad is convenient and comfortable for users to read newspapers, magazines, books, view photos, experience the web, touch emails, and watch any... (0 Replies)
Discussion started by: Molica
0 Replies

5. Shell Programming and Scripting

Help make script much easier

Is there any method to realise this in one command? Thanks in advance (2 Replies)
Discussion started by: GCTEII
2 Replies

6. Cybersecurity

Dancing a samba is easier :(

Hello everybody, I am trying to get a suse linux computer ( 7.2 ) to show me my home directory under windows. I got samba started, and I can see the linux computer under windows, but when I try to open it, I get a login box. That is not so bad :) but I can't log on. I am using windows 2000 and I... (5 Replies)
Discussion started by: Micky
5 Replies
Login or Register to Ask a Question
XGetIconName()															    XGetIconName()

Name
  XGetIconName - get the name to be displayed in an icon.

Synopsis
  Status XGetIconName(display, w, icon_name_return)
	Display *display;
	Window w;
	char **icon_name_return;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies the ID of the window whose icon name you want to learn.

  icon_name_return
	    Returns  a pointer to the name to be displayed in the window's icon.  The name is a NULL-terminated string.  If the data returned
	    by the server is in the Latin Portable Character Encoding, then the returned string is in the Host Portable  Character  Encoding.
	    Otherwise,	the result is implementation-dependent.  If a name hasn't been assigned to the window, XGetIconName() sets this argu-
	    ment to NULL.  When finished with it, a client must free the icon name string using XFree().

Returns
  Zero on failure, non-zero on success.

Description
  XGetIconName() is superseded by XGetWMIconName() in Release 4.  XGetIconName() reads the icon name property of a window.  This function  is
  primarily  used  by  window  managers to get the name to be written in a window's icon when they need to display that icon.  XGetIconName()
  returns a non-zero Status if it succeeds, and zero if no icon name has been set for the argument window.

  For more information, see Volume One, Chapter 12, Interclient Communication.

Errors
  BadWindow

See Also
  XFetchName(), XGetClassHint(), XGetIconSizes(), XGetNormalHints(), XGetSizeHints(), XGetTransientForHint(), XGetWMHints(), XGetZoomHints(),
  XSetClassHint(), XSetCommand(), XSetIconName(), XSetIconSizes(), XSetNormalHints(), XSetSizeHints(), XSetTransientForHint(), XSetWMHints(),
  XSetZoomHints(), XStoreName().

Xlib - Window Manager Hints													    XGetIconName()