41 Commits

Author SHA1 Message Date
9020fc0459 temp! 2024-04-09 00:37:00 +01:00
a8f255b715 Add Guake role
Fixes #25
2024-04-08 23:54:45 +01:00
c5c12ab670 Remove set config repo email todos 2024-04-08 21:26:39 +01:00
18a74355c0 Expand launchd todo 2024-04-08 21:25:03 +01:00
f512ec427b Rename gnome-tweaks to gnome-shell
Also start gathering info for starting work on #17.
2024-04-07 23:48:54 +01:00
66efc7b88f Add gitea role for tea cli tool 2024-04-07 16:28:33 +01:00
e711b9f3b2 Add optional GitHub API authentication headers
If the `GITHUB_TOKEN` is defined in the Ansible controller's
environment it is used to set the GitHub REST API authentication header.
This is they passed to all `uri` modules tasks which interact with the
GitHub REST API. If the `GITHUB_TOKEN` is not set, the authentication
header is not used.

Fixes #19
2024-04-06 16:35:01 +01:00
883fee21b3 Add podman role
Fixes #12
2024-04-06 15:03:18 +01:00
035c9a7577 Install latest pynvim on Debian based systems
Fixes #21
2024-04-06 14:37:19 +01:00
8635277d75 Add role for fd 2024-04-06 13:51:40 +01:00
500b27a473 Add ripgrep role 2024-04-06 13:47:04 +01:00
19d0ac491b Replace Firefox Snap with Mozilla repo package
Fixes #20
2024-04-06 12:57:59 +01:00
b57c3f9916 Switch over to neovim specific config repo 2024-04-01 12:26:32 +01:00
5126d06e1e Use latest neovim from GitHub on Debian based distros 2024-03-02 00:42:27 +00:00
b63ff02e0c Update WSL playbook 2024-02-27 22:09:15 +00:00
ebf8cfac42 Make cider role usage more strict 2024-02-27 22:04:25 +00:00
643b4eac8d Add note about first time git install on windows 2023-12-23 23:16:35 +00:00
8cfb03bd4d Fix gnome-tweaks when clause 2023-11-28 23:05:36 +00:00
cf041f9747 Add rpmfusion role on Fedora 2023-11-24 22:48:40 +00:00
66e7d9dc76 Add gnome-tweaks role 2023-11-24 22:17:24 +00:00
c4ac91f163 Set EDITOR in .bashrc 2023-10-28 23:16:18 +01:00
9017be5cf7 Add cider role for Linux and Windows
Cider is a cross-platform Apple Music client. Don't bother installing
Cider on macOS since there is the first party Music app.
2023-10-24 00:07:19 +01:00
b4685b9d1e Create shortcut for Ferdium on Windows 2023-10-21 17:44:40 +01:00
e5cc78f6f4 Add url command to zsh symlinks 2023-10-19 18:06:04 +01:00
9df05dc567 Add macos role for macOS tweaks 2023-10-10 21:36:18 +01:00
37d89c475e Add hiddenbar role for macOS 2023-10-10 21:12:05 +01:00
fa0cf04d8f Fix kitty role on macOS 2023-10-10 21:11:50 +01:00
0d1993ef53 Fix win_git module for hidden folders 2023-10-06 10:51:28 +01:00
9fef9403b3 Fix pynvim on macOS by installing dependency 2023-10-01 23:42:44 +01:00
253cf462b3 Add macOS support to kitty role 2023-10-01 23:42:34 +01:00
54b3c4edfe Flatpak system installs require root 2023-09-25 11:20:52 +01:00
4489c05014 Replace yum with dnf where possible 2023-08-28 22:19:44 +01:00
520462a3f4 Add unsafe tags to zsh and tmux
When used in combination with the `--skip-tags unsafe` flag the
`playbooks/UnixCLI.yaml` can be run while inside a `zsh`/`tmux` session
without it locking up due to system files going missing due to the
upgrade.
2023-08-25 12:29:18 +01:00
aeba9ba7f2 Fix obsidian role when already using flatpak 2023-08-20 21:08:36 +01:00
669dffc2c5 Add ~/.local/bin to PATH in .bashrc 2023-08-18 10:54:30 +01:00
399300c162 Switch to obsidian from flathub 2023-08-17 23:45:34 +01:00
3a4224d200 Fix Fedora/RedHat config 2023-08-17 23:31:59 +01:00
afa680c4d1 Enable xremap on Debian/Ubuntu 2023-08-17 23:24:03 +01:00
cba3f6ce2a Name the chocolatey ferdium task 2023-08-01 21:06:51 +01:00
d37b675187 Override Ubuntu codename for neovim ppa 2023-08-01 20:57:10 +01:00
3364d770e1 Add flatpak role for Debian 2023-08-01 20:56:50 +01:00
61 changed files with 754 additions and 120 deletions

View File

@@ -0,0 +1,154 @@
#!/usr/bin/python
# Copyright: (c) 2018, Terry Jones <terry.jones@example.org>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
from __future__ import (absolute_import, division, print_function)
from typing import Dict, List
__metaclass__ = type
DOCUMENTATION = r'''
---
module: my_test
short_description: This is my test module
# If this is part of a collection, you need to use semantic versioning,
# i.e. the version is of the form "2.5.0" and not "2.4".
version_added: "1.0.0"
description: This is my longer description explaining my test module.
options:
name:
description: This is the message to send to the test module.
required: true
type: str
new:
description:
- Control to demo if the result of this module is changed or not.
- Parameter description can be a list as well.
required: false
type: bool
# Specify this value according to your collection
# in format of namespace.collection.doc_fragment_name
# extends_documentation_fragment:
# - my_namespace.my_collection.my_doc_fragment_name
author:
- Your Name (@yourGitHubHandle)
'''
EXAMPLES = r'''
# Pass in a message
- name: Test with a message
my_namespace.my_collection.my_test:
name: hello world
# pass in a message and have changed true
- name: Test with a message and changed output
my_namespace.my_collection.my_test:
name: hello world
new: true
# fail the module
- name: Test failure of the module
my_namespace.my_collection.my_test:
name: fail me
'''
RETURN = r'''
# These are examples of possible return values, and in general should use other names for return values.
original_message:
description: The original name param that was passed in.
type: str
returned: always
sample: 'hello world'
message:
description: The output message that the test module generates.
type: str
returned: always
sample: 'goodbye'
'''
from ansible.module_utils.basic import AnsibleModule, subprocess
def run_module():
# define available arguments/parameters a user can pass to the module
module_args = dict(
keybindings=dict(type='list', require=True),
)
# seed the result dict in the object
# we primarily care about changed and state
# changed is if this module effectively modified the target
# state will include any data that you want your module to pass back
# for consumption, for example, in a subsequent task
result = dict(
changed=False,
original_message='',
message=''
)
# the AnsibleModule object will be our abstraction working with Ansible
# this includes instantiation, a couple of common attr would be the
# args/params passed to the execution, as well as if the module
# supports check mode
module = AnsibleModule(
argument_spec=module_args,
supports_check_mode=True
)
# if the user is working with this module in only check mode we do not
# want to make any changes to the environment, just return the current
# state with no modifications
if module.check_mode:
module.exit_json(**result)
# manipulate or modify the state as needed (this is going to be the
# part where your module will do what it needs to do)
keys = []
for index, keybinding in enumerate(module.params["keybindings"]):
key = f"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{index}"
for value in ["binding", "command", "name"]:
subprocess.check_call(
["dconf", "write", f"/{key}{value}", f"'{keybinding[value]}'"]
)
keys.append(key)
subprocess.check_call(
[
"dconf",
"write",
"/org/gnome/settings-daemon/plugins/media-keys",
f"['{"', '".join(keys)}']",
]
)
# result['original_message'] = str(keybinding_entries)
# result["message"] = str(custom_keybindings)
# use whatever logic you need to determine whether or not this module
# made any modifications to your target
# if module.params['new']:
result['changed'] = True
# during the execution of the module, if there is an exception or a
# conditional state that effectively causes a failure, run
# AnsibleModule.fail_json() to pass in the message and the result
# if module.params['name'] == 'fail me':
# module.fail_json(msg='You requested this to fail', **result)
# in the event of a successful module execution, you will want to
# simple AnsibleModule.exit_json(), passing the key/value results
module.exit_json(**result)
def main():
run_module()
if __name__ == '__main__':
main()

View File

@@ -223,7 +223,7 @@ if ($recursive) {
# Ensure the repository has the correct owner # Ensure the repository has the correct owner
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name $userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
$idRef = [System.Security.Principal.NTAccount]::new($userName) $idRef = [System.Security.Principal.NTAccount]::new($userName)
Get-Item $dest | foreach { ` Get-Item -Force $dest | foreach { `
$_ ; $_ | Get-ChildItem -Force -Recurse ` $_ ; $_ | Get-ChildItem -Force -Recurse `
} | foreach { ` } | foreach { `
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl ` $acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `

View File

@@ -2,7 +2,21 @@
- import_playbook: LinuxCLI.yaml - import_playbook: LinuxCLI.yaml
- import_playbook: UnixGUI.yaml - import_playbook: UnixGUI.yaml
- hosts: localhost - hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: firefox
- role: kitty - role: kitty
- role: guake
- role: cider
- role: gnome-shell
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
- role: xremap - role: xremap
when: ansible_os_family == "RedHat" when: >
'GNOME' in ansible_env.XDG_CURRENT_DESKTOP and
ansible_env.XDG_SESSION_TYPE == 'wayland' and (
ansible_os_family == "RedHat" or
ansible_os_family == "Debian"
)

View File

@@ -1,6 +1,15 @@
--- ---
- hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles:
- role: rpmfusion
when: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
- import_playbook: UnixCLI.yaml - import_playbook: UnixCLI.yaml
- hosts: localhost - hosts: localhost
roles: roles:
- role: gdb - role: gdb
- role: podman
- role: system-info - role: system-info

View File

@@ -1,19 +1,26 @@
--- ---
- hosts: localhost - hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: sudo - role: sudo
when: ansible_user_id != "root" when: ansible_user_id != "root"
- role: python - role: python
- role: zsh - role: zsh
tags: unsafe
- role: neovim - role: neovim
- role: tmux - role: tmux
tags: unsafe
- role: ag - role: ag
- role: bash - role: bash
- role: bat - role: bat
- role: curl - role: curl
- role: editline - role: editline
- role: fd
- role: fzf - role: fzf
- role: gh - role: gh
- role: git - role: git
@@ -22,6 +29,7 @@
- role: jp - role: jp
- role: jq - role: jq
- role: readline - role: readline
- role: ripgrep
- role: tidy - role: tidy
- role: tree - role: tree
- role: watch - role: watch

View File

@@ -1,6 +1,13 @@
--- ---
- hosts: localhost - hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: flatpak
when: ansible_os_family != "Darwin"
- role: 1password - role: 1password
- role: ferdium - role: ferdium
- role: fonts - role: fonts

View File

@@ -1,7 +1,9 @@
--- ---
- import_playbook: UnixCLI.yaml - import_playbook: LinuxCLI.yaml
- hosts: localhost - hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: gdb
- role: wsl - role: wsl
- role: system-info

View File

@@ -1,6 +1,9 @@
--- ---
- hosts: windows - hosts: windows
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: python - role: python
- role: git - role: git
@@ -11,10 +14,12 @@
- role: ag - role: ag
- role: bat - role: bat
- role: curl - role: curl
- role: fd
- role: fzf - role: fzf
- role: gh - role: gh
- role: glab - role: glab
- role: jq - role: jq
- role: ripgrep
- role: tree - role: tree
- role: yq - role: yq
@@ -23,6 +28,7 @@
- role: 1password - role: 1password
- role: autohotkey - role: autohotkey
- role: cider
- role: ferdium - role: ferdium
- role: firefox - role: firefox
- role: fonts - role: fonts

View File

@@ -5,10 +5,18 @@
- role: system-info - role: system-info
- import_playbook: UnixGUI.yaml - import_playbook: UnixGUI.yaml
- hosts: localhost - hosts: localhost
vars:
github_auth_headers: >-
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
if lookup('env', 'GITHUB_TOKEN') else {} }}
roles: roles:
- role: mas - role: mas
- role: hiddenbar
- role: iterm - role: iterm
- role: kitty
- role: magnet - role: magnet
- role: microsoft-remote-desktop - role: microsoft-remote-desktop
- role: viscosity - role: viscosity
- role: macos

View File

@@ -1,10 +1,10 @@
--- ---
- name: add yum repository key - name: add dnf repository key
become: true become: true
rpm_key: rpm_key:
key: https://downloads.1password.com/linux/keys/1password.asc key: https://downloads.1password.com/linux/keys/1password.asc
- name: add yum repository - name: add dnf repository
become: true become: true
yum_repository: yum_repository:
name: 1password name: 1password
@@ -15,8 +15,8 @@
repo_gpgcheck: true repo_gpgcheck: true
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc'] gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: 1password name: 1password
state: latest state: latest

View File

@@ -1,6 +1,6 @@
--- ---
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: the_silver_searcher name: the_silver_searcher
state: latest state: latest

View File

@@ -110,3 +110,13 @@ grey="\001\e[38;5;244m\002"
reset="\001\e[0m\002" reset="\001\e[0m\002"
PS1="$yellow\u$reset@$grey\h$reset " PS1="$yellow\u$reset@$grey\h$reset "
# Setup environment variables
export PATH=$HOME/.local/bin:$PATH
if command -v nvim > /dev/null; then
export EDITOR=nvim
elif command -v vim > /dev/null; then
export EDITOR=vim
elif command -v vi > /dev/null; then
export EDITOR=vi
fi

View File

@@ -1,6 +1,6 @@
--- ---
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: bat name: bat
state: latest state: latest

View File

@@ -2,6 +2,7 @@
- name: get latest github release - name: get latest github release
uri: uri:
url: https://api.github.com/repos/sharkdp/bat/releases/latest url: https://api.github.com/repos/sharkdp/bat/releases/latest
headers: '{{github_auth_headers}}'
register: latest register: latest
- set_fact: - set_fact:

View File

@@ -0,0 +1,15 @@
---
- assert:
that: ansible_os_family != 'Darwin'
- name: install chocolatey package
when: ansible_os_family == 'Windows'
win_chocolatey:
name: Cider
state: latest
- name: install flatpak package
when: ansible_os_family != 'Windows'
become: true
flatpak:
name: sh.cider.Cider

View File

@@ -1,6 +1,6 @@
--- ---
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: curl name: curl
state: latest state: latest

26
roles/fd/tasks/main.yaml Normal file
View File

@@ -0,0 +1,26 @@
---
- name: install apt package
when: ansible_os_family == 'Debian'
become: true
apt:
name: fd-find
state: latest
- name: install dnf package
when: ansible_os_family == 'RedHat'
become: true
dnf:
name: fd-find
state: latest
- name: install Homebrew package
when: ansible_os_family == 'Darwin'
homebrew:
name: fd
state: latest
- name: install Chocolatey package
when: ansible_os_family == 'Windows'
win_chocolatey:
name: fd
state: latest

View File

@@ -0,0 +1,14 @@
---
- name: install chocolatey package
win_chocolatey:
name: ferdium
state: latest
- set_fact:
ferdium_exe: 'C:/Program Files/Ferdium/Ferdium.exe'
- name: create start menu shortcut
win_shortcut:
src: '{{ferdium_exe}}'
dest: '{{ansible_env.ProgramData}}/Microsoft/Windows/Start Menu/Programs/Ferdium.lnk'
icon: '{{ferdium_exe}},0'

View File

@@ -6,12 +6,11 @@
state: latest state: latest
- when: ansible_os_family == 'Windows' - when: ansible_os_family == 'Windows'
win_chocolatey: include_tasks: Windows.yaml
name: ferdium
state: latest
- name: install flatpak package - name: install flatpak package
when: ansible_os_family != 'Windows' and when: ansible_os_family != 'Windows' and
ansible_os_family != 'Darwin' ansible_os_family != 'Darwin'
become: true
flatpak: flatpak:
name: org.ferdium.Ferdium name: org.ferdium.Ferdium

View File

@@ -0,0 +1,51 @@
---
- name: remove snap package
become: true
snap:
name: firefox
state: absent
- name: create keyrings directory
become: true
file:
path: /etc/apt/keyrings
mode: '755'
state: directory
- name: install mozilla repo keyring
become: true
get_url:
url: https://packages.mozilla.org/apt/repo-signing-key.gpg
dest: /etc/apt/keyrings/packages.mozilla.org.asc
- name: add mozilla apt repo
become: true
copy:
content: >-
deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc]
https://packages.mozilla.org/apt mozilla main
dest: /etc/apt/sources.list.d/mozilla.list
- name: pin mozilla package
become: true
copy:
content: |
Package: *
Pin: origin packages.mozilla.org
Pin-Priority: 1000
dest: /etc/apt/preferences.d/mozilla
- name: install mozilla package
become: true
apt:
name: firefox
state: latest
allow_downgrade: true
update_cache: true
- name: install gnome shell integration
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
become: true
apt:
name: chrome-gnome-shell
state: latest

View File

@@ -1,2 +1,5 @@
--- ---
- include_tasks: '{{ansible_os_family}}.yaml' - include_tasks: Windows.yaml
when: ansible_os_family == 'Windows'
- include_tasks: Ubuntu.yaml
when: ansible_distribution == 'Ubuntu'

View File

@@ -0,0 +1,6 @@
---
- name: install apt package
become: true
apt:
name: flatpak
state: latest

View File

@@ -0,0 +1,6 @@
---
- name: install dnf package
become: true
dnf:
name: flatpak
state: latest

View File

@@ -0,0 +1,9 @@
---
- include_tasks: '{{ansible_os_family}}.yaml'
- name: add flathub repository remote
become: true
flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo

View File

@@ -17,6 +17,7 @@
- name: get latest release - name: get latest release
uri: uri:
url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest
headers: '{{github_auth_headers}}'
register: latest register: latest
- set_fact: - set_fact:

View File

@@ -1,6 +1,6 @@
--- ---
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: fzf name: fzf
state: latest state: latest

View File

@@ -1,5 +1,5 @@
--- ---
- name: add yum repository - name: add dnf repository
become: true become: true
get_url: get_url:
url: https://cli.github.com/packages/rpm/gh-cli.repo url: https://cli.github.com/packages/rpm/gh-cli.repo

View File

@@ -2,6 +2,7 @@
- name: get json containing all releases - name: get json containing all releases
win_uri: win_uri:
url: 'https://api.github.com/repos/git-for-windows/git/releases/tags/v{{git_version}}.windows.1' url: 'https://api.github.com/repos/git-for-windows/git/releases/tags/v{{git_version}}.windows.1'
headers: '{{github_auth_headers}}'
return_content: true return_content: true
register: git_release register: git_release

View File

@@ -31,6 +31,7 @@
- include_tasks: Windows-installer.yaml - include_tasks: Windows-installer.yaml
when: git_run_installer when: git_run_installer
# NOTE: If this is failing on first install of git, restart the sshd service.
- name: clone config repos - name: clone config repos
win_git: win_git:
repo: '{{item.repo}}' repo: '{{item.repo}}'

View File

@@ -0,0 +1,49 @@
---
- name: stat tea executable
stat:
path: '{{tea_package_exe}}'
register: tea
- name: get installed version
when: tea.stat.exists
command: '{{tea_package_exe}} --version'
register: tea_version_string
- name: extract version number
when: tea.stat.exists
set_fact:
installed_version: "{{tea_version_string.stdout |
regex_search('^.*(\\d+\\.\\d+\\.\\d+).*golang.*$', '\\1') }}"
- name: get latest release json
uri:
url: https://gitea.com/api/v1/repos/gitea/tea//releases/latest
register: latest
- name: check installed version
set_fact:
install_required: >
{{not tea.stat.exists or latest.json.name != 'v' + installed_version[0]}}
asset: '{{latest.json.assets | json_query(tea_asset_query)}}'
- name: create package directory
when: install_required
become: true
file:
state: directory
path: '{{tea_package_dir}}/bin'
- name: download package
when: install_required
become: true
get_url:
url: '{{asset.browser_download_url}}'
dest: '{{tea_package_exe}}'
mode: '0755'
- name: install package
when: install_required
become: true
command:
cmd: 'stow --target /usr/local .'
chdir: '{{tea_package_dir}}'

View File

@@ -0,0 +1,12 @@
---
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
include_tasks: Linux.yaml
- when: ansible_os_family == 'Windows'
include_tasks: Windows.yaml
- name: install homebrew package
when: ansible_os_family == 'Darwin'
homebrew:
name: tea
state: latest

View File

@@ -0,0 +1,4 @@
---
tea_package_dir: /usr/local/stow/tea
tea_package_exe: '{{tea_package_dir}}/bin/tea'
tea_asset_query: '[?contains(name, `tea-`)] | [?contains(name, `linux-amd64`)] | [0]'

View File

@@ -0,0 +1,38 @@
---
- assert:
that: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
- name: install gnome-tweaks
become: true
package:
name: gnome-tweaks
state: latest
# NOTE: Use this command to see default keybindings
# gsettings list-recursively | grep -i -E 'media-keys|keybindings'
# NOTE: Use this command to inspect the current state of the custom keybindings
# dconf dump / | sed -n '/\[org.gnome.settings-daemon.plugins.media-keys/,/^$/p'
- set_fact:
custom_keybindings:
# TODO: 1Password Quick Access
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0]
# binding='<Shift><Alt>space'
# command='1password --quick-access'
# name='1Password Quick Access'
- binding: <Shift><Alt>space
command: 1password --quick-access
name: 1Password Quick Access
# TODO: Guake toggle - this requires removing a default binding
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1]
# binding='<Super>space'
# command='guake-toggle'
# name='Guake Toggle'
- binding: <Super>space
command: guake-toggle
name: Guake Toggle
# TODO: List of custom-keybindings
# [org/gnome/settings-daemon/plugins/media-keys]
# custom-keybindings=['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/']

View File

@@ -0,0 +1,8 @@
---
- assert:
that: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
- name: install package
package:
name: guake
state: latest

View File

@@ -0,0 +1,8 @@
---
- assert:
that: ansible_os_family == 'Darwin'
- name: install homebrew package
homebrew_cask:
name: hiddenbar
state: latest

View File

@@ -2,6 +2,7 @@
- name: get latest github release - name: get latest github release
uri: uri:
url: https://api.github.com/repos/jmespath/jp/releases/latest url: https://api.github.com/repos/jmespath/jp/releases/latest
headers: '{{github_auth_headers}}'
register: latest register: latest
- set_fact: - set_fact:

View File

@@ -19,6 +19,7 @@
- name: get latest release - name: get latest release
uri: uri:
url: 'https://api.github.com/repos/jmespath/jp/releases/latest' url: 'https://api.github.com/repos/jmespath/jp/releases/latest'
headers: '{{github_auth_headers}}'
register: latest register: latest
- name: determine if jp needs installed - name: determine if jp needs installed

View File

@@ -0,0 +1,5 @@
---
- name: install homebrew package
homebrew_cask:
name: kitty
state: latest

View File

@@ -2,6 +2,7 @@
- name: get latest stable github release - name: get latest stable github release
uri: uri:
url: https://api.github.com/repos/llvm/llvm-project/releases/latest url: https://api.github.com/repos/llvm/llvm-project/releases/latest
headers: '{{github_auth_headers}}'
register: llvm_latest register: llvm_latest
- name: read /etc/os-release - name: read /etc/os-release

View File

@@ -0,0 +1,9 @@
---
- assert:
that: ansible_os_family == 'Darwin'
- name: disable creation of .DS_Store in directories
osx_defaults:
domain: com.apple.desktopservices
key: DSDontWriteNetworkStores
value: 'true'

View File

@@ -6,6 +6,12 @@
state: latest state: latest
- set_fact: - set_fact:
neovim_pip_packages: '{{neovim_pip_packages + ["pynvim"]}}' neovim_pip_packages: >
{{
neovim_pip_packages + [
"pynvim",
"greenlet"
]
}}
- include_tasks: Unix.yaml - include_tasks: Unix.yaml

View File

@@ -1,25 +1,114 @@
--- ---
- name: slurp /etc/os-release # Don't neovim packages because they are all behind, even Debian unstable.
slurp: # Instead use the latest pre-build Linux package from GitHub, then stow them
src: /etc/os-release # into /usr/local.
register: os_release_slurp
- set_fact:
os_release: "{{ os_release_slurp.content |
b64decode | trim() | replace('=', ': ') | from_yaml }}"
- name: add neovim stable ppa - name: remove apt package
when: "'ID_LIKE' in os_release and os_release.ID_LIKE == 'ubuntu debian'"
become: true become: true
apt_repository: apt:
repo: ppa:neovim-ppa/stable name: neovim
update_cache: true state: absent
- name: install apt package - name: install gnu stow for managing tar.gz package
become: true become: true
apt: apt:
name: name:
- neovim - stow
- python3-neovim
state: latest state: latest
- name: install python provider pip package
become: true
pip:
name: pynvim
state: latest
- name: stat installed executable
stat:
path: /usr/local/bin/nvim
register: nvim
- name: get installed version
when: nvim.stat.exists
command: nvim --version
register: nvim_version
changed_when: false
- when: nvim.stat.exists
set_fact:
installed_version: '{{nvim_version.stdout_lines[0][5:]}}'
- name: get latest version
uri:
url: https://api.github.com/repos/neovim/neovim/releases/latest
headers: '{{github_auth_headers}}'
register: latest
- set_fact:
install_required:
'{{installed_version is not defined or
installed_version != latest.json.tag_name}}'
asset_query: '[?contains(name, `nvim-linux64.tar.gz`)]'
package_dir: '/usr/local/lib/nvim'
- set_fact:
uninstall_required: '{{nvim.stat.exists and install_required}}'
asset: '{{latest.json.assets | json_query(asset_query)}}'
package_path: '{{package_dir}}/{{latest.json.name}}'
- name: uninstall old package from /usr/local
when: uninstall_required
become: true
command:
cmd: 'stow --delete --target /usr/local .'
chdir: '{{package_dir}}/nvim-linux64'
- name: remove old package
become: true
when: uninstall_required
file:
path: '{{package_dir}}/nvim-linux64'
state: absent
- name: create package directory
become: true
file:
path: '{{package_dir}}'
state: directory
- name: download package archive
when: install_required
become: true
get_url:
url: '{{asset[0].browser_download_url}}'
dest: '{{package_path}}'
- name: extract package archive
when: install_required
become: true
unarchive:
src: '{{package_path}}'
dest: '{{package_dir}}'
- name: remove downloaded archive
when: install_required
become: true
file:
path: '{{package_path}}'
state: absent
- name: move man to share/man
when: install_required
become: true
command:
argv:
- mv
- '{{package_dir}}/nvim-linux64/man'
- '{{package_dir}}/nvim-linux64/share'
- name: install package to /usr/local
when: install_required
become: true
command:
cmd: 'stow --target /usr/local .'
chdir: '{{package_dir}}/nvim-linux64'
- include_tasks: Unix.yaml - include_tasks: Unix.yaml

View File

@@ -4,9 +4,9 @@
- name: clone config repo - name: clone config repo
git: git:
repo: git@code.infektor.net:config/vim.git repo: git@code.infektor.net:config/nvim.git
dest: '{{vim_config_dir}}' dest: '{{vim_config_dir}}'
version: master version: main
- name: install pip packages - name: install pip packages
pip: pip:

View File

@@ -10,12 +10,10 @@
- name: clone config repo - name: clone config repo
win_git: win_git:
repo: git@code.infektor.net:config/vim.git repo: git@code.infektor.net:config/nvim.git
dest: '{{vim_config_dir}}' dest: '{{vim_config_dir}}'
branch: master branch: main
# - TODO: neovim set repo email
# win_git_config:
# - TODO: neovim install pip packages # - TODO: neovim install pip packages
# win_pip: # win_pip:
# name: '{{neovim_pip_packages}}' # name: '{{neovim_pip_packages}}'

View File

@@ -1,6 +1,6 @@
--- ---
- name: install yum package - name: install dnf package
become: true become: true
yum: dnf:
name: nodejs name: nodejs
state: latest state: latest

View File

@@ -1,75 +1,32 @@
--- ---
# TODO: Prefer Flatpak over AppImage if available - name: install flatpak package
become: true
flatpak:
name: md.obsidian.Obsidian
- name: stat symlink # Remove old appimage if it exists
- name: stat appimage symlink
stat: stat:
path: '{{ansible_env.HOME}}/.local/bin/Obsidian' path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
register: symlink_file register: symlink_file
- name: get latest release
uri:
url: https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest
register: latest
- set_fact: - set_fact:
appimage: 'Obsidian-{{latest.json.name}}.AppImage'
- set_fact:
filepath: '{{ansible_env.HOME}}/.local/bin/{{appimage}}'
iconpath: 'share/icons/hicolor/512x512/apps/obsidian.png' iconpath: 'share/icons/hicolor/512x512/apps/obsidian.png'
asset_query: '[?contains(name, `{{appimage}}`)] | [0]' - name: remove appimage icon file
- set_fact:
needs_installed:
'{{not symlink_file.stat.exists or symlink_file.stat.lnk_source != filepath}}'
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
- name: download latest version
get_url:
url: '{{asset.browser_download_url}}'
dest: '{{filepath}}'
mode: '0755'
- name: create directories
file: file:
path: '{{item}}'
state: directory
with_items:
- '{{ansible_env.HOME}}/.local/bin'
- '{{ansible_env.HOME}}/.local/share/icons/hicolor/512x512/apps'
- name: create symlink
file:
src: '{{filepath}}'
dest: '{{ansible_env.HOME}}/.local/bin/Obsidian'
state: link
- name: extract squashfs-root for app icon
when: needs_installed
command:
cmd: '{{ansible_env.HOME}}/.local/bin/Obsidian --appimage-extract'
chdir: '/tmp'
- name: copy icon file
when: needs_installed
copy:
src: '/tmp/squashfs-root/usr/{{iconpath}}'
dest: '{{ansible_env.HOME}}/.local/{{iconpath}}' dest: '{{ansible_env.HOME}}/.local/{{iconpath}}'
- name: remove squashfs-root directory
when: needs_installed
file:
path: '/tmp/squashfs-root'
state: absent state: absent
- name: remove appimage desktop file
- name: create desktop file file:
template:
src: obsidian.desktop.j2
dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop' dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop'
notify: install desktop menu state: absent
- name: remove old appimage - name: remove old appimage
when: needs_installed and symlink_file.stat.exists when: "'lnk_source' in symlink_file.stat"
file: file:
path: '{{symlink_file.stat.lnk_source}}' path: '{{symlink_file.stat.lnk_source}}'
state: absent state: absent
- name: remove appimage symlink
file:
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
state: absent
- include_tasks: Unix.yaml - include_tasks: Unix.yaml

View File

@@ -0,0 +1,26 @@
---
- name: install apt package
when: ansible_os_family == 'Debian'
become: true
apt:
name: podman
state: latest
- name: install dnf package
when: ansible_os_family == 'RedHat'
become: true
dnf:
name: podman
state: latest
- name: install Homebrew package
when: ansible_os_family == 'Darwin'
homebrew:
name: podman-desktop
state: latest
- name: install Chocolatey package
when: ansible_os_family == 'Windows'
win_chocolatey:
name: podman-desktop
state: latest

View File

@@ -1,7 +1,7 @@
--- ---
- name: install yum packages - name: install dnf packages
become: true become: true
yum: dnf:
name: name:
- python3 - python3
- python3-pip - python3-pip

View File

@@ -4,8 +4,6 @@
repo: git@code.infektor.net:config/python.git repo: git@code.infektor.net:config/python.git
dest: ~/.config/python dest: ~/.config/python
# TODO: set repo email
- name: create config directories - name: create config directories
file: file:
state: directory state: directory

View File

@@ -6,7 +6,6 @@
state: latest state: latest
# TODO: - name: install config repo # TODO: - name: install config repo
# TODO: - name: set repo email
# TODO: - name: install pip packages # TODO: - name: install pip packages
# TODO: - name: create config directories/files # TODO: - name: create config directories/files

View File

@@ -0,0 +1,26 @@
---
- name: install apt package
when: ansible_os_family == 'Debian'
become: true
apt:
name: ripgrep
state: latest
- name: install dnf package
when: ansible_os_family == 'RedHat'
become: true
dnf:
name: ripgrep
state: latest
- name: install Homebrew package
when: ansible_os_family == 'Darwin'
homebrew:
name: ripgrep
state: latest
- name: install Chocolatey package
when: ansible_os_family == 'Windows'
win_chocolatey:
name: ripgrep
state: latest

View File

@@ -0,0 +1,31 @@
---
- assert:
that: ansible_os_family == 'RedHat' and ansible_distribution == 'Fedora'
- name: install rpm fusion free gpg key
become: true
rpm_key:
key: 'https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-fedora-2020'
state: present
- name: install rpmfusion free repository
become: true
dnf:
name:
'https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ansible_distribution_major_version}}.noarch.rpm'
state: present
validate_certs: no
- name: install rpmfusion non-free gpg key
become: true
rpm_key:
key: 'https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-fedora-2020'
state: present
- name: install rpmfusion non-free repository
become: true
dnf:
name:
'https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ansible_distribution_major_version}}.noarch.rpm'
state: present
validate_certs: no

View File

@@ -1,4 +1,4 @@
--- ---
# TODO: # TODO: create a launchd module that handles user mode services
# cp $script_dir/system-info.plist ~/Library/LaunchAgents/system-info.plist # cp $script_dir/system-info.plist ~/Library/LaunchAgents/system-info.plist
# launchctl load -w ~/Library/LaunchAgents/system-info.plist # launchctl load -w ~/Library/LaunchAgents/system-info.plist

View File

@@ -1,7 +1,7 @@
--- ---
- name: install yum packages - name: install dnf packages
become: true become: true
yum: dnf:
name: name:
- tmux - tmux
- sysstat - sysstat

View File

@@ -7,6 +7,4 @@
dest: ~/.config/tmux dest: ~/.config/tmux
version: master version: master
# TODO: - name: set repo email
- include_tasks: ~/.config/tmux/tasks.yaml - include_tasks: ~/.config/tmux/tasks.yaml

View File

@@ -1,7 +1,8 @@
--- ---
- assert: - assert:
that: ansible_env.XDG_CURRENT_DESKTOP == "GNOME" and that: >
ansible_env.XDG_SESSION_TYPE == "wayland" 'GNOME' in ansible_env.XDG_CURRENT_DESKTOP and
ansible_env.XDG_SESSION_TYPE == 'wayland'
- set_fact: - set_fact:
install_dir: '{{ansible_env.HOME}}/.local/bin' install_dir: '{{ansible_env.HOME}}/.local/bin'
@@ -29,18 +30,21 @@
- name: get latest release - name: get latest release
uri: uri:
url: https://api.github.com/repos/k0kubun/xremap/releases/latest url: https://api.github.com/repos/k0kubun/xremap/releases/latest
headers: '{{github_auth_headers}}'
register: latest register: latest
- name: determine if install needed - name: determine if install needed
set_fact: set_fact:
needs_installed: needs_installed:
'{{not executable.stat.exists or installed_version != latest.json.name}}' '{{not executable.stat.exists or installed_version != latest.json.name}}'
xdg_current_desktop:
"{{ansible_env.XDG_CURRENT_DESKTOP | regex_replace('(.*:)?(.*)', '\\2')}}"
- name: construct asset query - name: construct asset query
set_fact: set_fact:
asset_query: > asset_query: >
[?contains(name, `xremap-linux-{{ansible_architecture}}-{{ [?contains(name, `xremap-linux-{{ansible_architecture}}-{{
ansible_env.XDG_CURRENT_DESKTOP | lower}}.zip`)] | [0] xdg_current_desktop | lower}}.zip`)] | [0]
- name: get release asset - name: get release asset
set_fact: set_fact:
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}' asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
@@ -81,6 +85,14 @@
append: true append: true
groups: input groups: input
- name: load the uinput kernel module
when: ansible_os_family == 'Debian'
become: true
copy:
content: |
uinput
dest: /etc/modules-load.d/uinput.conf
# TODO: This works for on Fedora, author uses it on Ubuntu so I assume Debian # TODO: This works for on Fedora, author uses it on Ubuntu so I assume Debian
# will work too. Arch and other distros are potentially different see the docs # will work too. Arch and other distros are potentially different see the docs
# https://github.com/k0kubun/xremap # https://github.com/k0kubun/xremap

View File

@@ -2,6 +2,7 @@
- name: get latest github release - name: get latest github release
uri: uri:
url: https://api.github.com/repos/mikefarah/yq/releases/latest url: https://api.github.com/repos/mikefarah/yq/releases/latest
headers: '{{github_auth_headers}}'
register: latest register: latest
- set_fact: - set_fact:

View File

@@ -19,6 +19,7 @@
- name: get latest release - name: get latest release
uri: uri:
url: 'https://api.github.com/repos/mikefarah/yq/releases/latest' url: 'https://api.github.com/repos/mikefarah/yq/releases/latest'
headers: '{{github_auth_headers}}'
register: latest register: latest
- name: determine if yq needs installed - name: determine if yq needs installed

View File

@@ -1,7 +1,7 @@
--- ---
- name: install yum packages - name: install dnf packages
become: true become: true
yum: dnf:
name: name:
- zsh - zsh
- pinentry-tty - pinentry-tty

View File

@@ -61,6 +61,11 @@
dest: ~/.local/bin/cmake-uninstall dest: ~/.local/bin/cmake-uninstall
- src: ~/.config/zsh/$ - src: ~/.config/zsh/$
dest: ~/.local/bin/$ dest: ~/.local/bin/$
- src: ~/.config/zsh/url/url
dest: ~/.local/bin/url
- src: ~/.config/zsh/url/_url
dest: ~/.local/share/zsh/site-functions/_url
loop_control: loop_control:
label: '{{item.dest}}' label: '{{item.dest}}'