From 39a289412d88b6db1979e24e08394fff253cb8d5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 29 Apr 2026 15:11:37 +0200 Subject: [PATCH] Move omarchy-cmd-screensaver to just omarchy-screensaver We should just have omarchy-cmd-* for cmd checks --- bin/omarchy-launch-screensaver | 6 +++--- bin/{omarchy-cmd-screensaver => omarchy-screensaver} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename bin/{omarchy-cmd-screensaver => omarchy-screensaver} (100%) diff --git a/bin/omarchy-launch-screensaver b/bin/omarchy-launch-screensaver index b672c3e5..a3a70df5 100755 --- a/bin/omarchy-launch-screensaver +++ b/bin/omarchy-launch-screensaver @@ -29,21 +29,21 @@ for m in $(hyprctl monitors -j | jq -r '.[] | .name'); do hyprctl dispatch exec -- \ alacritty --class=org.omarchy.screensaver \ --config-file ~/.local/share/omarchy/default/alacritty/screensaver.toml \ - -e omarchy-cmd-screensaver + -e omarchy-screensaver ;; *ghostty*) hyprctl dispatch exec -- \ ghostty --class=org.omarchy.screensaver \ --config-file=~/.local/share/omarchy/default/ghostty/screensaver \ --font-size=18 \ - -e omarchy-cmd-screensaver + -e omarchy-screensaver ;; *kitty*) hyprctl dispatch exec -- \ kitty --class=org.omarchy.screensaver \ --override font_size=18 \ --override window_padding_width=0 \ - -e omarchy-cmd-screensaver + -e omarchy-screensaver ;; *) notify-send -u low "✋ Screensaver only runs in Alacritty, Ghostty, or Kitty" diff --git a/bin/omarchy-cmd-screensaver b/bin/omarchy-screensaver similarity index 100% rename from bin/omarchy-cmd-screensaver rename to bin/omarchy-screensaver