From 23b9b15936001bc02e6c5750a7384f787e3940b4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 3 Aug 2025 09:38:40 +0200 Subject: [PATCH] Convert refresh-compose command into the same bin as everything else --- bin/omarchy-restart-xcompose | 4 ++++ default/bash/functions | 6 ------ 2 files changed, 4 insertions(+), 6 deletions(-) create mode 100755 bin/omarchy-restart-xcompose diff --git a/bin/omarchy-restart-xcompose b/bin/omarchy-restart-xcompose new file mode 100755 index 0000000..a1b6cb4 --- /dev/null +++ b/bin/omarchy-restart-xcompose @@ -0,0 +1,4 @@ +#!/bin/bash + +pkill fcitx5 +uwsm app -- fcitx5 >/dev/null 2>&1 & diff --git a/default/bash/functions b/default/bash/functions index b1657c5..8061f71 100644 --- a/default/bash/functions +++ b/default/bash/functions @@ -65,9 +65,3 @@ web2app-remove() { rm "$DESKTOP_FILE" rm "$ICON_PATH" } - -# Ensure changes to ~/.XCompose are immediately available -refresh-xcompose() { - pkill fcitx5 - uwsm app -- fcitx5 >/dev/null 2>&1 & -}