Main > Free Download Search >

Free mac cosmetics software for linux

mac cosmetics

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 915
Mac::PropertyList 1.29

Mac::PropertyList 1.29


Mac::PropertyList is a Perl module to work with Mac plists at a low level. more>>
Mac::PropertyList is a Perl module to work with Mac plists at a low level.
SYNOPSIS
use Mac::PropertyList;
my $data = parse_plist( $text );
# == OR ==
my $data = parse_plist_file( $filename );
# == OR ==
open my( $fh ), $filename or die "...";
my $data = parse_plist_fh( $fh );
my $text = plist_as_string( $data );
my $plist = create_from_hash( %hash );
my $plist = create_from_array( @array );
my $plist = Mac::PropertyList::dict->new( %hash );
This module is a low-level interface to the Mac OS X Property List (plist) format. You probably shouldnt use this in applications---build interfaces on top of this so you dont have to put all the heinous multi-level object stuff where people have to look at it.
You can parse a plist file and get back a data structure. You can take that data structure and get back the plist as XML. If you want to change the structure inbetween thats your business.
You dont need to be on Mac OS X to use this. It simply parses and manipulates a text format that Mac OS X uses.
Enhancements:
- Perl
<<less
Download (0.017MB)
Added: 2006-09-18 License: Perl Artistic License Price:
1133 downloads
MAC Changer GUI 0.03

MAC Changer GUI 0.03


MAC Changer GUI will display and change your MAC address to a user supplied or random value. more>>
MAC Changer GUI will display and change your MAC address to a user supplied or random value.

Created with kommander 1.3.0. Not sure if it works with previous versions.

Depends on kdialog and must be executed with the kdesu command.

Example:

kdesu kmdr-executor /home/someDIR/mac.kmdr

As this script is executed using root privileges it is good practice to inspect the script for malicious content. With that being said there is nothing in the script that can harm your computer. A reboot will restore your original MAC if you forget its value and want to change it back.

<<less
Download (0.030MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
974 downloads
Mac::PropertyList::SAX 0.09

Mac::PropertyList::SAX 0.09


Mac::PropertyList::SAX is a Perl module to work with Mac plists at a low level (with real XML parsers). more>>
Mac::PropertyList::SAX is a Perl module to work with Mac plists at a low level (with real XML parsers).

Mac::PropertyList is useful, but very slow on large files because it does the parsing by itself, intead of handing off the actual XML parsing to a dedicated parser. This module uses XML::SAX::ParserFactory to select a parser capable of doing the heavy lifting, reducing parsing time on large files by up to 97%. This is especially useful for iTunes library plists which may be megabytes in size and contain thousands of entries in dozens of dictionaries.

This module does not, however, replace Mac::PropertyList; in fact, it depends on it for several package definitions and the plist creation routines.

Be aware that performance will depend largely on the parser that XML::SAX::ParserFactory selects for you; if you have not installed XML::SAX::Expat or another fast parser, the default XML::SAX::PurePerl parser will be used; this will probably give worse performance than Mac::PropertyList, so ensure that a fast parser is being used before you complain to me about performance :-). See XML::SAX::ParserFactory for information on how to set which parser is used.

<<less
Download (0.013MB)
Added: 2007-04-03 License: Perl Artistic License Price:
936 downloads
macwatch 0.2.7

macwatch 0.2.7


macwatch is a small daemon that counts in- and outbytes from a given MAC-address. more>>
macwatch is a small daemon that counts in- and outbytes from a given MAC-address and stores the result in a file for use with MRTG. It will write the file every 5 minutes by default, and uses libpcap to do all the work. I made it to monitor some servers on a DMZ and show how much bandwith is used with MRTG.

<<less
Download (0.052MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1212 downloads
Mac::EyeTV 0.30

Mac::EyeTV 0.30


Mac::EyeTV is a interface to the Elgato EyeTV Digital Video Recorder. more>>
Mac::EyeTV is a interface to the Elgato EyeTV Digital Video Recorder.

SYNOPSIS

use Mac::EyeTV;
my $eyetv = Mac::EyeTV->new();

# See Mac::EyeTV::Channel
foreach my $channel ($eyetv->channels) {
my $name = $channel->name;
my $number = $channel->number;
print "$number $namen";
}

# See Mac::EyeTV::Programme
foreach my $programme ($eyetv->programmes) {
my $start = $programme->start;
my $stop = $programme->stop;
my $title = $programme->title;
print "$title $start - $stopn";
}

This module allows you to interface to the Elgato EyeTV Digital Video Recorder. EyeTV is a piece of software and hardware for Mac OS X which can record and play back television much like a Tivo. This module allows you to interface to the EyeTV software, view the channel list and the recorded programmes and schedule recordings.

See Mac::EyeTV::Programme for information on scheduling a recording.
You should create Mac::Glue bindings to EyeTV before using this (along the lines of sudo gluemac EyeTV).

The EyeTV software itself is available from Elgato Systems at http://www.elgato.com/index.php?file=support_updates_eyetv

<<less
Download (0.004MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1217 downloads
GNU MAC Changer 1.5.0

GNU MAC Changer 1.5.0


GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces. more>>
GNU MAC Changer project consists of an utility for manipulating MAC addresses of network interfaces.
It can set specific, random, vendor-based (with a 6600+ vendor list), and device-type-based MACs.
Main features:
- Set specific MAC address of a network interface
- Set the MAC randomly
- Set a MAC of another vendor
- Set another MAC of the same vendor
- Set a MAC of the same kind (eg: wireless card)
- Display a vendor MAC list (today, 6800 items) to choose from
Possible usages
You should use your imagination :-), but well, these are some examples:
Youre in a DHCP network with some kind of IP-based restriction
Youve a cluster that boot with BOOTP and you want to have a clean set of MACs
Debug MAC based routes
<<less
Download (0.22MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
1003 downloads
Mac::Errors 1.13

Mac::Errors 1.13


Mac::Errors is a Perl module with constants for Mac error codes. more>>
Mac::Errors is a Perl module with constants for Mac error codes.

SYNOPSIS

use Mac::Errors qw(openErr);

if( $value == openErr ) { ... }

my $error = $MacErrors{ $symbol }; # -- OR -- my $error = $MacErrors{ $number };

my $symbol = $error->symbol; my $number = $error->number; my $desc = $error->description;

# in MacPerl, $^E is meaningful, and we tie $MacError to it use Mac::Errors qw( $MacError );

open FILE, $foo or die $^E; # error number open FILE, $foo or die $MacError; # gets description from $^E

The %MacErrors hash indexes error information by the error number or symbol. Each value is a Mac::Errors object which has the symbol, number, and description.

The $MacError scalar performs some tied magic to translate MacPerls $^E to the error text.

<<less
Download (0.053MB)
Added: 2007-03-07 License: Perl Artistic License Price:
963 downloads
Kismet Parse 0.2

Kismet Parse 0.2


Kismet Parse project can be used after kismet has sniffed 802.11 traffic and produced .network files. more>>
Kismet Parse project can be used after kismet has sniffed 802.11 traffic and produced .network files.

Kismet Parse is a Perl script that will parse these files to map the MAC addresses of the discovered wireless access point and clients to useful information. The information includes the hardware manufacturer of the device.

<<less
Download (0.007MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
568 downloads
Transmission 0.81

Transmission 0.81


Transmission is a BitTorrent client which aims to be as efficient as possible. more>>
Transmission is a free BitTorrent client written from scratch in C. Transmission is still in early development stage.
Transmission aims to be as efficient as possible. Transmission runs on Mac OS X, BeOS, Linux and NetBSD (and probably on other UNIX-like systems too). Only the Mac OS X version has a graphical interface yet.
Transmission is released under the MIT license.
Enhancements:
- Fix 0.80 assertion crashes
- Fix a bug that miscounted how many peers Transmission wants connected
- Correct incorrect error messages
- Memory leaks fixed
<<less
Download (4.2MB)
Added: 2007-08-24 License: MIT/X Consortium License Price:
805 downloads
MaK changer 0.2.13

MaK changer 0.2.13


MaK changer software change you mac addres for selected device. more>>
MaK changer software change you mac address for selected device. It is utility macchanger in graphic mode written in python.

I make this soft for learning python and pyqt. Max 7 interfaces is possible for now. Let my know about bugs.

PS: to run the script just click to run the software(on some distros you need write python makchanger_0211.py)

PS1:you need to be root to change mac addres

<<less
Download (0.002MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
959 downloads
Not another MAC theme 0.1

Not another MAC theme 0.1


Not another MAC theme 0.1 provides you with a nice theme for GNOME users. more>>
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. It is actually a mix of all the MAC OS X GTK themes.

GNOME is an international effort to build a complete desktop environment the graphical user interface which sits on top of a computer operating system entirely from free software. This goal covers creating software development frameworks, selecting application software for the desktop, and working on the programs which manage application launching, file handling, and window and task management.

Requirements:

  • GNOME
<<less
Added: 2008-11-17 License: GPL Price: FREE
1 downloads
Critical Mass 1.0.1

Critical Mass 1.0.1


Critical Mass (Critter) is an SDL/OpenGL space shootem up game. more>>
Critical Mass (aka Critter) is an SDL/OpenGL space shootem up game. Critical Mass project currently runs on Mac OS X, Windows, and Linux.

The latter is my main development platform. Other platforms supported by SDL/OpenGL may also work with a bit of work.
<<less
Download (4.9MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1213 downloads
Mac::Apps::Seasonality::LoadICAOHistory 0.0.6

Mac::Apps::Seasonality::LoadICAOHistory 0.0.6


Mac::Apps::Seasonality::LoadICAOHistory is a Perl module to load data into an SQLite2 database. more>>
Mac::Apps::Seasonality::LoadICAOHistory is a Perl module to load data into an SQLite2 database with the Seasonality weather.db schema.

SYNOPSIS

use English qw{ -no_match_vars };
use DBI;
use Mac::Apps::Seasonality::LoadICAOHistory qw{
:conversion
&clean_icao_history_set
&load_icao_history
};
use Mac::Apps::Seasonality::Exceptions;

my $celsius = convert_from_fahrenheit_to_celsius( 32.0 );
my $hectopascals = convert_from_inches_of_mercury_to_hectopascals( 31.32);
my $knots = convert_from_miles_per_hour_to_knots( 5.5 );

my $data =
[
[
blah_blah_blah, # icao
200609201751, # date
330, # wind_direction
8, # wind_speed_knots
0, # gust_speed_knots
10.000000, # visibility_miles
16.000000, # temperature_c
1.000000, # dewpoint_c
1018, # pressure_hpa
25, # relative_humidity
],
[
boing, # icao
200610150918, # date
2, # wind_direction
57, # wind_speed_knots
59, # gust_speed_knots
0.000000, # visibility_miles
31.5 , # temperature_c
15.000000, # dewpoint_c
939, # pressure_hpa
19, # relative_humidity
],
[
keep_music_evil, # icao
200512161530, # date
-1, # wind_direction
-1000, # wind_speed_knots
-1000, # gust_speed_knots
-1000.000000, # visibility_miles
-1000.000000, # temperature_c
-1000.000000, # dewpoint_c
-1000, # pressure_hpa
-1000, # relative_humidity
],
];

my $database_connection =
DBI->connect(
"dbi:SQLite2:$database_file_name",
q{},
q{},
{
AutoCommit => 0,
RaiseError => 1,
}
);

clean_icao_history_set($data);

eval { load_icao_history($database_connection, $data) };

my $exception
if ($exception = Mac::Apps::Seasonality::InvalidDatumException->caught()) {
...
} elsif ($EVAL_ERROR) {
...
} # end if

<<less
Download (0.031MB)
Added: 2007-05-24 License: Perl Artistic License Price:
883 downloads
Mac::Apps::Seasonality::Constants 0.0.4

Mac::Apps::Seasonality::Constants 0.0.4


Mac::Apps::Seasonality::Constants is a Perl module for static definitions of aspects of Seasonality. more>>
Mac::Apps::Seasonality::Constants is a Perl module for static definitions of aspects of Seasonality.

SYNOPSIS

use Mac::Apps::Seasonality::Constants qw{
$SEASONALITY_NAME
$SEASONALITY_CREATOR
$SEASONALITY_HISTORY_DATABASE_PATH
};


use Mac::Apps::Seasonality::Constants qw{
$SEASONALITY_HISTORY_TABLE
$SEASONALITY_HISTORY_COLUMN_ICAO
$SEASONALITY_HISTORY_COLUMN_TEMPERATURE_C
};


use Mac::Apps::Seasonality::Constants qw{
$SEASONALITY_DB_STATUS_TABLE
$SEASONALITY_DB_STATUS_COLUMN_NEW_RECORDS_SINCE_VACUUM
};


use Mac::Apps::Seasonality::Constants qw{
$SEASONALITY_HISTORY_COLUMNS_REF
$SEASONALITY_HISTORY_COLUMN_NUMBERS_BY_COLUMN_NAME_REF
$SEASONALITY_HISTORY_COLUMN_NAMES_BY_COLUMN_NUMBER_REF
};

use Mac::Apps::Seasonality::Constants qw{
$SEASONALITY_INVALID_DATA
$SEASONALITY_TEMPERATURE_MINIMUM
$SEASONALITY_TEMPERATURE_MAXIMUM
};


use Mac::Apps::Seasonality::Constants qw{ :all };
use Mac::Apps::Seasonality::Constants qw{ :application };
use Mac::Apps::Seasonality::Constants qw{ :database };
use Mac::Apps::Seasonality::Constants qw{ :data };
use Mac::Apps::Seasonality::Constants qw{ :growl };

This provides static metadata about Seasonality via "constants". The exposed values are made immutable via Readonly and not constant, so they are usable within string interpolation, etc.

None of the values are exported by default to avoid the possibility of name clashes, though the names should be unique enough for most uses. Each value must individually be imported or with one of the following tags:

:all

All constants.

:application

The application name and creator code. The name of and default path to the weather history database.

:database

The database table and column names.

:data

The missing data indicator value and the limits on each type of data.

:growl

The values to be used in talking to Growl.

<<less
Download (0.008MB)
Added: 2007-01-19 License: Perl Artistic License Price:
1008 downloads
Mac menubar for GNOME/Xfce 1.0.14

Mac menubar for GNOME/Xfce 1.0.14


Mac menubar for GNOME/Xfce is a Mac-style menubar for gtk2/gnome/xfce. more>>
Mac menubar for GNOME/Xfce is a Mac-style menubar for gtk2/gnome/xfce.

This is not one app, but 3 pieces of mutual-dependent softwares:

1.patch for gtk2 (2.10.x and 2.8.x)
2.gnome panel applet
3.xfce panel plugin (for 4.4+ only)

The sources are hosted on AUR (Arch User Repository), packages are gtk2-aqd, gnome-macmenu-applet, and xfce4-macmenu-plugin. There is also a xfce plugin that emulates round panel corners: xfce4-corner-plugin

The home page points to an ubuntu HOWTO for installing the patches and applets. There are also binaries for ubuntu edgy and arch linux.

<<less
Download (MB)
Added: 2007-01-21 License: LGPL (GNU Lesser General Public License) Price:
1035 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5