mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 05:45:24 +01:00
Adding my desktop configuration
This commit is contained in:
1
ansible.desktop/README.md
Normal file
1
ansible.desktop/README.md
Normal file
@@ -0,0 +1 @@
|
||||
Install my Linux Desktop Applications
|
||||
10
ansible.desktop/install-desktop-toolsontech.sh
Executable file
10
ansible.desktop/install-desktop-toolsontech.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
# Simple script to run the playbook
|
||||
if [ ! -x /usr/bin/ansible ]; then
|
||||
echo "Missing Ansible, Running Install"
|
||||
if [ -x /usr/bin/apt ]; then
|
||||
# I'm not doing anything fancy, so older version from repo is okay
|
||||
apt install -f ansible
|
||||
fi
|
||||
fi
|
||||
ansible-playbook install-desktop-toolsontech.yml
|
||||
20
ansible.desktop/install-desktop-toolsontech.yml
Normal file
20
ansible.desktop/install-desktop-toolsontech.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
- name: Setup my personal Desktop
|
||||
hosts: localhost
|
||||
tasks:
|
||||
- name: Include Elements
|
||||
ansible.builtin.include_tasks: "{{ item }}"
|
||||
loop:
|
||||
- tasks/base_packages.yml
|
||||
- tasks/todoist.yml
|
||||
- tasks/nocfree.yml
|
||||
- tasks/discord.yml
|
||||
|
||||
|
||||
|
||||
# Todo - Setup Brave and install
|
||||
# Todo - Prep for Resolve
|
||||
#
|
||||
|
||||
|
||||
|
||||
BIN
ansible.desktop/tasks/.discord.yml.swp
Normal file
BIN
ansible.desktop/tasks/.discord.yml.swp
Normal file
Binary file not shown.
17
ansible.desktop/tasks/base_packages.yml
Normal file
17
ansible.desktop/tasks/base_packages.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
- name: Install base packages
|
||||
become: true
|
||||
apt:
|
||||
name:
|
||||
- ansible
|
||||
- vim
|
||||
- git
|
||||
- tmux
|
||||
|
||||
- name: Capture Tools
|
||||
become: true
|
||||
apt:
|
||||
name:
|
||||
- flameshot
|
||||
- peek
|
||||
- obs-studio
|
||||
8
ansible.desktop/tasks/discord.yml
Normal file
8
ansible.desktop/tasks/discord.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
- name: Communication
|
||||
apt:
|
||||
name:
|
||||
- discord
|
||||
# Let's fix Discord Auto updating, because it's a pain
|
||||
# https://github.com/FlorianHegele/AutoUpdateDiscord
|
||||
# /
|
||||
10
ansible.desktop/tasks/nocfree.yml
Normal file
10
ansible.desktop/tasks/nocfree.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
# Setup things for my NocFree Keyboard
|
||||
- name: Setup UDEV NocFree
|
||||
become: true
|
||||
copy:
|
||||
dest: /etc/udev/rules.d/99-vial.rules
|
||||
owner: root
|
||||
group: root
|
||||
content: 'KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{serial}=="*vial:f64c2b3c*", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl"'
|
||||
mode: '0644'
|
||||
6
ansible.desktop/tasks/todoist.yml
Normal file
6
ansible.desktop/tasks/todoist.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: Todoist
|
||||
community.general.flatpak:
|
||||
name: com.todoist.Todoist
|
||||
state: present
|
||||
method: user
|
||||
Reference in New Issue
Block a user