Compare commits
7 Commits
3fee590a8f
...
benie/gnom
| Author | SHA1 | Date | |
|---|---|---|---|
| f5fc30a924 | |||
| 1f4c43a4a1 | |||
| 3b31dc06fe | |||
| 876db8ecfb | |||
| 959f4b2b32 | |||
| d8c6c6a808 | |||
| 5420eb9cd5 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
external
|
||||
modules/win_git*
|
||||
playbooks/test.yaml
|
||||
|
||||
3
playbooks/Linux.yaml
Normal file
3
playbooks/Linux.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
---
|
||||
- import_playbook: LinuxCLI.yaml
|
||||
- import_playbook: UnixGUI.yaml
|
||||
5
playbooks/LinuxCLI.yaml
Normal file
5
playbooks/LinuxCLI.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: gdb
|
||||
- role: system-info
|
||||
@@ -8,26 +8,25 @@
|
||||
- role: zsh
|
||||
- role: neovim
|
||||
- role: tmux
|
||||
- role: system-info
|
||||
when: '"WSL" not in ansible_kernel'
|
||||
|
||||
- role: ag
|
||||
- role: bash
|
||||
- role: bat
|
||||
- role: curl
|
||||
- role: editline
|
||||
- role: fzf
|
||||
- role: gh
|
||||
- role: git
|
||||
- role: glab
|
||||
- role: htop
|
||||
- role: jp
|
||||
- role: jq
|
||||
- role: readline
|
||||
- role: tidy
|
||||
- role: tree
|
||||
- role: yq
|
||||
- role: watch
|
||||
- role: wget
|
||||
- role: yq
|
||||
|
||||
- role: llvm
|
||||
- role: nodejs
|
||||
|
||||
- role: wsl
|
||||
when: '"WSL" in ansible_kernel'
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
---
|
||||
- import_playbook: UnixCLI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: 1password
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
---
|
||||
- import_playbook: Unix.yaml
|
||||
- import_playbook: Windows.yaml
|
||||
- import_playbook: UnixCLI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: gdb
|
||||
- role: wsl
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
- import_playbook: UnixCLI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: system-info
|
||||
- import_playbook: UnixGUI.yaml
|
||||
- hosts: localhost
|
||||
roles:
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
---
|
||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||
# TODO: If gnome-shell on wayland set global key binding in custom keyboard settings
|
||||
|
||||
6
roles/gdb/RedHat.yaml
Normal file
6
roles/gdb/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install dnf package
|
||||
become: true
|
||||
dnf:
|
||||
name: gdb
|
||||
state: latest
|
||||
6
roles/glab/tasks/RedHat.yaml
Normal file
6
roles/glab/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install dnf package
|
||||
become: true
|
||||
dnf:
|
||||
name: glab
|
||||
state: latest
|
||||
4
roles/ulauncher/tasks/main.yaml
Normal file
4
roles/ulauncher/tasks/main.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
# TODO: Install ulauncher - or find a better alternative
|
||||
# TODO: If gnome-shell on wayland set global key binding in custom keyboard settings
|
||||
# TODO: Clone https://github.com/shepda/ulauncher-adwaita-darkish into ~/.config/ulauncher/user-themes
|
||||
@@ -1,5 +1,6 @@
|
||||
---
|
||||
- name: install apt package
|
||||
become: true
|
||||
apt:
|
||||
name: wget
|
||||
state: latest
|
||||
|
||||
6
roles/wget/tasks/RedHat.yaml
Normal file
6
roles/wget/tasks/RedHat.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
- name: install dnf package
|
||||
become: true
|
||||
dnf:
|
||||
name: wget
|
||||
state: latest
|
||||
Reference in New Issue
Block a user