Compare commits

..

No commits in common. "bf6ca66f4b1ae2a39268340f8fa87d2b7b8fb831" and "7ee7eebfc78f28b03e738bfef70b7fbc4928a5c1" have entirely different histories.

6 changed files with 1 additions and 69 deletions

View file

@ -5,11 +5,9 @@
- ubuntu - ubuntu
- firefox - firefox
- docker - docker
- dotfiles
- java - java
- jetbrains - jetbrains
- compton - compton
- signal - signal
- virtual - virtual
- lutris - lutris
- prusa-slicer

View file

@ -1,24 +0,0 @@
---
- name: install required packages
become: yes
apt:
update_cache: yes
pkg:
- git
- make
- name: create src dir
file:
path: ~/src
- name: checkout dotfiles
git:
repo: "{{ dotfiles.repo }}"
dest: "{{ ansible_user_dir }}/src/dotfiles"
clone: yes
update: yes
- name: install
make:
target: install
chdir: "{{ ansible_user_dir }}/src/dotfiles"

View file

@ -1,3 +0,0 @@
---
dotfiles:
repo: https://github.com/pgrondek/dotfiles.git

View file

@ -1,38 +0,0 @@
- name: install jmespath for json_query
become: yes
apt:
update_cache: yes
pkg:
- python3-jmespath
- name: "Get PrusaSlicer version"
uri:
url: https://api.github.com/repos/prusa3d/PrusaSlicer/releases/latest
body_format: json
register: git_info
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
when: ansible_architecture == "x86_64"
- name: Install on amd64
become: yes
when: ansible_architecture == "x86_64"
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
when: ansible_architecture == "arm64"
- name: Install on arm64
when: ansible_architecture == "arm64"
become: yes
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755

View file

@ -55,8 +55,7 @@
- name: copy - name: copy
become: yes become: yes
copy: copy:
src: "{{ ansible_user_dir }}/src/looking-glass/client/build/looking-glass-client" remote_src: "{{ ansible_user_dir }}/src/looking-glass/client/build/looking-glass-client"
remote_src: yes
dest: "/usr/local/bin/looking-glass-client" dest: "/usr/local/bin/looking-glass-client"
mode: "0755" mode: "0755"
force: yes force: yes