home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
sax
/
profile
/
wacom.pl
< prev
next >
Wrap
Perl Script
|
2006-11-29
|
750b
|
32 lines
#!/usr/bin/perl
use lib '/usr/share/sax/profile';
use strict;
use Profile;
#====================================
# Init profile script
#------------------------------------
my $profile = ProfileInitScript();
#====================================
# Get RealDevice from sysp
#------------------------------------
my $card = ($ARGV[0] - 1) / 2;
my $device = ProfileGetRealMouseDevice ($card);
#====================================
# Adapt profile device
#------------------------------------
local $/;
open (FD,"<",$profile) ||
die "wacom: Can't open $profile: $!";
my $profileData = <FD>;
$profileData =~ s/\/dev\/input\/mice/$device/;
close FD;
open (FD,">",$profile) ||
die "wacom: Can't open $profile: $!";
print FD $profileData;
close FD;