flameshot dir

unattended nach hinten

calc

docker regel

extra programme

vivaldi check

flameshot

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: mg/ansible#142
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-07-05 15:04:33 +02:00
parent 406d4becad
commit 0926424da8
5 changed files with 14 additions and 5 deletions

View file

@ -31,9 +31,5 @@
protocol: tcp
comment: 'munin'
from_ip: 192.168.0.0/16
- rule: allow
to_port: 5000
protocol: tcp
comment: 'rss-feed-changedetection'
### geerlingguy.munin-node
munin_node_allowed_cidrs: [192.168.0.0/16] # weil der munin-server aus einem anderen subnet zugreift

View file

@ -15,6 +15,8 @@
local_path: "/home/mg/.bash_aliases"
- repo_path: "{{ dotfiles_repo_path}}/alacritty/alacritty.yml"
local_path: "/home/mg/.config/alacritty/alacritty.yml"
- repo_path: "{{ dotfiles_repo_path}}/flameshot/flameshot.ini"
local_path: "/home/mg/.config/flameshot/flameshot.ini"
- repo_path: "{{ dotfiles_repo_path}}/.ssh/config"
local_path: "/home/mg/.ssh/config"
- repo_path: "/home/mg/Nextcloud/Rest/ssh-keys/heimserver/private_key" # smylink in .ssh-dir
@ -24,6 +26,8 @@
- path: /home/mg/.config/polybar
- path: /home/mg/.config/alacritty
- path: /home/mg/.config/.ssh
- path: /home/mg/.config/flameshot
dotfiles_owner: mg
### mgrote.apt_install_packages
programs_extra:
@ -39,6 +43,9 @@
- caja
- arandr
- keepassxc
- vlc
- libreoffice
- gnome-calculator
### mgrote.apt_manage_sources
manage_sources_apt_proxy_url: ""
### mgrote.ntp_chrony_server

View file

@ -1,7 +1,6 @@
---
- import_playbook: base/apt_sources.yml
- import_playbook: base/install_packages.yml
- import_playbook: base/unattended_upgrades.yml
- import_playbook: base/ntp_client.yml
- import_playbook: base/restic.yml
- import_playbook: base/users.yml
@ -15,3 +14,4 @@
- import_playbook: base/f2b.yml
- import_playbook: base/monitoring.yml
- import_playbook: base/remove_snapd.yml
- import_playbook: base/unattended_upgrades.yml

View file

@ -10,4 +10,5 @@
- feh # wallpaper
- rofi
- xautolock #bildschirmsperre nach x min
- flameshot #screenshots
state: present

View file

@ -1,5 +1,10 @@
---
- name: check if vivaldi is already installed
ansible.builtin.package_facts:
manager: apt
- name: download and install vivaldi
become: true
apt:
deb: "{{ xnview_deb_url }}"
when: "'vivaldi' in ansible_facts.packages"