Update Bluej, Greenfoot. Arduino2 Appimage, Slicer Appimage
This commit is contained in:
parent
05a62f8582
commit
58fd458616
11 changed files with 281 additions and 9 deletions
BIN
roles/lmn_qgsoftware/files/prusaslicer.png
Normal file
BIN
roles/lmn_qgsoftware/files/prusaslicer.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9 KiB |
13
roles/lmn_qgsoftware/files/qg.appimage.ArduinoIDE2.desktop
Normal file
13
roles/lmn_qgsoftware/files/qg.appimage.ArduinoIDE2.desktop
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Desktop Entry]
|
||||
Name=Arduino IDE2 AppImage
|
||||
Comment=Open-source electronics prototyping platform
|
||||
GenericName=Arduino IDE
|
||||
Exec=/opt/appimages/arduino2/ArduinoIDE2.AppImage %f
|
||||
Icon=arduino
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Categories=Development;Engineering;Electronics;IDE;
|
||||
MimeType=text/x-arduino
|
||||
Keywords=embedded electronics;electronics;avr;microcontroller;
|
||||
StartupWMClass=processing-app-Base
|
||||
|
13
roles/lmn_qgsoftware/files/qg.appimage.PrusaSlicer.desktop
Normal file
13
roles/lmn_qgsoftware/files/qg.appimage.PrusaSlicer.desktop
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Desktop Entry]
|
||||
Name=Prusa Slicer Appimage
|
||||
Name[de]=Prusa Slicer Appimage
|
||||
Name[pl]=Prusa Slicer Appimage
|
||||
Comment=Slicer for 3d Printing
|
||||
GenericName=Slicing App Image
|
||||
Exec=/opt/appimages/prusaslicer/PrusaSlicer.AppImage
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=prusaslicer
|
||||
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;
|
|
@ -54,6 +54,68 @@
|
|||
owner: root
|
||||
group: root
|
||||
|
||||
########
|
||||
# Arduino2 AppImage
|
||||
#
|
||||
- name: Make sure target dir exists
|
||||
ansible.builtin.file:
|
||||
path: /opt/appimages/arduino2/
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download Arduino2 AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/ArduinoIDE2.AppImage"
|
||||
dest: /opt/appimages/arduino2/ArduinoIDE2.AppImage
|
||||
mode: '0755'
|
||||
|
||||
- name: Copy desktop arduino2 starter file to target
|
||||
copy:
|
||||
src: files/qg.appimage.ArduinoIDE2.desktop
|
||||
dest: /usr/share/applications/qg.appimage.ArduinoIDE2.desktop
|
||||
mode: '0644'
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
|
||||
########
|
||||
# Prusa Slicer AppImage
|
||||
#
|
||||
- name: Make sure target dir exists
|
||||
ansible.builtin.file:
|
||||
path: /opt/appimages/prusaslicer/
|
||||
state: directory
|
||||
recurse: yes
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0755'
|
||||
|
||||
- name: Download PrusaSlicer AppImage from Cache
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ mirror_appimage }}/PrusaSlicer.AppImage"
|
||||
dest: /opt/appimages/prusaslicer/PrusaSlicer.AppImage
|
||||
mode: '0755'
|
||||
|
||||
- name: Copy desktop PrusaSlicer starter file to target
|
||||
copy:
|
||||
src: files/qg.appimage.PrusaSlicer.desktop
|
||||
dest: /usr/share/applications/qg.appimage.PrusaSlicer.desktop
|
||||
mode: '0644'
|
||||
owner: root
|
||||
|
||||
- name: Copy desktop Prusaslicer icon file to target
|
||||
copy:
|
||||
src: files/prusaslicer.png
|
||||
dest: /usr/share/icons/prusaslicer.png
|
||||
mode: '0644'
|
||||
owner: root
|
||||
group: root
|
||||
group: root
|
||||
|
||||
|
||||
########
|
||||
# Logseq AppImage
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue