1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Several improvements.

* Tmux is not started by default anymore
* Added functions for i3 - Awesome!!
* zsh to start tmux
This commit is contained in:
J. Fernando Sánchez
2013-07-12 19:19:52 +02:00
parent a134c2210f
commit 7bbcb17419
9 changed files with 117 additions and 34 deletions

9
not_dots/clipboard Normal file
View File

@@ -0,0 +1,9 @@
#! /usr/bin/perl
# /usr/lib/urxvt/perl/clipboard
sub on_sel_grab {
my $query=quotemeta $_[0]->selection;
$query=~ s/\n/\\n/g;
$query=~ s/\r/\\r/g;
system( "echo " . $query . " | xsel -i -b -p" );
}