desktop_app_install

This commit is contained in:
2025-11-08 19:24:05 +01:00
parent 88cfd9c05f
commit 2b5ec1d9b1
4 changed files with 270 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/bin/bash
# Setup script for GTK Wrapper dependencies
echo "Installing GTK wrapper dependencies..."
# Update package list
sudo apt-get update
# Install GTK3 and WebKit2 development libraries
echo "Installing GTK3 and WebKit2 libraries..."
sudo apt-get install -y \
python3-gi \
gir1.2-gtk-3.0 \
gir1.2-webkit2-4.0 \
libgtk-3-0 \
libwebkit2gtk-4.0-37
# Install pip packages if needed
echo "Checking Python dependencies..."
pip3 install flask
echo "Setup complete! You can now run the GTK wrapper with:"
echo " python3 gtk_wrapper.py"