worry free
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 253
Adblock 0.5.3.043
Adblock its a snap to filter elements at their source-address. more>>
Once installed, its a snap to filter elements at their source-address. Just right-click: Adblock: done.
Adblock filters use either the wildcard character or full Regular Expression syntax. Hit the status-element and see what has or hasnt been blocked.
A selected filter can be edited by double-clicking or pressing enter. To remove it, press delete. New filters can also be added here or directly in the web-page: just right-click an ad and choose the Adblock option. For plugins, an Adblock-tab will appear atop or below the media: just click the "Adblock" text.
[Note: if you encounter a plugin, but dont see the Adblock-tab, dont worry -- the plugin is just cropped. Adblock has this covered. Choose "Overlay Flash" from the tools-menu, or type its shortcut. Now, you can directly click the overlay.]
Adblock supports two types of filters: simple, and Regular Expression.
A simple-filter is just a string of text with one or more wildcards (*). Regular expressions are much more complex, allowing precise control over filtering. In Adblock, as in all javascript, regular expressions must begin and end with the forward-slash: /. This page doesnt have enough space to include a RegExp tutorial, so for more info, head here.
<<lessAdblock filters use either the wildcard character or full Regular Expression syntax. Hit the status-element and see what has or hasnt been blocked.
A selected filter can be edited by double-clicking or pressing enter. To remove it, press delete. New filters can also be added here or directly in the web-page: just right-click an ad and choose the Adblock option. For plugins, an Adblock-tab will appear atop or below the media: just click the "Adblock" text.
[Note: if you encounter a plugin, but dont see the Adblock-tab, dont worry -- the plugin is just cropped. Adblock has this covered. Choose "Overlay Flash" from the tools-menu, or type its shortcut. Now, you can directly click the overlay.]
Adblock supports two types of filters: simple, and Regular Expression.
A simple-filter is just a string of text with one or more wildcards (*). Regular expressions are much more complex, allowing precise control over filtering. In Adblock, as in all javascript, regular expressions must begin and end with the forward-slash: /. This page doesnt have enough space to include a RegExp tutorial, so for more info, head here.
Download (0.075MB)
Added: 2007-04-08 License: MIT/X Consortium License Price:
3366 downloads
GeekLog 1.3.11
GeekLog is a PHP and MySQL weblog. more>>
Geeklog is a weblog powered by PHP and MySQL. It allows you within minutes to set up a fully functioning dynamic website, and has many features to get you started.
Main features:
- User-system, allowing members of the public to register for your site and submit stories.
- Comment system, allowing users to comment on posts made to your site.
- Block system, allowing you to put information anywhere on your site.
- Plugin system that allows you to extend Geeklog, without having to code any new PHP.
- Theme system that allows users to select what layout they want to view.
- Excellent security model that allows you to give users control over certain aspects of the site with no need to worry.
- Site Statistics that show you the most popular areas of your site.
- Link system that allows users to add links to the site.
- Calendar System that lets you and your user add up-and-coming events.
- Allow users to email stories to their friends.
<<lessMain features:
- User-system, allowing members of the public to register for your site and submit stories.
- Comment system, allowing users to comment on posts made to your site.
- Block system, allowing you to put information anywhere on your site.
- Plugin system that allows you to extend Geeklog, without having to code any new PHP.
- Theme system that allows users to select what layout they want to view.
- Excellent security model that allows you to give users control over certain aspects of the site with no need to worry.
- Site Statistics that show you the most popular areas of your site.
- Link system that allows users to add links to the site.
- Calendar System that lets you and your user add up-and-coming events.
- Allow users to email stories to their friends.
Download (1.4MB)
Added: 2005-05-05 License: GPL (GNU General Public License) Price:
1632 downloads
FRUSTIX 08-01-04
FRUSTIX is a Linux OS which is distributed in an ISO image. more>>
FRUSTIX is a Linux OS which is distributed in an ISO image.
You can burn it to a CD (443 MB) and place it in your CD drive. Booting from this CD gives you a complete basic Linux with some apps and some games.
You dont need to worry about a harddisk, because it runs fine without one and doesnt touch it, if there is one.
If you need to save new created data, you can eject the FRUSTIX CD and use UDF formatted CD-RWs.
So if you wanna test it, then download it!
After resetting your computer and / or taking off the CD, you can run your previous operating system from HD again (if there already was any, before?).
<<lessYou can burn it to a CD (443 MB) and place it in your CD drive. Booting from this CD gives you a complete basic Linux with some apps and some games.
You dont need to worry about a harddisk, because it runs fine without one and doesnt touch it, if there is one.
If you need to save new created data, you can eject the FRUSTIX CD and use UDF formatted CD-RWs.
So if you wanna test it, then download it!
After resetting your computer and / or taking off the CD, you can run your previous operating system from HD again (if there already was any, before?).
Download (430MB)
Added: 2005-09-02 License: BSD License Price:
1513 downloads
libband 0.01
LibBand is a simple library wrapper which is useful if you want to limit the bandwidth used by a program. more>>
LibBand is a simple library wrapper written in assembly and C (but I plan to rewrite everything in C) useful if you want to limit the bandwidth used by a program.
It simply overrides some libc functions, using the LD_PRELOAD environment variable, and puts some pauses in the program to clamp the bandwidth at the specified value, for both upload and download operations.
You just have to set UPLOAD_BAND and DOWNLOAD_BAND and run your program, for example:
export LD_PRELOAD=/replace-with-the-path/to/libband.so
export UPLOAD_BAND=1024
export DOWNLOAD_BAND=8192
ftp somewhere.com
The bandwidth must be expressed in bytes/s, and so in the above example, we want the upload band clamped at 1.0 kb/s, the download band at 8.0 kb/s.
Theres a small utility in the scripts/ directory, called lb: you can use it to set everything and start your program from a nice whiptail/dialog environment.
You need NASM to build the binary (but dont worry, a pre-assembled version is included in the package).
Just type "make" to compile, and "make install" to install the library.
Remember that $HOME/lib is the default installation directory, so you usually have to export LD_PRELOAD by using:
export LD_PRELOAD=$HOME/lib/libband.so
The "lb" script is configured to work with this path, but you may change it by editing the script itself (search for the LIBPATH variable).
Please note that at the moment libBand DOESNT WORK with multithreaded and _graphic_ applications.
Enhancements:
- We keep track of sockets by wrapping socket(), accept() and close(). The old fstat() mechanism has been obsoleted.
<<lessIt simply overrides some libc functions, using the LD_PRELOAD environment variable, and puts some pauses in the program to clamp the bandwidth at the specified value, for both upload and download operations.
You just have to set UPLOAD_BAND and DOWNLOAD_BAND and run your program, for example:
export LD_PRELOAD=/replace-with-the-path/to/libband.so
export UPLOAD_BAND=1024
export DOWNLOAD_BAND=8192
ftp somewhere.com
The bandwidth must be expressed in bytes/s, and so in the above example, we want the upload band clamped at 1.0 kb/s, the download band at 8.0 kb/s.
Theres a small utility in the scripts/ directory, called lb: you can use it to set everything and start your program from a nice whiptail/dialog environment.
You need NASM to build the binary (but dont worry, a pre-assembled version is included in the package).
Just type "make" to compile, and "make install" to install the library.
Remember that $HOME/lib is the default installation directory, so you usually have to export LD_PRELOAD by using:
export LD_PRELOAD=$HOME/lib/libband.so
The "lb" script is configured to work with this path, but you may change it by editing the script itself (search for the LIBPATH variable).
Please note that at the moment libBand DOESNT WORK with multithreaded and _graphic_ applications.
Enhancements:
- We keep track of sockets by wrapping socket(), accept() and close(). The old fstat() mechanism has been obsoleted.
Download (0.022MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1502 downloads
RubyGems 0.8.11
RubyGems is the premier ruby packaging system. more>>
RubyGems is the premier ruby packaging system.
It provides:
- A standard format for destributing Ruby programs and libraries.
- An easy to use tool for managing the installation of gem packages.
- A gem server utility for serving gems from any machine where RubyGems is installed.
RubyGems Benefits
Using RubyGems, you can:
- download and install Ruby libraries easily
- not worry about libraries A and B depending on different versions of library C
- easily remove libraries you no longer use
- have power and control over your Ruby platform!
Main features:
- Easy Installation and removal of RubyGems packages and their dependents.
- Management and control of local packages
- Package dependency management
- Query, search and list local and remote packages
- Multiple version support for installed packages
- Web-based interface to view the documentation for your installed gems
- Easy to use interface for building gem packages
- Simple server for distributing your own gem packages
<<lessIt provides:
- A standard format for destributing Ruby programs and libraries.
- An easy to use tool for managing the installation of gem packages.
- A gem server utility for serving gems from any machine where RubyGems is installed.
RubyGems Benefits
Using RubyGems, you can:
- download and install Ruby libraries easily
- not worry about libraries A and B depending on different versions of library C
- easily remove libraries you no longer use
- have power and control over your Ruby platform!
Main features:
- Easy Installation and removal of RubyGems packages and their dependents.
- Management and control of local packages
- Package dependency management
- Query, search and list local and remote packages
- Multiple version support for installed packages
- Web-based interface to view the documentation for your installed gems
- Easy to use interface for building gem packages
- Simple server for distributing your own gem packages
Download (0.15MB)
Added: 2005-09-23 License: GPL (GNU General Public License) Price:
1493 downloads
Variable Expression Library 1.1
Variable Expression Library is a C++ library that expands variables in text buffers. more>>
libvarexp is a C++ library that allows its users to detach any kind of information from the representation of that information by providing a simple-to-use but powerful text-template mechanism.
Similar mechanisms have been available in tools like sh(1), make(1), or perl(1) forever and have proven to be very useful.
The basic idea is that the relevant information is made available in variables, which the author of the template can than use within the text itself as he or she sees fit.
Consider, for example, a tool that will calculate the monthly financial reports of a small company.
Such a program should only calculate the required values, it should not worry about writing the resulting reports into an HTML file, a CSV file, or whatever format is desired. Instead, it should make the results of the calculation available in the variables "$TURNOVER", "$PROFIT", and "$INCREASE".
Then, using libvarexp, it could load an arbitrary template file and have the actual values inserted at the apropriate positions. Without changing a single line of code, one could generate the monthly report in HTML
<<lessSimilar mechanisms have been available in tools like sh(1), make(1), or perl(1) forever and have proven to be very useful.
The basic idea is that the relevant information is made available in variables, which the author of the template can than use within the text itself as he or she sees fit.
Consider, for example, a tool that will calculate the monthly financial reports of a small company.
Such a program should only calculate the required values, it should not worry about writing the resulting reports into an HTML file, a CSV file, or whatever format is desired. Instead, it should make the results of the calculation available in the variables "$TURNOVER", "$PROFIT", and "$INCREASE".
Then, using libvarexp, it could load an arbitrary template file and have the actual values inserted at the apropriate positions. Without changing a single line of code, one could generate the monthly report in HTML
Download (0.093MB)
Added: 2005-10-06 License: BSD License Price:
1478 downloads
ripOLE 0.2.0
ripOLE is a small program/library designed to pull out attachments from OLE2 data files. more>>
ripOLE is a small program/library designed to pull out attachments from OLE2 data files (ie, MS Office documents). ripOLE is BSD licenced meaning that commercial projects can also use the code without worry of licence costs or legal liabilities.
Example:
bash-2.05a$ ./ripole -i xam-doc1.doc -v -d tmp
Decoding filename=short-XAMIME.dat
Decoding filename=mp71.exe
Decoding filename=MPSetup.exe
Installation:
make
./ripole your-ole.doc
Enhancements:
- Improved OLE decoding.
- This is a highly recommended upgrade.
<<lessExample:
bash-2.05a$ ./ripole -i xam-doc1.doc -v -d tmp
Decoding filename=short-XAMIME.dat
Decoding filename=mp71.exe
Decoding filename=MPSetup.exe
Installation:
make
./ripole your-ole.doc
Enhancements:
- Improved OLE decoding.
- This is a highly recommended upgrade.
Download (0.025MB)
Added: 2005-12-12 License: BSD License Price:
1412 downloads
mCube Music Manager 20051221
mCube is a digital music manager. more>>
mCube Music Manager project is a digital music manager. The target is to let user manage and choose music to listen with the comfort and feeling of browsing physical compact disc and with the power of computer aided search, sort and categorization.
Main features:
- Folders synchronization: add a folder to mCube Library and you never need to worry about it anymore.
- Tagging System allows to build a categorization that evolves with the library and with user needs. Tag Cosmos allow you to navigate through your tags easily
- Many different Views for displaying Artists, Albums, Tracks or your Compilations. You can build your own page with the view you like in the way you like.
- Quick search box to filter all library a la iTunes/Firefox/Thunderbird
- Edit Album Information and automatically update file tag
- Easy filter for different album types (Live, Sountrack...) and support for multiple CDs albums
- Export selected songs or albums to an external folder: youll never need to use File Managers anymore!
- Play songs or albums with default system player.
- mCube is open source and, of course, free!
<<lessMain features:
- Folders synchronization: add a folder to mCube Library and you never need to worry about it anymore.
- Tagging System allows to build a categorization that evolves with the library and with user needs. Tag Cosmos allow you to navigate through your tags easily
- Many different Views for displaying Artists, Albums, Tracks or your Compilations. You can build your own page with the view you like in the way you like.
- Quick search box to filter all library a la iTunes/Firefox/Thunderbird
- Edit Album Information and automatically update file tag
- Easy filter for different album types (Live, Sountrack...) and support for multiple CDs albums
- Export selected songs or albums to an external folder: youll never need to use File Managers anymore!
- Play songs or albums with default system player.
- mCube is open source and, of course, free!
Download (9.4MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1405 downloads
javaLogic 0.1
Javalogic is a free library that leads to the creation of a visual implementation of the application logics. more>>
Javalogic is a free library that leads to the creation of a visual implementation of the application logics.
This will let the software developer not to worry about changing code againts any rule modification.
The software developer can delegate this to his customer, supplying him with a SIMPLE construction window.
javaLogic is free software released under the LGPL.
<<lessThis will let the software developer not to worry about changing code againts any rule modification.
The software developer can delegate this to his customer, supplying him with a SIMPLE construction window.
javaLogic is free software released under the LGPL.
Download (1.9MB)
Added: 2006-01-10 License: LGPL (GNU Lesser General Public License) Price:
1382 downloads
Midge 20060203
Midge is a linux mini-distribution for ADM5120 based routers, such as Edimax BR-6104K. more>>
Midge is a linux mini-distribution for ADM5120 based routers, such as Edimax BR-6104K.
Also midge uses ipkg package manager, which can be used for installing new software.
Midge divided to 3 versions: jffs2, tmpfs and usb - difference on which root filesystem is used.
- jffs2 version uses jffs2 root filesystem (of course). It has small (~512k) initial rom filesystem, and big (~800k) filesystem for user data. It can be used on system which have some services (micro servers) and/or if you want install custom software. Advantage of jffs2 filesystem is a journal filesystem - you can do not worry about rootfs safety.
- tmpfs version uses tmpfs root filesystem. It has big (1280k) initial rom filesystem, and small (256k) data partition. It can be used on typical routers.
- usb1) version uses root filesystem on usb storage (USB-Flash, USB-HDD).
Enhancements:
- This release adds an upstream update (OpenWrt kamikaze), more modular firmware, USB-Storage support, and bugfixes.
<<lessAlso midge uses ipkg package manager, which can be used for installing new software.
Midge divided to 3 versions: jffs2, tmpfs and usb - difference on which root filesystem is used.
- jffs2 version uses jffs2 root filesystem (of course). It has small (~512k) initial rom filesystem, and big (~800k) filesystem for user data. It can be used on system which have some services (micro servers) and/or if you want install custom software. Advantage of jffs2 filesystem is a journal filesystem - you can do not worry about rootfs safety.
- tmpfs version uses tmpfs root filesystem. It has big (1280k) initial rom filesystem, and small (256k) data partition. It can be used on typical routers.
- usb1) version uses root filesystem on usb storage (USB-Flash, USB-HDD).
Enhancements:
- This release adds an upstream update (OpenWrt kamikaze), more modular firmware, USB-Storage support, and bugfixes.
Download (1.6MB)
Added: 2006-02-04 License: GPL (GNU General Public License) Price:
1364 downloads
Qixite 0.0.15
Qixite is a program for creating web sites. more>>
Qixite is an application for creating web sites. User just has to worry about information and structure of site, Qixite will do all the rest.
This is a very short description of what Qixite does:
- generates a set of HTML pages with the links between them.
- generates a site map for your web site.
Qixite uses predefined templates for site generation, but if you know XSL you can create your own templates or edit the ones that come with the program.
<<lessThis is a very short description of what Qixite does:
- generates a set of HTML pages with the links between them.
- generates a site map for your web site.
Qixite uses predefined templates for site generation, but if you know XSL you can create your own templates or edit the ones that come with the program.
Download (0.54MB)
Added: 2006-03-02 License: GPL (GNU General Public License) Price:
1331 downloads
PHP-IRC 2.2.1
PHP-IRC is a modular IRC bot written in PHP5 with a combination of object based/oriented programming. more>>
PHP-IRC is a modular IRC bot written in PHP5 with a combination of object based/oriented programming. PHP-IRC operates under several different platforms with the purpose of automating common information related tasks on IRC.
There are two main reasons that PHP was selected as the primary language. First off, I wanted to provide novice programmers a way to code their own functions and abilities into a powerful platform without having to worry about such things as memory management and compilers.
Secondly, I wanted to do something that no one has done before--create a fully featured bot in php. I dont know if I will ever complete the second objective, but I will keep on developing, as it will always be the main goal of this project.
Main features:
- DCC Chat Support with custom DCC Chat handlers
- DCC File transfer support (inc. mIRC Rev. Protocol)
- Modular based function support
- Event based, with user-definable event handling
- Full support for timers
- Channel and user tracking, with user modes and count
- Multiple bots under one process
- Remote admin via DCC Chat or private message
- MySQL support
- Very in-depth documentation
- ... and much more!
<<lessThere are two main reasons that PHP was selected as the primary language. First off, I wanted to provide novice programmers a way to code their own functions and abilities into a powerful platform without having to worry about such things as memory management and compilers.
Secondly, I wanted to do something that no one has done before--create a fully featured bot in php. I dont know if I will ever complete the second objective, but I will keep on developing, as it will always be the main goal of this project.
Main features:
- DCC Chat Support with custom DCC Chat handlers
- DCC File transfer support (inc. mIRC Rev. Protocol)
- Modular based function support
- Event based, with user-definable event handling
- Full support for timers
- Channel and user tracking, with user modes and count
- Multiple bots under one process
- Remote admin via DCC Chat or private message
- MySQL support
- Very in-depth documentation
- ... and much more!
Download (0.10MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1317 downloads
libqsearch 0.8
libqsearch provides an API for searching for a set of patterns. more>>
libqsearch is a C library aimed to search for set of patterns in buffers as fast as possible. It has also been ported to kernel space.
The idea is to have an API frontend that give you the ability to load plugins. Each plugin can provide one or more algorithms. Each algorithm can be instantiated to one or more search objects. Then you add patterns to the object (patterns can include (!), and can be case sensitive or not, include jokers, ..).
Then you compile it. The search object will then be able to search simultaneously every patterns (even of heterogeneous types) in a given buffer. One of the interests is the use of states to summarize a past search.
States are trivially implemented for automata based algorithms, and are not so hard to implement for other algorithms (if n is the longest pattern, just keep the n-1 last bytes in the state for the next search). This give you the ability to match patterns that overlap on 2 buffers without having to worry about that (TCP reassembly for IDSes is greatly simplified : no need to move paylods to adjacents zones, no need to keep a paylod in memory waiting for the next. Benefits for AV that work on flux could be great too).
This API is also implemented for linux kernels. For each algorithm, a wrapper is automatically generated for it to be compiled with the kernel. The API and the algorithms can also be compiled as LKM.
<<lessThe idea is to have an API frontend that give you the ability to load plugins. Each plugin can provide one or more algorithms. Each algorithm can be instantiated to one or more search objects. Then you add patterns to the object (patterns can include (!), and can be case sensitive or not, include jokers, ..).
Then you compile it. The search object will then be able to search simultaneously every patterns (even of heterogeneous types) in a given buffer. One of the interests is the use of states to summarize a past search.
States are trivially implemented for automata based algorithms, and are not so hard to implement for other algorithms (if n is the longest pattern, just keep the n-1 last bytes in the state for the next search). This give you the ability to match patterns that overlap on 2 buffers without having to worry about that (TCP reassembly for IDSes is greatly simplified : no need to move paylods to adjacents zones, no need to keep a paylod in memory waiting for the next. Benefits for AV that work on flux could be great too).
This API is also implemented for linux kernels. For each algorithm, a wrapper is automatically generated for it to be compiled with the kernel. The API and the algorithms can also be compiled as LKM.
Download (0.40MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1304 downloads
Xsnow 1.42
Xsnow is the X-windows application that will let it snow on the root, in between and on windows. more>>
Xsnow application is the X-windows application that will let it snow on the root, in between and on windows.
Santa and his reindeer will complete your festive-season feeling.
How to compile:
To build:
xmkmf
make depend
make
To run:
./xsnow
or:
./xsnow& (in the background)
To install (be root):
make install
make install.man
If xmkmf does not work and you cannot get a working Makefile that way then try compiling yourself, eh, xsnow this way:
cc -o xsnow snow.c -lXext -lX11 -lXpm -lm -lsocket -lnsl
gcc, SUN Solaris users without a C-compiler, but with gcc installed, try the following two commands. The first compiles Xsnow, the second links Xsnow.
gcc -c -O2 -I/usr/openwin/include -DSVR4 -DSYSV xsnow.c
gcc -o xsnow xsnow.o -O2 -L/usr/openwin/lib -lXext -lX11 -lXpm -lm -lsocket -lnsl
Note: Xsnow-1.41 needs the Xpm library. It is available from:
ftp://ftp.x.org/contrib/libraries/
The current Xpm version is xpm3.4k
Enhancements:
- All you KDE-users can now be even happier with a KDE-enabled Xsnow 1.42!
- The snow will magnificently wipe out your icons, but not to worry, theyre not really gone.
- By wiping with a window or something you can make them reappear.
- Car owners are used to this for years. Thanks to Robin Hogan who figured this out for xpenguin.
<<lessSanta and his reindeer will complete your festive-season feeling.
How to compile:
To build:
xmkmf
make depend
make
To run:
./xsnow
or:
./xsnow& (in the background)
To install (be root):
make install
make install.man
If xmkmf does not work and you cannot get a working Makefile that way then try compiling yourself, eh, xsnow this way:
cc -o xsnow snow.c -lXext -lX11 -lXpm -lm -lsocket -lnsl
gcc, SUN Solaris users without a C-compiler, but with gcc installed, try the following two commands. The first compiles Xsnow, the second links Xsnow.
gcc -c -O2 -I/usr/openwin/include -DSVR4 -DSYSV xsnow.c
gcc -o xsnow xsnow.o -O2 -L/usr/openwin/lib -lXext -lX11 -lXpm -lm -lsocket -lnsl
Note: Xsnow-1.41 needs the Xpm library. It is available from:
ftp://ftp.x.org/contrib/libraries/
The current Xpm version is xpm3.4k
Enhancements:
- All you KDE-users can now be even happier with a KDE-enabled Xsnow 1.42!
- The snow will magnificently wipe out your icons, but not to worry, theyre not really gone.
- By wiping with a window or something you can make them reappear.
- Car owners are used to this for years. Thanks to Robin Hogan who figured this out for xpenguin.
Download (0.055MB)
Added: 2006-04-13 License: Freeware Price:
1292 downloads
zimwm 0.0.5
zimwm is the window manager of the zde project. more>>
Zeta Desktop Environment (ZDE) is an X11 window manager and tools with enhanced usability and features for developers and advanced users.
Some of its current sub-projects include imp, a library of core functions such as linked lists, zwl, a simple widget toolkit and light X11 wrapper, and zimwm, the window manager.
zimwm is the window manager of the zde project. Planned features include vi and emacs style keybindings, a command-line interface with shell-like capabilities to control zimwm in real time, and dynamically-generated menus and thumbnails for iconified windows and the pager. This means using new technologies such as XRender, the Composite extension, cairo, and the freedesktop.org standards in order to provide the best possible experience.
Inspiration was obtained from (in no particular order) Ion, lwm,
Enlightenment DR16 and DR17, ratpoison, awm, waimea, ewm, failsafewm, heliwm,
jwm, mosquito, nwm, pawm, phluid, swm, uwm, wmii, pekwm, xswm, fluxbox,
openbox, any other box, sawfish, metacity, kwin, xfwm4, twm, icewm, and fvwm.
I tried really hard to like you guys, but you all fell short in at least one
critical area. But dont worry, Im stealing some of your best ideas and
combining them with my own into zimwm.
Enhancements:
- This release adds support for virtual workspaces/desktops and loadable modules.
<<lessSome of its current sub-projects include imp, a library of core functions such as linked lists, zwl, a simple widget toolkit and light X11 wrapper, and zimwm, the window manager.
zimwm is the window manager of the zde project. Planned features include vi and emacs style keybindings, a command-line interface with shell-like capabilities to control zimwm in real time, and dynamically-generated menus and thumbnails for iconified windows and the pager. This means using new technologies such as XRender, the Composite extension, cairo, and the freedesktop.org standards in order to provide the best possible experience.
Inspiration was obtained from (in no particular order) Ion, lwm,
Enlightenment DR16 and DR17, ratpoison, awm, waimea, ewm, failsafewm, heliwm,
jwm, mosquito, nwm, pawm, phluid, swm, uwm, wmii, pekwm, xswm, fluxbox,
openbox, any other box, sawfish, metacity, kwin, xfwm4, twm, icewm, and fvwm.
I tried really hard to like you guys, but you all fell short in at least one
critical area. But dont worry, Im stealing some of your best ideas and
combining them with my own into zimwm.
Enhancements:
- This release adds support for virtual workspaces/desktops and loadable modules.
Download (0.35MB)
Added: 2006-04-20 License: LGPL (GNU Lesser General Public License) Price:
1282 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above worry free search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed