Skip to content

Instantly share code, notes, and snippets.

View developic's full-sized avatar

developic developic

View GitHub Profile
@developic
developic / gif.py
Created February 2, 2026 11:18
Born from the frustration of platforms lacking a built-in GIF search or providing inconsistent results, klipy-gif integrates with the Rofi launcher and lets you access a curated GIF library via the Klipy API.
#!/usr/bin/env python3
import os
import sys
import json
import subprocess
import urllib.parse
import urllib.request
from pathlib import Path
from concurrent.futures import ThreadPoolExecutor
@developic
developic / fzf-tab.fish
Last active July 6, 2026 14:42
fzf-tab.fish
function __fzf_complete
set -l buffer (commandline -b)
set -l token (commandline -ct)
set -l cursor (commandline -C)
set -l trimmed (string sub -s 1 -l $cursor -- "$buffer")
set -l dir (
if type -q eza
echo "eza -lah --git --icons --color=always"