mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
8 lines
253 B
Bash
8 lines
253 B
Bash
echo "Update hyprland-preview-share-picker config to default to outputs page"
|
|
|
|
CONFIG_FILE=~/.config/hyprland-preview-share-picker/config.yaml
|
|
|
|
if [[ -f $CONFIG_FILE ]]; then
|
|
sed -i 's/^default_page: windows$/default_page: outputs/' "$CONFIG_FILE"
|
|
fi
|