Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add install rclone #276

Merged
merged 1 commit into from
Jul 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- Browsers: [Firefox] configuration and [Brave] installation.
- Packages intallation: apt, snap, pip, npm, ruby gems.
- Replaces [LibreOffice] with [OnlyOffice].
- Assorted FOSS programs: [Cryptomator], [KeyPass], [OBS], [OpenRGB] and [Signal] messenger installation.
- Assorted FOSS programs: [Cryptomator], [KeyPass], [OBS], [OpenRGB], [RClone], and [Signal] messenger installation.
- Configurations: dotfiles, shell/terminals, [Gnome], [Git], ssh, keyboard...

Note: this is an opinionated setup I personally use for software development. You can customize all the changes following instructions in [Overriding Defaults](#overriding-defaults).
Expand Down Expand Up @@ -180,6 +180,7 @@ This project was inspired by [@geerlingguy]'s [Mac Development Ansible Playbook]
[openrgb]: https://gitlab.com/CalcProgrammer1/OpenRGB
[pycharm]: https://www.jetbrains.com/pycharm/
[python tools]: https://github.com/staticdev/ansible-role-python-developer
[rclone]: https://rclone.org/
[signal]: https://signal.org
[vscode]: https://code.visualstudio.com/
[vscodium]: https://vscodium.com/
1 change: 1 addition & 0 deletions default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ cryptomator_version: 1.6.10

install_keypass_xc: false
install_obs: false
install_rclone: false
install_signal: false

## openrgb
Expand Down
2 changes: 2 additions & 0 deletions main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
become: true
- role: geerlingguy.dotfiles
when: configure_dotfiles
- role: stefangweichinger.ansible_rclone
when: install_rclone

tasks:
- name: Install Pycharm
Expand Down
19 changes: 9 additions & 10 deletions requirements.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
---
roles:
- name: staticdev.firefox
version: 1.1.0
- name: staticdev.brave
version: 1.0.0
- name: gantsign.visual-studio-code
version: 6.8.0
- name: geerlingguy.docker
version: 4.2.4
- name: geerlingguy.dotfiles
version: 1.2.1
- name: green_leader.codium
version: 1.0.4
- name: robertdebock.obsproject
version: 2.0.5
- name: staticdev.brave
version: 1.0.0
- name: staticdev.firefox
version: 1.1.0
- name: staticdev.python_developer
version: 2.0.0
- name: staticdev.signal
version: 1.3.2
- name: green_leader.codium
version: 1.0.4
when: install_vscodium
- name: gantsign.visual-studio-code
version: 6.8.0
when: install_vscode
- name: stefangweichinger.ansible_rclone

collections:
- name: community.general
Expand Down