Skip to content

Commit

Permalink
chore(default-flatpaks): Add log message for setting custom remote title
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftydinar authored Oct 14, 2024
1 parent 0a9e216 commit caed9c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/default-flatpaks/v1/system-flatpak-setup
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ fi
if [[ $REPO_TITLE != "null" ]] && ! ${no_title_modify}; then
echo "Setting title $REPO_TITLE for remote $REPO_NAME"
flatpak remote-modify --system "$REPO_NAME" --title="$REPO_TITLE"
elif [[ $REPO_TITLE != "null" ]] && ${no_title_modify}; then
echo "Custom flatpak remote title is already set"
fi

# Notifications config
Expand Down
2 changes: 2 additions & 0 deletions modules/default-flatpaks/v1/user-flatpak-setup
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ fi
if [[ $REPO_TITLE != "null" ]] && ! ${no_title_modify}; then
echo "Setting title $REPO_TITLE for remote $REPO_NAME"
flatpak remote-modify --user "$REPO_NAME" --title="$REPO_TITLE"
elif [[ $REPO_TITLE != "null" ]] && ${no_title_modify}; then
echo "Custom flatpak remote title is already set"
fi

# Notifications config
Expand Down

0 comments on commit caed9c2

Please sign in to comment.