Software aufgeteilt v1
This commit is contained in:
parent
0ccf139311
commit
0d2c927d37
22 changed files with 384 additions and 365 deletions
19
roles/custom/qg-flatpaks/files/qg.appimage.FreeCAD.desktop
Normal file
19
roles/custom/qg-flatpaks/files/qg.appimage.FreeCAD.desktop
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
[Desktop Entry]
|
||||
Name=FreeCAD Appimage
|
||||
Name[de]=FreeCAD Appimage
|
||||
Name[pl]=FreeCAD Appimage
|
||||
Name[ru]=FreeCAD Appimage
|
||||
Comment=Feature based Parametric Modeler Appimage
|
||||
Comment[de]=Feature-basierter parametrischer Modellierer Appimage
|
||||
Comment[ru]=Система автоматизированного проектирования Appimage
|
||||
GenericName=CAD Application Appimage
|
||||
GenericName[de]=CAD-Anwendung Appimage
|
||||
GenericName[pl]=Aplikacja CAD Appimage
|
||||
GenericName[ru]=Система автоматизированного проектирования Appimage
|
||||
Exec=/opt/appimages/freecad/FreeCAD.AppImage - --single-instance %F
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=org.freecadweb.FreeCAD
|
||||
Categories=Graphics;Science;Education;Engineering;
|
||||
StartupNotify=true
|
||||
MimeType=application/x-extension-fcstd;model/obj;model/iges;image/vnd.dwg;image/vnd.dxf;model/vnd.collada+xml;application/iges;model/iges;model/step;model/step+zip;model/stl;application/vnd.shp;model/vrml;
|
||||
16
roles/custom/qg-flatpaks/files/start-arduino2-appimage
Executable file
16
roles/custom/qg-flatpaks/files/start-arduino2-appimage
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
echo "---------------------"
|
||||
cachedir=/var/cache/user/${KDE_SESSION_UID}/arduino15
|
||||
echo "Cachedir: $cachedir"
|
||||
echo "---------------------"
|
||||
template=/var/lib/arduino2/template
|
||||
arduinoAppimage=/opt/appimages/arduino2/ArduinoIDE2.AppImage
|
||||
|
||||
mkdir -p $cachedir
|
||||
|
||||
rsync -avr --delete $template/ $cachedir/ > /dev/null 2>&1
|
||||
rm -rf ${HOME}/.arduino15
|
||||
ln -s $cachedir ${HOME}/.arduino15
|
||||
|
||||
$arduinoAppimage $1 &
|
||||
|
||||
|
||||
47
roles/custom/qg-flatpaks/tasks/main.yml
Normal file
47
roles/custom/qg-flatpaks/tasks/main.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
---
|
||||
########
|
||||
# Install flatpack debvian package
|
||||
- name: Install flatpack debian package
|
||||
apt:
|
||||
name: flatpak
|
||||
state: latest
|
||||
environment:
|
||||
http_proxy: ''
|
||||
|
||||
########
|
||||
# Flathub repo hinzufügen
|
||||
- name: Add the flathub flatpak repository remote to the user installation
|
||||
community.general.flatpak_remote:
|
||||
name: flathub
|
||||
state: present
|
||||
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
method: system
|
||||
|
||||
|
||||
######
|
||||
# Qrca
|
||||
- name: Install Qrca
|
||||
community.general.flatpak:
|
||||
name: org.kde.qrca
|
||||
remote: flathub
|
||||
method: system
|
||||
state: present
|
||||
|
||||
######
|
||||
# PrusaSlicer
|
||||
- name: Install Prusa Slicer
|
||||
community.general.flatpak:
|
||||
name: com.prusa3d.PrusaSlicer
|
||||
remote: flathub
|
||||
method: system
|
||||
state: present
|
||||
|
||||
######
|
||||
# Cryptomator Flatpak
|
||||
- name: Install Cryptomator
|
||||
community.general.flatpak:
|
||||
name: org.cryptomator.Cryptomator
|
||||
remote: flathub
|
||||
method: system
|
||||
state: present
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue