Kommando: A floating panel for KDE


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Kommando: A floating panel for KDE
# 1  
Old 01-25-2008
Kommando: A floating panel for KDE

Fri, 25 Jan 2008 16:00:00 GMT
Inspired by the command wheel in the Neverwinter Nights online game, Kommando is a floating command panel for KDE. Although Kommando's development is almost as slow as an official Debian release, and is only at version 0.5.2, it is already a configurable and convenient addition to the array of panels available in KDE.


Source...
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. 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

4. UNIX for Dummies Questions & Answers

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... (0 Replies)
Discussion started by: dave123
0 Replies

5. UNIX for Dummies Questions & Answers

Desktop Panel misbehaviour

On my Desktop panel the 'shortcuts' to 'Places' all opens Rhytmbox instaed of Documents,Pictures etc. My system is SunOS Ultra20 5.11 snv_99 i86pc i386 i86pc Solaris It came with my first opening of rhytmbox.:confused: Does anybody know how to fix this? (0 Replies)
Discussion started by: vatch23
0 Replies

6. 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

7. 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

8. 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
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)