mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Fix logs uploading * Fail hard if we don't get the right branch * Fix HL 0.55 compatible unified clipboard hotkeys * Bump version --------- Co-authored-by: Ryan Hughes <ryan@heyoodle.com>
12 lines
363 B
Bash
12 lines
363 B
Bash
echo "Update elephant symbols paste shortcut for Hyprland 0.55"
|
|
|
|
symbols_config=~/.config/elephant/symbols.toml
|
|
|
|
if [[ -f $symbols_config ]]; then
|
|
sed -i 's/hyprctl dispatch sendshortcut "SHIFT, Insert,"/hyprctl dispatch sendshortcut "SHIFT,Insert,activewindow"/' "$symbols_config"
|
|
else
|
|
omarchy-refresh-config elephant/symbols.toml
|
|
fi
|
|
|
|
omarchy-restart-walker
|