1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-18 20:10:03 +02:00

Initial Commit

This commit is contained in:
Henrik Hautakoski 2023-07-27 00:14:07 +02:00
commit 52110f5c71
6 changed files with 399 additions and 0 deletions

11
urxvt/ext/ibeamcursor Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/perl
# IBeam cursor in urxvt
use strict;
use warnings;
sub on_start {
my ($self) = @_;
my $cmd = "\033[5 q\r";
$self->cmd_parse($cmd);
}