Skip to content

Instantly share code, notes, and snippets.

@eliliam
eliliam / window-info
Last active December 11, 2025 00:20
Bspwm Window Inspector: A Clean CLI Tool for Inspecting Window Properties
#!/usr/bin/env bash
#
# bspwm Window Inspector
#
# A clean CLI tool for inspecting window properties in bspwm.
# Click any window and the script prints detailed information including:
# - Window ID (decimal and hex)
# - WM_CLASS (instance and class)
# - bspwm state (tiled, floating, fullscreen, etc.)
# - Focused / shown / hidden / urgent flags
@eliliam
eliliam / clear_open_filter.user.js
Last active November 18, 2025 17:47
GitHub Issue Search - Clear `state:open` Search Filter
// ==UserScript==
// @name GitHub Issues - Clear Open Issues Search Filter
// @namespace https://github.com/eliliam
// @version 1.5
// @description Removes the default 'state:open' from the GitHub Issues search bar and re-executes the search.
// @author Eli Smith
// @match https://github.com/*/*/issues*
// @grant none
// @run-at document-end
// @downloadURL https://gist.githubusercontent.com/eliliam/e3f24e3c6b986a2e94106cf211043fcd/raw/clear_open_filter.user.js
@eliliam
eliliam / tweetStream.py
Last active July 27, 2017 22:05
A cool script that streams to all the live tweets on twitter based on a length and filter, tons of fun to watch!
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
import json, sys, argparse, signal
#
# Written by Eli Smith, known as @Plunkinguitar on GitHub
#
# USER CONFIGS