Compare commits
5 commits
36a9c1dd43
...
f6fd4c7e77
Author | SHA1 | Date | |
---|---|---|---|
f6fd4c7e77 | |||
f02bc12fe7 | |||
88c485932a | |||
a92c59d9a4 | |||
b2bca6bb5c |
17 changed files with 12 additions and 43 deletions
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -4,5 +4,7 @@
|
|||
|
||||
- import_tasks: arch.yml
|
||||
when: ansible_distribution == "Archlinux"
|
||||
#
|
||||
|
||||
- import_tasks: dotfiles.yml
|
||||
|
||||
#- import_tasks: timekpr.yml
|
||||
|
|
|
@ -4,3 +4,5 @@
|
|||
|
||||
- import_tasks: arch.yml
|
||||
when: ansible_distribution == "Archlinux"
|
||||
|
||||
- import_tasks: system-setup.yml
|
|
@ -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'
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
- import_tasks: jetbrains-toolbox.yml
|
||||
when: ansible_distribution == "Ubuntu"
|
||||
|
||||
- import_tasks: system-setup.yml
|
||||
when: ansible_distribution == "Ubuntu"
|
Loading…
Reference in a new issue