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
/
NVidia.pl
< prev
next >
Wrap
Perl Script
|
2006-11-29
|
479b
|
22 lines
#!/usr/bin/perl
use lib '/usr/share/sax/profile';
use strict;
use Profile;
#====================================
# Init profile script
#------------------------------------
my $profile = ProfileInitScript();
#====================================
# Check if profile is valid
#------------------------------------
if (ProfileIsXOrgVendor ("nvidia")) {
open (FD,">",$profile) ||
die "NVidia: Can't open $profile: $!";
print FD "Device -> [X] -> Driver = nv\n";
close FD;
}