Adding Applets to panel


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Adding Applets to panel
# 1  
Old 06-08-2009
Adding Applets to panel

This may sound simple, but its not! I have been making a few live-cds lately and have been customizing it using gconftool-2 --direct etc.... to change background, panel color etc... I have looked and looked but cannot find a way to add a applet to the top panel via command line, im sure there must be a way, and would really appreciate any help,

Thanks in advance
Dave
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Linux

System Panel disappear.

Dear all, I lost my CentOS 6.4, Systems default bar/panel where we navigate our system for the Applications, Places & System, Is there anyone who can help me please??? (1 Reply)
Discussion started by: saqlain.bashir
1 Replies

2. Red Hat

Gnome3 top panel

I installed fedora15, but it's panel is on the top. How to move it down to the bottom? (2 Replies)
Discussion started by: vistastar
2 Replies

3. Shell Programming and Scripting

Security for applets files inside a folder

Friends I have a directory structure /a/b/c/applets/ This directory has .java, .class and other applet files. I gave the applets folder 755 permission because these applets are displayed at different web pages of a portal. Now I want to restrict the visibility of all the files in this... (0 Replies)
Discussion started by: dahlia84
0 Replies

4. Red Hat

Firefox do not starts from Panel

Hi I am facing a problem related firefox and some other applications like DocumentViewer (evince). I can run the firefox from terminal by just giving command "firefox" but when I made its shortcut in panel and try to run through that panel shortcut , the mouse coursor just becomes busy for... (10 Replies)
Discussion started by: mak_mailbox
10 Replies

5. AIX

alert signal in panel

hi experts, In my AIX p-series server, in the panel board, i saw the attention singal is glowing..... i dont know how to clear this from console/remotly..... please help me out. thanks in advance (3 Replies)
Discussion started by: rrlog
3 Replies

6. What is on Your Mind?

Flat Panel Display

Hi, I am going to buy a new TV set, but I am not sure what to buy.. I would like to have a Flat Screen, around 42" (~106cm), but i am a bit confused... Reading the technical papers, plasma displays seems to better, but talking with friends and colleagues, they would prefer LCDs... Plasma... (2 Replies)
Discussion started by: pressy
2 Replies

7. UNIX for Dummies Questions & Answers

Control Panel seeking.

Hi, guys. My friends and I used to rent space from our ISP, and they applied Cpanel to help us to config. Recently we just upgrade to the dedicated server plan, and there is nothing but only the os has been installed. Since Cpanel is the commercial software, we cannot afford it, we need to find a... (2 Replies)
Discussion started by: HOUSCOUS
2 Replies

8. Shell Programming and Scripting

Deleting files from applets

I am using a perl script which deletes the files in a temp area, when run from the command prompt, but fails when called from the applet through URL. The permissions for the files and directory is "777". what may be the reason......?????? help me out..... thanks, Jay. (1 Reply)
Discussion started by: Jayathirtha
1 Replies
Login or Register to Ask a Question
panel_new(3CURSES)					     Curses Library Functions						panel_new(3CURSES)

NAME
panel_new, new_panel, del_panel - create and destroy panels SYNOPSIS
cc [ flag ... ] file ... -lpanel -lcurses [ library .. ] #include <panel.h> PANEL *new_panel(WINDOW *win); int del_panel(PANEL *panel); DESCRIPTION
new_panel() creates a new panel associated with win and returns the panel pointer. The new panel is placed on top of the panel deck. del_panel() destroys panel, but not its associated window. RETURN VALUES
new_panel() returns NULL if an error occurs. del_win() returns OK if successful, ERR otherwise. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
curses(3CURSES), panel_update(3CURSES), panels(3CURSES), attributes(5) NOTES
The header <panel.h> automatically includes the header <curses.h>. SunOS 5.11 31 Dec 1996 panel_new(3CURSES)