Compare commits

...

5 commits

17 changed files with 12 additions and 43 deletions

View file

@ -7,9 +7,8 @@
- ubuntu-firefox
- signal
- dotfiles
- jetbrains
- prusa-slicer
- intellij
- dev-java:
- autofs
- dwm
- docker
@ -19,7 +18,7 @@
- ego
- gaming
# - flutter
# - dev-flutter
# - virtual
# - terraform
vars:

View file

@ -104,6 +104,11 @@
state: present
name: it.mijorus.smile
- name: install bottles
community.general.flatpak:
state: present
name: com.usebottles.bottles
- name: install audio [Arch]
become: yes
community.general.pacman:

View file

@ -4,5 +4,7 @@
- import_tasks: arch.yml
when: ansible_distribution == "Archlinux"
#
- import_tasks: dotfiles.yml
#- import_tasks: timekpr.yml

View file

@ -4,3 +4,5 @@
- import_tasks: arch.yml
when: ansible_distribution == "Archlinux"
- import_tasks: system-setup.yml

View file

@ -1,33 +0,0 @@
---
- name: Create temp dir
file:
path: /tmp/jetbrains-toolbox
state: directory
- name: Install jetbrains toolbox
become: yes
unarchive:
src: https://data.services.jetbrains.com/products/download?platform=linux&code=TBA
dest: /tmp/jetbrains-toolbox
remote_src: yes
mode: 0755
- name: get folder name
shell: ls /tmp/jetbrains-toolbox
register: dir_name
- name: Move foo to bar
become: yes
command: cp -ra /tmp/jetbrains-toolbox/{{ dir_name.stdout }}/jetbrains-toolbox /usr/local/bin/jetbrains-toolbox
- name: Remove temp directory
become: yes
file:
path: /tmp/jetbrains-toolbox
state: absent
- name: change chmod
become: yes
file:
path: /usr/local/bin/jetbrains-toolbox
mode: '0755'

View file

@ -1,6 +0,0 @@
---
- import_tasks: jetbrains-toolbox.yml
when: ansible_distribution == "Ubuntu"
- import_tasks: system-setup.yml
when: ansible_distribution == "Ubuntu"