Skip to content

Commit

Permalink
update pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
UriHerrera committed Aug 28, 2024
1 parent c6dcaef commit 9f0b7fc
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nx-desktop-settings-legacy (5.4.8) nitrux; urgency=medium

* Update install scripts for libreoffice and bauh.

-- Uri Herrera <uri_herrera@nxos.org> Wed, 27 Aug 2024 20:39:00 -0500

nx-desktop-settings-legacy (5.4.7) nitrux; urgency=medium

* Add scripts to install Bauh and LibreOffice.
Expand Down
20 changes: 20 additions & 0 deletions etc/skel/.local/bin/install-bauh-appimage
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@
set -x


# -- Function to create directories if they don't exist
create_directories() {
if [ ! -d "/Applications" ]; then
echo "Creating directory: /Applications"
mkdir /Applications
else
echo "Directory already exists: /Applications"
fi

if [ ! -d "/etc/skel/.local/bin" ]; then
echo "Creating directory: /etc/skel/.local/bin"
mkdir -p /etc/skel/.local/bin
else
echo "Directory already exists: /etc/skel/.local/bin"
fi
}

create_directories


# -- Function to download Appimage files.

user_agent="BrightSign/8.2.55.5 (XT1144) Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.3 Chrome/69.0.3497.128 Safari/537.36"
Expand Down
20 changes: 20 additions & 0 deletions etc/skel/.local/bin/install-libreoffice-appimage
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@
set -x


# -- Function to create directories if they don't exist
create_directories() {
if [ ! -d "/Applications" ]; then
echo "Creating directory: /Applications"
mkdir /Applications
else
echo "Directory already exists: /Applications"
fi

if [ ! -d "/etc/skel/.local/bin" ]; then
echo "Creating directory: /etc/skel/.local/bin"
mkdir -p /etc/skel/.local/bin
else
echo "Directory already exists: /etc/skel/.local/bin"
fi
}

create_directories


# -- Function to download Appimage files.

user_agent="BrightSign/8.2.55.5 (XT1144) Mozilla/5.0 (X11; Linux aarch64) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.3 Chrome/69.0.3497.128 Safari/537.36"
Expand Down

0 comments on commit 9f0b7fc

Please sign in to comment.