irantu (#135)
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:
parent
f7e320d763
commit
aca5097828
4 changed files with 26 additions and 0 deletions
|
@ -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
|
||||||
|
|
|
@ -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 }
|
||||||
|
|
8
roles/mgrote.vivaldi/README.md
Normal file
8
roles/mgrote.vivaldi/README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
## mgrote.vivaldi
|
||||||
|
### Beschreibung
|
||||||
|
Installiert vivaldi.
|
||||||
|
|
||||||
|
|
||||||
|
### Funktioniert auf
|
||||||
|
- [x] Ubuntu (>=18.04)
|
||||||
|
- [x]Linux Mint
|
13
roles/mgrote.vivaldi/tasks/main.yml
Normal file
13
roles/mgrote.vivaldi/tasks/main.yml
Normal 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
|
Loading…
Reference in a new issue