Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
commit
a2c8ee6061
2 changed files with 9 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
vars:
|
||||
packages:
|
||||
- apt-file
|
||||
- apt-listchanges
|
||||
- curl
|
||||
- dc
|
||||
- dnsutils
|
||||
|
@ -36,6 +37,7 @@
|
|||
- sqlite3
|
||||
- sudo
|
||||
- tmux
|
||||
- unattended-upgrades
|
||||
- vim
|
||||
- zstd
|
||||
- name: Enable automatic update check
|
||||
|
|
|
@ -57,6 +57,13 @@ then
|
|||
XDG_DATA_DIRS="${XDG_DATA_DIRS}:${_snap_xdg_path}"
|
||||
fi
|
||||
unset _snap_xdg_path
|
||||
# Same as above for Flatpak.
|
||||
_flatpak_xdg_path="$XDG_DATA_HOME/flatpak/exports/share"
|
||||
if [ -x /usr/bin/flatpak ] && [ -n "${XDG_DATA_DIRS##*${_flatpak_xdg_path}}" ] && [ -n "${XDG_DATA_DIRS##*${_flatpak_xdg_path}:*}" ]
|
||||
then
|
||||
XDG_DATA_DIRS="${XDG_DATA_DIRS}:${_flatpak_xdg_path}"
|
||||
fi
|
||||
unset _flatpak_xdg_path
|
||||
|
||||
# Bash-specific settings that will not work in other Bourne-compatible shells.
|
||||
if [ -n "$BASH_VERSION" ]
|
||||
|
|
Loading…
Reference in a new issue