keepassxc

vivaldi

programme

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#135
Co-Authored-By: mg <mg@noreply.git.mgrote.net>
Co-Committed-By: mg <mg@noreply.git.mgrote.net>
This commit is contained in:
Michael Grote 2021-06-26 14:33:42 +02:00
parent f7e320d763
commit aca5097828
4 changed files with 26 additions and 0 deletions

View file

@ -31,6 +31,10 @@
- nextcloud-desktop - nextcloud-desktop
- gnome-tweaks - gnome-tweaks
- powertop - powertop
- caja
- xrandr
- arandr
- keepassxc
### mgrote.apt_manage_sources ### mgrote.apt_manage_sources
manage_sources_apt_proxy_url: "" manage_sources_apt_proxy_url: ""
### mgrote.ntp_chrony_server ### mgrote.ntp_chrony_server

View file

@ -5,3 +5,4 @@
- { role: mgrote.polybar, tags: "polybar", become: true } - { role: mgrote.polybar, tags: "polybar", become: true }
- { role: mgrote.deactivate_caps, tags: "caps", become: true } - { role: mgrote.deactivate_caps, tags: "caps", become: true }
- { role: mgrote.alacritty, tags: "alacritty", become: true } - { role: mgrote.alacritty, tags: "alacritty", become: true }
- { role: mgrote.vivaldi, tags: "vivaldi", become: true }

View file

@ -0,0 +1,8 @@
## mgrote.vivaldi
### Beschreibung
Installiert vivaldi.
### Funktioniert auf
- [x] Ubuntu (>=18.04)
- [x]Linux Mint

View file

@ -0,0 +1,13 @@
---
- name: add repo
ansible.builtin.apt_repository:
repo: deb https://repo.vivaldi.com/archive/deb/ stable main
state: present
filename: vivaldi
- name: install packages
become: yes
ansible.builtin.package:
name:
- vivaldi-stable
state: present