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 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 |
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
| // ==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 |
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
| 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 |