This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# vim:ft=perl:et: | |
# # change background color when focus lost/gained | |
use strict; | |
use warnings; | |
use Time::HiRes qw(usleep); | |
# NOTE: Default xterm/iTerm2 enable/disable: CSI ? 1004 h/l | |
# e.g.: <Esc>[?1004l / <Esc>[?1004h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i7, 32G ram, x64 archlinux, steam play with proton 3-7.8 | |
35 damage taken! [objPlayer1] | |
> Blessing [Mahntis Blessing] spawned! | |
Saving Data [0]: Async Begin | |
COMMITTING DATA... | |
COMMIT DONE (0ms) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=for comment | |
This is messy. According to spec... | |
38;1 | |
should yield bold, and it does in urxvt and vte, but not in xterm. | |
38;1;3;4;5;7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package File::Extension; | |
use strict; | |
use Carp (); | |
use Data::Dumper; | |
{ | |
package Data::Dumper; | |
no strict 'vars'; | |
$Terse = $Indent = $Useqq = $Deparse = $Sortkeys = 1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Audio] | |
MuteDesktopHotkey=0 | |
MuteMicHotkey=0 | |
PushToTalkHotkey2=0 | |
PushToTalkHotkey=0 | |
UsePushToTalk=0 | |
SyncToVideoTime=0 | |
DesktopVolume=1.000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make test QUIET=y | |
make[1]: Entering directory '/j/tmp/zsh-syntax-highlighting' | |
Running test brackets | |
Running test main | |
# option-path_dirs | |
1..1 | |
not ok 1 - [1,21] «bar/testing-issue-228» - expected "command", observed "unknown-toke n". | |
ln: failed to create symbolic link 'broken-symlink': No such file or directory | |
Bail out! output on stderr | |
# path-broken-symlink |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# vim: ft=perl:fdm=marker:fmr=#<,#>:fen:et:sw=2: | |
use strict; | |
use warnings FATAL => 'all'; | |
use vars qw($VERSION); | |
my $APP = 'clone_gh'; | |
$VERSION = '0.001'; | |
my @repos=qw( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# vim: synmaxcol& ft=zsh: | |
mkdir -p amigaremix && cd amigaremix; | |
wget $( \ | |
for x in $( \ | |
for d in {1..64}; | |
do printf "http://amigaremix.com/remixes/$d\n"; | |
done | |
); do curl -s $x; done \ | |
| grep -iPo 'a href=..listen.+\.mp3"' \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if $TERM == 'linux' || $SSH_CLIENT | |
let &t_Co = 8 | |
color peachpuff | |
set nolist | |
set colorcolumn+=81 | |
hi CursorLine term=none cterm=bold ctermbg=0 | |
hi! link CursorColumn CursorLine | |
hi! link ColorColumn CursorLine | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fu! SSH() | |
if $SSH_CLIENT | |
color ssh | |
else | |
color neverland | |
endfu |