Replies: 2 comments
-
|
Can you be more specific, which issues you have with which keybindings? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Under Wallpaper & Theming
#!/bin/bash
# Directory containing wallpapers
WALL_DIR="$HOME/Wallpapers"
CURRENT_BACKGROUND_LINK="$HOME/.config/omarchy/current/background"
# Current directory (to cd back to)
CWD="$(pwd)"
cd "$WALL_DIR" || exit
# Handle spaces in filenames
IFS=$'\n'
# Grab the user-selected wallpaper
SELECTED_WALL=$WALL_DIR/$(for a in *.jpg *.png *.jpeg; do
echo -en "$a\0icon\x1f$a\n"
done | walker --dmenu)
if [ -n "$SELECTED_WALL" ]; then
ln -nsf "$SELECTED_WALL" "$CURRENT_BACKGROUND_LINK"
matugen image "$SELECTED_WALL"
fi
# Go back to where you came from
cd "$CWD" || exit
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
System details
Thinkpad L490, HP Omen 16
What's wrong?
As stated in the title.
I have some keybinds which run a specific script on the Thinkpad but the same keybinds don't work on my HP laptop.
Beta Was this translation helpful? Give feedback.
All reactions