dotfiles/common/.config/sketchybar/plugins/front_app.sh.org
2024-10-01 17:42:59 -05:00

9 lines
292 B
Org Mode
Executable file

#+title: SketchyBar Front App Plugin
Get the name of the focused application.
#+begin_src sh :tangle ~/.config/sketchybar/plugins/front_app.sh :mkdirp yes :tangle-mode o755
#!/bin/sh
if [ "$SENDER" = "front_app_switched" ]; then
sketchybar --set "$NAME" label="$INFO"
fi
#+end_src