From 8df9472e0cdbab0d12211c2bc77918e8f515c409 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Sat, 8 Aug 2015 20:08:42 +0200 Subject: Improve installation and organization --- urxvt/ext/rotate-colors | 92 ------------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 urxvt/ext/rotate-colors (limited to 'urxvt/ext/rotate-colors') diff --git a/urxvt/ext/rotate-colors b/urxvt/ext/rotate-colors deleted file mode 100644 index 0016d6a..0000000 --- a/urxvt/ext/rotate-colors +++ /dev/null @@ -1,92 +0,0 @@ -#! /usr/bin/env perl -w -# Author: John Tyree -# Website: http://github.com/johntyree/urxvt-perls/blob/master/rotate-colors -# License: CCBYNC - -# Use keyboard shortcuts to load colors of the form *.colorN:XXXXXX from a file -# This gives us "on demand" theme switching. - -# Usage: put the following lines in your .Xdefaults/.Xresources: -# URxvt.perl-ext-common: ...,rotate-colors -# URxvt.rotate-colors.files: ~/.Xresources,~/light.txt,~/dark.txt -# URxvt.keysym.M-C-n: perl:rotate-colors:next -# URxvt.keysym.M-C-p: perl:rotate-colors:prev - -use strict; - - -sub on_start { - my ($self) = @_; - $self->{current_index} = -1; - my @arr = split(/,/, $self->x_resource('files') || ''); - $self->{color_files} = \@arr; - - () -} - -sub read_colors { - my $fn = shift; - open my $fin, $fn or print STDERR "Unable to open $fn for reading"; - my %colors; - - while (my $line = <$fin>) { - if ($line =~ /(\w+)\s*:\s*(#[0-9a-fA-F]+)/) { - $colors{$1} = $2; - } - } - - return %colors -} - -sub escape_seq { - my ($k, $v) = @_; - my $cmd = ""; - if ($k =~ /^color(\d+)$/) { - $cmd = "4;$1;$v"; - } elsif ($k =~ /^colorBD$/) { - $cmd = "5;0;$v"; - } elsif ($k =~ /^colorUL$/) { - $cmd = "5;1;$v"; - } elsif ($k =~ /^colorBL$/) { - $cmd = "5;2;$v"; - } elsif ($k =~ /^colorRV$/) { - $cmd = "5;3;$v"; - } elsif ($k =~ /^foreground$/) { - $cmd = "10;$v"; - } elsif ($k =~ /^background$/) { - $cmd = "11;$v"; - } elsif ($k =~ /^cursorColor$/) { - $cmd = "12;$v"; - } elsif ($k =~ /^pointerColor$/) { - $cmd = "13;$v"; - } - - return '\033]'.$cmd.'\007' -} - -sub build_cmd { - my $fn = shift; - my %colors = read_colors($fn); - print $fn."\n"; - my $s = join("", map {escape_seq($_, $colors{$_})} keys %colors); - - return $s -} - -sub on_user_command { - my ($self, $cmd) = @_; - my @fs = @{$self->{color_files}}; - my $len = @fs; - - if ($cmd eq "rotate-colors:next") { - my $idx = $self->{current_index}++; - my $fn = $fs[$idx % scalar(@fs)]; - $self->cmd_parse(build_cmd($fn)); - } elsif ($cmd eq "rotate-colors:prev") { - my $idx = $self->{current_index}--; - my $fn = $fs[$idx % scalar(@fs)]; - $self->cmd_parse(build_cmd($fn)); - } - - () -} -- cgit v1.2.3