Updates for hooks

I want test the hook idea

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2024-05-20 21:39:01 +09:00
parent 44fd3133ee
commit 6e53ed85d5
10 changed files with 9 additions and 24 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,24 +0,0 @@
#!/bin/bash
set -e
# install dependencies use for calamares
apt install \
qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev \
cmake python3-pyqt5 qttools5-dev libqt5svg5-dev \
libyaml-cpp-dev libpolkit-qt5-1-dev libkf5coreaddons-dev \
qttools5-dev-tools extra-cmake-modules libkf5crash-dev -y
# Clone the Calamares installer
git clone https://github.com/calamares/calamares.git /opt/calamares
# change to Calamares
cd /opt/calamares
# Create a folder called build
mkdir build
# Change into the build directory
cd /opt/calamares/build
# Check the make source
cmake ..
# Compile it
make
# Install Calamares
make install

View File

@ -7,6 +7,8 @@ apt-get install -f
rm /usr/share/applications/min.desktop rm /usr/share/applications/min.desktop
python3 /usr/lib/python3/dist-packages/pepperpy/hooks.py
# Install Plank # Install Plank
apt install --yes plank apt install --yes plank

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1013 B

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 744 B

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 821 B

View File

@ -0,0 +1,7 @@
import os
# Update the package lists
os.system('sudo apt update')
# Install KeePassXC
os.system('sudo apt install -y keepassxc')