Skip to content

Commit 231aca3

Browse files
authored
fix: allow setting Ptyxis transparency to 1 (fully opaque) (#1109)
1 parent 76c1a05 commit 231aca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system_files/desktop/shared/usr/share/ublue-os/just/80-bazzite.just

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ ptyxis-transparency opacity="0.95":
252252
set -euxo pipefail
253253
if [[ -n "$(echo "{{ opacity }}" | grep -v '^[.0-9]*$')" ]]; then
254254
printf "Value must be numeric: %s.\n" "{{ opacity }}"
255-
elif [[ $(echo "0<{{ opacity }} && 1>{{ opacity }}" | bc -q) -eq 1 ]]; then
255+
elif [[ $(echo "0<{{ opacity }} && 1>={{ opacity }}" | bc -q) -eq 1 ]]; then
256256
raw="$(gsettings get org.gnome.Ptyxis profile-uuids)"
257257
uuids="$(sed -En 's|[^0-9a-z]*||g; s|([0-9a-z]{32})|\1\n|gp' <<<${raw})"
258258
for i in ${uuids}; do

0 commit comments

Comments
 (0)