This file contains 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 | |
set -e | |
dir=${1:-"${HOME}/git/"} | |
since=${2:-"yesterday.midnight"} | |
author=${3:-"$(git config user.email)"} | |
repos=$(find "$dir" -mindepth 1 -maxdepth 1 -type d) | |
for project in ${repos}; do |
This file contains 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 bash | |
# Source: https://gist.github.com/Tadly/0741821d3694deaec1ee454a95c591fa | |
# | |
# Use rofi to pick emoji because that's what this | |
# century is about apparently... | |
# | |
# Requirements: | |
# rofi, xclip, xdotool, curl, xmllint | |
# | |
# Usage: |