Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
For anyone who's interested, here's a script which will disable the Caps Lock key under Linux, or turn it back on.  The default is to apply it only to the current user; to make the change global, the -g switch is used.
#!/usr/bin/perl -w # # Disable/Enable the caps lock key # 051206 liverpole # ############## ### Strict ### ############## use strict; use warnings; #################### ### User-defined ### #################### my $xmodmap = '/usr/bin/X11/xmodmap'; my $sysmodmap = '/etc/X11/Xmodmap'; my $usrmodmap = $ENV{'HOME'} . "/.Xmodmap"; ################# ### Libraries ### ################# use FileHandle; use File::Basename; use Getopt::Long; ############### ### Globals ### ############### my $iam = basename $0; my $b_global = 0; my $syntax = " syntax: $iam [switches] <'off' | 'on'> Disables or reenables the CAPS LOCK key by changing the appropriat +e 'Xmodmap' file. Use 'off' to disable, and 'on' to reenable. Switches: -g ... apply the change globally (must be run as 'root' +) "; #################### ### Command-line ### #################### GetOptions("g" => \$b_global) or die $syntax; (my $state = shift) or die $syntax; if ($state ne 'off' && $state ne 'on') { die "$iam: invalid state '$state' (should be 'off' or 'on')\n"; } ################### ### Subroutines ### ################### sub perform($) { my ($cmd) = @_; print "% $cmd\n"; system($cmd) } #################### ### Main program ### #################### # If making global changes, make sure user is 'root' if ($b_global) { (0 == $<) or die "$iam: you must run this as 'root'\n"; } # Read the appropriate file my $infile = ($b_global || (!-e $usrmodmap))? $sysmodmap: $usrmodmap; my $fh = new FileHandle; open($fh, "<", $infile) or die "$iam: cannot read '$infile' ($!)\n"; chomp(my @lines = <$fh>); close $fh; printf "Read '$infile' -- %d line%s\n", 0 + @lines, (1 == @lines)? "": + "s"; # Modify the file @lines = grep { !/^\s*(remove|add)\s+Lock\s+=\s+Caps_Lock\s*(!|$)/i } +@lines; ($state eq 'off') and push @lines, "remove Lock = Caps_Lock"; ($state eq 'on') and push @lines, "add Lock = Caps_Lock"; # Write the file my $outfile = $b_global? $sysmodmap: $usrmodmap; open($fh, ">", $outfile) or die "$iam: cannot write '$outfile' ($!)\n +"; map { print $fh "$_\n" } @lines; printf "Wrote '$outfile' -- %d line%s\n", 0 + @lines, (1 == @lines)? " +": "s"; close $fh; # Make the changes take effect if (-x $xmodmap) { (-f $sysmodmap) and perform "$xmodmap $sysmodmap"; (-f $usrmodmap) and perform "$xmodmap $usrmodmap"; }

@ARGV=split//,"/:L"; map{print substr crypt($_,ord pop),2,3}qw"PerlyouC READPIPE provides"

In reply to Re: The most useless key on my keyboard is: by liverpole
in thread The most useless key on my keyboard is: by davido

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-26 07:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found