Skip to content

Instantly share code, notes, and snippets.

View isage's full-sized avatar

Epifanov Ivan isage

View GitHub Profile
@isage
isage / ossfaq.md
Last active December 13, 2015 18:18 — forked from archydragon/ossfaq.md

"Implement a feature XXXX, otherwise I'll use another project."

  1. No.

  2. Feel free to.

"Without that functionality this project is useless."

It's your personal opinion.

@isage
isage / i3shot.pl
Created November 21, 2012 18:49 — forked from archydragon/i3shot.pl
Take screenshot of all active i3 workspaces
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
use JSON qw( decode_json ); # isn't default module, must be installed via CPAN or your system package manager
use Time::HiRes qw ( usleep ); # for simple delays
my $outputfile = shift || die "use $0 outputfile.png"; # getting output filename from command-line params