Main > Free Download Search >

Free can stop software for linux

can stop

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 653
Command Executor 0.2

Command Executor 0.2


Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. more>>
Command Executor is an amaroK script which execute an internal command (e.g. stop playing) when reaches that entry. Sometimes it is useful to execute some external commands (e.g. shutdown) when playing reached a certain place (e.g. end of album).

This script does the job. If amaroK starts playing a track from the "Shell Command" album, this script executes the comment tag of the track as a shell command.

You need some prepared audio files, with correctly filled tags. There are three .ogg files enclosed for stop playing, shutdown and hibernate the computer.

<<less
Download (0.005MB)
Added: 2006-03-06 License: GPL (GNU General Public License) Price:
1330 downloads
Stopwatch 0.8.4

Stopwatch 0.8.4


Upon installation, you will notice an extra item in your Firefox Tools menu. more>>

Stopwatch 0.8.4 brings users the convenience of a very simple yet helpful Firefox extension that serves as a stopwatch for you to time things. Upon installation, you will notice an extra item in your Firefox "Tools" menu.

When you select the Stopwatch item, a stopwatch window will appear. The stopwatch is pretty straightforward to use, simply press the start button to begin counting, press stop to stop the count, and press reset to bring the count back to 0.

Requirements: Firefox


<<less
Added: 2009-07-21 License: MPL Price: FREE
48 downloads
goocal 0.1

goocal 0.1


goocal provides a statusbar-addon that links to Google calendar. more>>
goocal provides a statusbar-addon that links to Google calendar.

Statusbar-Addon that links to google calendar. Really basic right now: left click opens it in current tab, middle click in new tab, and right click in new window.

Im hoping to add the login feature next, to stop my co-workers from pestering me!

<<less
Download (0.004MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
927 downloads
Stopmotion 0.6.0

Stopmotion 0.6.0


Stopmotion is a free application for creating stop-motion animation movies. more>>
Stopmotion is a free application for creating stop-motion animation movies. The users will be able to create stop-motions from pictures imported from a camera or from the harddrive, add sound effects and export the animation to different video formats such as mpeg or avi.

Stopmotion creates stop motion animations by combining images imported from a v4l (or similar) device with sound.

Installation:

If you run Debian the easiest way to install this program is to add this line to your sources.list file:

deb http://www.skolelinux.no/~bjoern/debian/ unstable main

Then run apt-get update and apt-get install stopmotion.

If you do not run Debian you have to compile the program from source. We have not focused on getting the configure script as good as it should be; you will not get any error message if you do not have the necessary libraries installed. This will hopefully be fixed later.

<<less
Download (2.2MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
975 downloads
PAM Sessionrun 0.1

PAM Sessionrun 0.1


PAM Sessionrun is a PAM module that can run a script on the start and stop of a PAM session. more>>
PAM Sessionrun is a PAM module that can run a script on the start and stop of a PAM session.
The script is provided the username and password (if available) of the user when it is ran.
Main features:
- Mounting/unmounting volumes on login/logout
- Caching passwords for other services
- Enforcing certain scripts to be ran on login
- Controlling access to a machine via return code from a script
- Anything else you can think of.
Enhancements:
- This is the initial release of PAM Sessionrun.
- It is tested somewhat but not extensively so consider it alpha software as of now, but expect that to rapidly change as I am doing some widespread work with it during the next couple weeks which should hopefully shake out any bugs.
<<less
Download (0.10MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1367 downloads
Ucarpctl 0.2

Ucarpctl 0.2


Ucarpctl allows you to store your configuration settings in a configuration file. more>>
Ucarpctl allows you to store your configuration settings in a configuration file, /etc/ucarp.conf, and start, stop and check the status of your ucarp instances.
Enhancements:
- Added "neutral" option to support ucarp 1.2
<<less
Download (0.008MB)
Added: 2006-04-12 License: BSD License Price:
1290 downloads
NGStar 2.1.8

NGStar 2.1.8


NGStar is a clone of the HP48 game dstar. more>>
NGStar project is a clone of the HP48 game dstar. A little circle that runs fast but doesnt know how to stop has to collect gifts with the help of its stopper friend the square.
Installation:
$ ./configure
$ make
$ make install
Enhancements:
- The ncurses GUI was polished with a score panel.
- The levelset panel and a black-and-white mode were finished.
- Various small bugfixes were made.
<<less
Download (0.23MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
767 downloads
AutoLoader 5.63

AutoLoader 5.63


AutoLoader is a Perl module that can load subroutines only on demand. more>>
AutoLoader is a Perl module that can load subroutines only on demand.

SYNOPSIS

package Foo;
use AutoLoader AUTOLOAD; # import the default AUTOLOAD subroutine

package Bar;
use AutoLoader; # dont import AUTOLOAD, define our own
sub AUTOLOAD {
...
$AutoLoader::AUTOLOAD = "...";
goto &AutoLoader::AUTOLOAD;
}

The AutoLoader module works with the AutoSplit module and the __END__ token to defer the loading of some subroutines until they are used rather than loading them all at once.

To use AutoLoader, the author of a module has to place the definitions of subroutines to be autoloaded after an __END__ token. (See perldata.) The AutoSplit module can then be run manually to extract the definitions into individual files auto/funcname.al.

AutoLoader implements an AUTOLOAD subroutine. When an undefined subroutine in is called in a client module of AutoLoader, AutoLoaders AUTOLOAD subroutine attempts to locate the subroutine in a file with a name related to the location of the file from which the client module was read. As an example, if POSIX.pm is located in /usr/local/lib/perl5/POSIX.pm, AutoLoader will look for perl subroutines POSIX in /usr/local/lib/perl5/auto/POSIX/*.al, where the .al file has the same name as the subroutine, sans package. If such a file exists, AUTOLOAD will read and evaluate it, thus (presumably) defining the needed subroutine. AUTOLOAD will then goto the newly defined subroutine.
Once this process completes for a given function, it is defined, so future calls to the subroutine will bypass the AUTOLOAD mechanism.

Subroutine Stubs

In order for object method lookup and/or prototype checking to operate correctly even when methods have not yet been defined it is necessary to "forward declare" each subroutine (as in sub NAME;). See "SYNOPSIS" in perlsub. Such forward declaration creates "subroutine stubs", which are place holders with no code.

The AutoSplit and AutoLoader modules automate the creation of forward declarations. The AutoSplit module creates an index file containing forward declarations of all the AutoSplit subroutines. When the AutoLoader module is used it loads these declarations into its callers package.

Because of this mechanism it is important that AutoLoader is always used and not required.

Using AutoLoaders AUTOLOAD Subroutine

In order to use AutoLoaders AUTOLOAD subroutine you must explicitly import it:

use AutoLoader AUTOLOAD;

Overriding AutoLoaders AUTOLOAD Subroutine

Some modules, mainly extensions, provide their own AUTOLOAD subroutines. They typically need to check for some special cases (such as constants) and then fallback to AutoLoaders AUTOLOAD for the rest.

Such modules should not import AutoLoaders AUTOLOAD subroutine. Instead, they should define their own AUTOLOAD subroutines along these lines:

use AutoLoader;
use Carp;

sub AUTOLOAD {
my $sub = $AUTOLOAD;
(my $constname = $sub) =~ s/.*:://;
my $val = constant($constname, @_ ? $_[0] : 0);
if ($! != 0) {
if ($! =~ /Invalid/ || $!{EINVAL}) {
$AutoLoader::AUTOLOAD = $sub;
goto &AutoLoader::AUTOLOAD;
}
else {
croak "Your vendor has not defined constant $constname";
}
}
*$sub = sub { $val }; # same as: eval "sub $sub { $val }";
goto &$sub;
}

If any modules own AUTOLOAD subroutine has no need to fallback to the AutoLoaders AUTOLOAD subroutine (because it doesnt have any AutoSplit subroutines), then that module should not use AutoLoader at all.

Package Lexicals

Package lexicals declared with my in the main block of a package using AutoLoader will not be visible to auto-loaded subroutines, due to the fact that the given scope ends at the __END__ marker. A module using such variables as package globals will not work properly under the AutoLoader.

The vars pragma (see "vars" in perlmod) may be used in such situations as an alternative to explicitly qualifying all globals with the package namespace. Variables pre-declared with this pragma will be visible to any autoloaded routines (but will not be invisible outside the package, unfortunately).

Not Using AutoLoader

You can stop using AutoLoader by simply

no AutoLoader;

AutoLoader vs. SelfLoader

The AutoLoader is similar in purpose to SelfLoader: both delay the loading of subroutines.

SelfLoader uses the __DATA__ marker rather than __END__. While this avoids the use of a hierarchy of disk files and the associated open/close for each routine loaded, SelfLoader suffers a startup speed disadvantage in the one-time parsing of the lines after __DATA__, after which routines are cached. SelfLoader can also handle multiple packages in a file.

AutoLoader only reads code as it is requested, and in many cases should be faster, but requires a mechanism like AutoSplit be used to create the individual files. ExtUtils::MakeMaker will invoke AutoSplit automatically if AutoLoader is used in a module source file.

<<less
Download (0.016MB)
Added: 2007-05-14 License: Perl Artistic License Price:
894 downloads
Pause on screensaver 0.1

Pause on screensaver 0.1


Pause on screensaver script will pause playback every time the screensaver activates. more>>
Pause on screensaver script will pause playback every time the screensaver activates. Pause on screensaver is useful to stop music when you lock your desktop.

<<less
Download (0.010MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
1314 downloads
Jatt 1.0

Jatt 1.0


Jatt provides a Web-based time tracking application. more>>
Jatt provides a Web-based time tracking application.

Jatt is a Web-based time tracking application implemented using Java Servlets. Users can create and organize tasks in a hierarchy, start and stop tasks, and use reports to analyze performance.

<<less
Download (1.5MB)
Added: 2007-02-15 License: BSD License Price:
981 downloads
dslKonnector 0.1

dslKonnector 0.1


dslKonnector is a Kommander script to start, stop, restart DSL connection. more>>
dslKonnector is a Kommander script to start, stop, restart DSL connection (ppp over ethernet), using tools "pon dsl-provider" and “poff dsl-provider".

To use it you will need to have superuser privileges. dslKonnector does not configure dsl connection, so you will have to setup it using tool "pppoeconf".

I created this script because there was no graphical way to control dsl connection in Kubuntu Dapper, and I needed it sometimes, since some dynamic IPs my wife would receive from our ISP would be blocked from my IRC network.

Would that kind of app be needed? If so, how do I improve it? Suggestions welcome!

<<less
Download (0.020MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
Adcd 0.9

Adcd 0.9


Adcd is a cd player for Linux with a ncurses (text mode) interface. more>>
Adcd project is a cd player for Linux with a ncurses (text mode) interface.
Adcd can play all the tracks from a disc in order (linear mode), or in the order specified by the user (playlist mode), and includes all the functions expected in a stand-alone cd player, including random play and loop mode.
The functions adcd can perform are:
Open/Close
Play/Pause/Stop
Goto track
Goto Prev/next track
Seek forward/backward
Loop and Loop1 modes
Playlist edition
Random playlist
Set/Show volume
Show elapsed/remaining time of track/disc
Enhancements:
- The license has been updated to GPL version 3 or later.
<<less
Download (0.021MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
848 downloads
Server Monitor 0.1

Server Monitor 0.1


Server Monitor is a theme which displays the status of your servers. more>>
Server Monitor is a theme which displays the status of your servers. Also you can start / stop them by clicking the names.

You cann add servers by editing the py-file. You may resize theme in the .theme-fille.

Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).

<<less
Download (0.002MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
WiFi Statistics Daemon 1.0a

WiFi Statistics Daemon 1.0a


wifistatd is a script which generates a PNG graphing signal/noise/link levels on a selected wireless interface. more>>
wifistatd is a script which generates a PNG graphing signal/noise/link levels on a selected wireless interface.

To install wifistatd on a UNIX machine untar the archive with program.
Then you must type:

./wifistatd.pl install

If everything went OK (it should), youll get the db.rrd database file in your current working directory.

To configure daemon edit the head part of wifistatd.pl.

getting_started
To start, just type:
./wifistatd.pl start

To stop, just type:
./wifistatd.pl stop
<<less
Download (0.009MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1216 downloads
clxmms 0.6

clxmms 0.6


clxmms gives you control over an XMMS player. more>>
clxmms gives you control over an XMMS player.

clxmms is a client of xmms, working in command- line or batch mode. It lets users play/stop/skip songs, and generally manage a playlist.

<<less
Download (0.014MB)
Added: 2006-04-12 License: GPL (GNU General Public License) Price:
1290 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5