I hereby claim:
- I am emmanuelrosa on github. * I am emmanuelrosa (https://keybase.io/emmanuelrosa) on keybase. * I have a public key ASDEC6l1SEsPTMKc-YxX4mIRAuP-riwAbaW0QYMR6JWUYQo
To claim this, I am signing this object:
{
#! /run/current-system/sw/bin/sh | |
. "${HOME}/.cache/wal/colors.sh" | |
pgrep -x sxhkd > /dev/null || sxhkd & | |
pgrep -x udiskie > /dev/null || udiskie & | |
pgrep -x picom > /dev/null || picom & | |
pgrep -x dunst > /dev/null || dunst & | |
killall xmobar > /dev/null ; (bspc subscribe report | awk -v ulcolor="$color4" -v tcolor="$color7" -v fcolor="$color2" -f $HOME/.config/bspwm/desktops.awk | xmobar -B $color0 -F $color7 $HOME/.config/bspwm/xmobarrc) & |
#! /run/current-system/sw/bin/env bash | |
# POMODORO: A custom rofi mode which provides 20 and 5 minute timers. | |
# USAGE: rofi -combi-modi window,drun,pomo -show combi -modi combi,pomo:$HOME/bin/pomodoro | |
OPT_START_TASK="20 minute timer" | |
OPT_START_BREAK="5 minute timer" | |
SLEEP_TASK=1200 | |
SLEEP_BREAK=300 |
# This module defines a small custom NixOS installation CD. It does not | |
# contain any graphical stuff. | |
{ stdenv, pkgs, ... }: | |
{ | |
imports = | |
[ ./installation-cd-base.nix | |
]; |
// ==UserScript== | |
// @name Disable copy-paste blocking | |
// @version 1 | |
// @grant none | |
// @description Removes the onpaste event handlers on the user name and password fields at https://ibanking.bangkokbank.com/SignOn.aspx, allowing user name and password to be copy-pasted in. | |
// @match https://ibanking.bangkokbank.com/SignOn.aspx | |
// ==/UserScript== | |
document.getElementById("txtID").removeAttribute("onpaste"); | |
document.getElementById("txtPwd").removeAttribute("onpaste"); |
I hereby claim:
To claim this, I am signing this object:
{
{ stdenv, pkgs, lib }: | |
let | |
rawHosts = builtins.fetchurl http://winhelp2002.mvps.org/hosts.txt; | |
cleanedHosts = stdenv.mkDerivation { | |
name = "mvps-hosts"; | |
phases = [ "installPhase" ]; | |
installPhase = '' | |
cat ${rawHosts} | tr -s '\r' '\n' | sed -e '/^#/ d' | cut -d ' ' -f 1,2 | sed -e '/localhost/ d' > $out | |
''; |
{ stdenv, fetchurl }: | |
let | |
fetchfont = name: num: sha: | |
fetchurl { | |
url = "https://fontsup.com/download/${builtins.toString num}.html"; | |
sha256 = sha; | |
name = "${name}"; | |
}; | |
in stdenv.mkDerivation rec { |
{ config, lib, pkgs, ... }: | |
with lib; | |
let | |
name = "mpd"; | |
uid = config.ids.uids.mpd; | |
gid = config.ids.gids.mpd; |
import Html exposing (text) | |
import Array as A | |
import List as L | |
main = | |
let | |
a = A.length <| flattenA arrays | |
b = L.length <| flattenL lists | |
in | |
text <| toString (a == b) |
{ stdenv, fetchurl, dpkg, makeWrapper, buildEnv, | |
gtk2, atk, glib, cairo, pango, gdk_pixbuf, freetype, fontconfig, gtkglext, xorg, nss, nspr, | |
gconf, alsaLib, dbus, cups, mesa_glu, systemd, expat, pciutils | |
}: | |
let | |
version = "4_2_153_0_tkzkho5lhz15j08q"; | |
platform = { | |
x86_64-linux = { |