#!/bin/bash
# geany
# Wrapper so Geany always launches with the Gruvbox-Dark GTK theme,
# regardless of launcher (dmenu, .desktop file, terminal). Needed because
# dmenu/sxwm resolve `geany` via PATH and never source .bashrc, so a shell
# alias alone doesn't reach it - ~/.local/bin is first in PATH (see
# .xinitrc), so this wrapper shadows /usr/bin/geany for every launch path.
exec env GTK_THEME=Gruvbox-Dark /usr/bin/geany "$@"
