Artist | Track | Album |
---|---|---|
Bikini Body | Young Dad | Young Dad |
The Cool Greenhouse | Dirty Glasses | The Cool Greenhouse |
Dog | Beep! Beep! Honk! Honk! | Beep! Beep! Honk! Honk! |
Fat White Family | Feet | Serfs Up! |
Sworn Virgins | The Male Man | The Male Man |
Warmduscher | Wild Flowers | At The Hotspot |
Grim Streaker | Typical | MIND |
Yard Act | Witness (Can I Get A?) | The Overload |
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
{ | |
"id": 164036, | |
"description": "The thunderdome returns", | |
"user": { | |
"id": 3268, | |
"name": "Blobble" | |
}, | |
"players": [ | |
{ | |
"id": 17430, |
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/bash | |
cd ~ | |
echo "Linking .nvimrc into home directory (~)" | |
if [ -z "$XDG_CONFIG_HOME" ]; then | |
export XDG_CONFIG_HOME=~/.config | |
fi | |
if [ ! -d $XDG_CONFIG_HOME/nvim ]; then | |
echo "Creating $XDG_CONFIG_HOME/nvim..." |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>ssh-add--apple-load-keychain</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>ssh-add</string> | |
<string>--apple-load-keychain</string> |
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
# Don't let ripgrep vomit really long lines to my terminal, and show a preview. | |
--max-columns=150 | |
--max-columns-preview | |
# Add Rails type for searching just Rails files | |
--type-add | |
rails:*.{gemspec,rb,erb,rbapi} | |
--type-add | |
rails:.irbrc | |
--type-add |
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
set nocompatible " be iMproved, required | |
lua << EOF | |
local execute = vim.api.nvim_command | |
local fn = vim.fn | |
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim' | |
if fn.empty(fn.glob(install_path)) > 0 then | |
fn.system({'git', 'clone', 'https://github.com/wbthomason/packer.nvim', install_path}) |
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
running=$(pidof spotify) | |
if [ "$running" != "" ]; then | |
artist=$(playerctl metadata artist) | |
song=$(playerctl metadata title | cut -c 1-60) | |
echo -n "$artist · $song" | |
fi |
NewerOlder