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/env perl | |
| use strict; | |
| use warnings; | |
| use autodie; | |
| open my $bspwm_data, '-|', 'bspc subscribe report'; | |
| # Autoflush | |
| $| = 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
| #!/usr/bin/env perl6 | |
| subset File of Str where *.IO.f; | |
| subset Directory of Str where *.IO.d; | |
| #| Copies requested packages from Pacman's cache directory | |
| sub MAIN (File $pkg_list, Directory $destination) { | |
| my @pkg_list = $pkg_list.IO.lines>>.comb(/^^\S+||\S+$$/); | |
| die 'Package list is empty' unless @pkg_list; |
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/env fish | |
| set -x no_proxy 'localhost,127.0.0.1' | |
| function toggle_proxy | |
| if not set -q http_proxy | |
| set -gx http_proxy 'http://127.0.0.1:8118' | |
| set -gx https_proxy $http_proxy | |
| echo 'Proxy On' | |
| 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
| /** | |
| * CSS3 transform overflow | |
| */ | |
| .box { | |
| width: 130px; | |
| overflow: scroll; | |
| } | |
| .transform { | |
| transform: scale(6); | |
| display: inline-block; |
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
| /** | |
| * PageRank | |
| */ | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| #box { | |
| width: 64px; |
NewerOlder