Compare commits
1 Commits
359ae0ecf9
...
moonlight
| Author | SHA1 | Date | |
|---|---|---|---|
| 98573c0066 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
external
|
external
|
||||||
playbooks/test.yaml
|
|
||||||
|
|||||||
12
.vim/coc-settings.json
Normal file
12
.vim/coc-settings.json
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"yaml.schemas": {
|
||||||
|
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/playbook": [
|
||||||
|
"./*.yaml"
|
||||||
|
],
|
||||||
|
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible.json#/$defs/tasks": [
|
||||||
|
"./roles/*/handlers/*.yaml",
|
||||||
|
"./roles/*/tasks/*.yaml",
|
||||||
|
"./tasks.yaml"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,40 +1,34 @@
|
|||||||
---
|
---
|
||||||
- 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: zsh
|
- role: zsh
|
||||||
tags: unsafe
|
|
||||||
- role: neovim
|
- role: neovim
|
||||||
- role: tmux
|
- role: tmux
|
||||||
tags: unsafe
|
- role: system-info
|
||||||
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
|
||||||
- role: ag
|
- role: ag
|
||||||
- role: bash
|
|
||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
- role: editline
|
|
||||||
- role: fd
|
|
||||||
- role: fzf
|
- role: fzf
|
||||||
- role: gh
|
|
||||||
- role: git
|
- role: git
|
||||||
- role: glab
|
|
||||||
- role: htop
|
- role: htop
|
||||||
- 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: wget
|
|
||||||
- role: yq
|
- role: yq
|
||||||
|
|
||||||
- role: llvm
|
- role: llvm
|
||||||
- role: nodejs
|
- role: nodejs
|
||||||
|
- role: python
|
||||||
|
|
||||||
|
- role: 1password
|
||||||
|
|
||||||
|
- role: wsl
|
||||||
|
when: '"WSL" in ansible_kernel'
|
||||||
3
WSL.yaml
Normal file
3
WSL.yaml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: Unix.yaml
|
||||||
|
- import_playbook: Windows.yaml
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
---
|
---
|
||||||
- hosts: windows
|
- hosts: windows
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
github_auth_headers: >-
|
install_cad_apps: false
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
roles:
|
||||||
- role: python
|
|
||||||
- role: git
|
- role: git
|
||||||
- role: powershell
|
- role: powershell
|
||||||
- role: neovim
|
- role: neovim
|
||||||
@@ -14,24 +13,23 @@
|
|||||||
- role: ag
|
- role: ag
|
||||||
- role: bat
|
- role: bat
|
||||||
- role: curl
|
- role: curl
|
||||||
- role: fd
|
|
||||||
- role: fzf
|
- role: fzf
|
||||||
- role: gh
|
|
||||||
- role: glab
|
|
||||||
- role: jq
|
|
||||||
- role: ripgrep
|
|
||||||
- role: tree
|
- role: tree
|
||||||
|
- role: jq
|
||||||
- role: yq
|
- role: yq
|
||||||
|
|
||||||
- role: llvm
|
- role: llvm
|
||||||
- role: nodejs
|
- role: nodejs
|
||||||
|
- role: python
|
||||||
|
|
||||||
- role: 1password
|
- role: 1password
|
||||||
- role: autohotkey
|
- role: autohotkey
|
||||||
- role: cider
|
|
||||||
- role: ferdium
|
|
||||||
- role: firefox
|
- role: firefox
|
||||||
- role: fonts
|
|
||||||
- role: obsidian
|
- role: obsidian
|
||||||
- role: powertoys
|
- role: powertoys
|
||||||
- role: windows-terminal
|
- role: windows-terminal
|
||||||
|
|
||||||
|
- role: autodesk-fusion360
|
||||||
|
when: install_cad_apps
|
||||||
|
- role: prusaslicer
|
||||||
|
when: install_cad_apps
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
[defaults]
|
|
||||||
collections_path = collections
|
|
||||||
library = library
|
|
||||||
roles_path = roles
|
|
||||||
stdout_callback = yaml
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
#!/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)
|
|
||||||
|
|
||||||
keybinding_entries = []
|
|
||||||
for index, keybinding in enumerate(module.params["keybindings"]):
|
|
||||||
keybinding_entries.append(
|
|
||||||
{
|
|
||||||
"key": f"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{index}",
|
|
||||||
"value": "\n".join(
|
|
||||||
[
|
|
||||||
f"binding='{keybinding['binding']}'",
|
|
||||||
f"command='{keybinding['command']}'",
|
|
||||||
f"name='{keybinding['name']}'",
|
|
||||||
]
|
|
||||||
),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
custom_keybindings = {
|
|
||||||
"key": "[org/gnome/settings-daemon/plugins/media-keys]",
|
|
||||||
"value": f"['{"', '".join([entry["key"] for entry in keybinding_entries])}']",
|
|
||||||
}
|
|
||||||
|
|
||||||
for conf in keybinding_entries + [custom_keybindings]:
|
|
||||||
subprocess.check_call(['dconf', 'write', conf.key, conf.value])
|
|
||||||
|
|
||||||
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()
|
|
||||||
|
|
||||||
@@ -1,232 +0,0 @@
|
|||||||
#!powershell
|
|
||||||
|
|
||||||
#AnsibleRequires -CSharpUtil Ansible.Basic
|
|
||||||
#AnsibleRequires -PowerShell Ansible.ModuleUtils.CommandUtil
|
|
||||||
|
|
||||||
$module = [Ansible.Basic.AnsibleModule]::Create($args, @{
|
|
||||||
options = @{
|
|
||||||
dest = @{type = 'path'}
|
|
||||||
repo = @{required = $true; aliases = @('name')}
|
|
||||||
version = @{default = 'HEAD'; aliases = @('branch')}
|
|
||||||
remote = @{default = 'origin'}
|
|
||||||
recursive = @{default = $true; type = 'bool'}
|
|
||||||
executable = @{default = $null; type = 'path'}
|
|
||||||
}
|
|
||||||
supports_check_mode = $false
|
|
||||||
})
|
|
||||||
|
|
||||||
$dest = $module.Params.dest
|
|
||||||
$repo = $module.Params.repo
|
|
||||||
$version = $module.Params.version
|
|
||||||
$remote = $module.Params.remote
|
|
||||||
$git = $module.Params.executable
|
|
||||||
if (!$git) {
|
|
||||||
$git = Get-ExecutablePath 'git'
|
|
||||||
}
|
|
||||||
|
|
||||||
# ================================= Utilities ==================================
|
|
||||||
|
|
||||||
function Get-AbsolutePath {
|
|
||||||
[CmdletBinding()]
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $path
|
|
||||||
)
|
|
||||||
try {
|
|
||||||
$result = Resolve-Path $path
|
|
||||||
} catch {
|
|
||||||
return $_[0].TargetObject
|
|
||||||
}
|
|
||||||
return $result
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-GitDir {
|
|
||||||
[CmdletBinding()]
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $path
|
|
||||||
)
|
|
||||||
$git_dir = Join-Path $path '.git'
|
|
||||||
# Check if this .git is a file.
|
|
||||||
if ([System.IO.File]::Exists($git_dir)) {
|
|
||||||
# Extract the gitdir: path from the .git file.
|
|
||||||
$groups = Get-Content "$git_dir" | `
|
|
||||||
Select-String '(gitdir:) (.*)' | `
|
|
||||||
ForEach { $_.Matches[0].Groups[1..2] }
|
|
||||||
$ref_prefix = $groups[0]
|
|
||||||
$gitdir = $groups[1]
|
|
||||||
if ($ref_prefix -ne 'gitdir:') {
|
|
||||||
$module.FailJson('The .git file has invalid gitdir reference format.')
|
|
||||||
}
|
|
||||||
# Check if the repo path is absolute.
|
|
||||||
if ([System.IO.Path]::IsPathRooted($gitdir)) {
|
|
||||||
$git_dir = $gitdir
|
|
||||||
} else {
|
|
||||||
# Join with the input path to construct an absolute path.
|
|
||||||
$git_dir = Join-Path $path $gitdir
|
|
||||||
}
|
|
||||||
if (![System.IO.Directory]::Exists($git_dir)) {
|
|
||||||
throw "$git_dir is not a directory."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $git_dir
|
|
||||||
}
|
|
||||||
|
|
||||||
function Test-GitLocalChanges {
|
|
||||||
[CmdletBinding()]
|
|
||||||
param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest
|
|
||||||
)
|
|
||||||
$command = "`"$git`" status --porcelain"
|
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
|
||||||
$changes = $result.stdout.Split([System.Environment]::NewLine, `
|
|
||||||
[System.StringSplitOptions]::RemoveEmptyEntries) | `
|
|
||||||
Where-Object { -not $_.StartsWith('??') } | Measure-Object -Line
|
|
||||||
return $changes.Lines -gt 0
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-GitRemoteHeadBranch {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $remote
|
|
||||||
)
|
|
||||||
$command = "`"$git`" symbolic-ref --short refs/remotes/$remote/HEAD"
|
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Could not determine the default HEAD branch of remote: $remote" ` +
|
|
||||||
"$result.stdout $result.stderr")
|
|
||||||
}
|
|
||||||
return $result.stdout.Trim().Replace("$remote/", '')
|
|
||||||
}
|
|
||||||
|
|
||||||
function Get-GitCurrentSha {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest
|
|
||||||
)
|
|
||||||
$command = "`"$git`" rev-parse HEAD"
|
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
|
||||||
return $result.stdout.Trim()
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitClone {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $repo,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest
|
|
||||||
)
|
|
||||||
$dest_parent = Split-Path -Path $dest -Parent
|
|
||||||
if (!(Test-Path $dest_parent)) {
|
|
||||||
New-Item -Path $dest_parent -ItemType Directory
|
|
||||||
}
|
|
||||||
$command = "`"$git`" clone --recursive --origin $remote $repo $dest"
|
|
||||||
if ($version -ne "HEAD") {
|
|
||||||
$command += " --branch $version"
|
|
||||||
}
|
|
||||||
$result = Run-Command -command $command -working_directory $cwd
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson($result.stderr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitCheckout {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
|
||||||
)
|
|
||||||
if ($version -eq "HEAD") {
|
|
||||||
$branch = Get-GitRemoteHeadBranch $dest $remote
|
|
||||||
} else {
|
|
||||||
$branch = $version
|
|
||||||
}
|
|
||||||
$result = Run-Command -command "`"$git`" checkout $branch" -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to checkout version '$version'`n" + $result.stderr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitFetch {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
|
||||||
)
|
|
||||||
$command = "`"$git`" fetch --tags $remote"
|
|
||||||
$result = Run-Command -command $command -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to download remote objects and refs:`n" + `
|
|
||||||
$result.stderr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitPull {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $remote,
|
|
||||||
[Parameter(Mandatory = $true)] [String] $version
|
|
||||||
)
|
|
||||||
$result = Run-Command -command "`"$git`" pull $remote $version" -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to pull version '$version' from remote '$origin':`n" + `
|
|
||||||
$result.stderr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function Invoke-GitSubmoduleUpdate {
|
|
||||||
[CmdletBinding()]
|
|
||||||
Param (
|
|
||||||
[Parameter(Mandatory = $true)] [String] $dest
|
|
||||||
)
|
|
||||||
$result = Run-Command -command "`"$git`" submodule update --init" -working_directory $dest
|
|
||||||
if ($result.rc -ne 0) {
|
|
||||||
$module.FailJson("Failed to initialized/update submodules:`n" + $result.stderr)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# ================================ Start logic =================================
|
|
||||||
|
|
||||||
if (!$dest) {
|
|
||||||
$module.FailJson('The destination directory must be specified.')
|
|
||||||
}
|
|
||||||
$dest = Get-AbsolutePath $dest
|
|
||||||
$git_dir = Get-GitDir $dest
|
|
||||||
$gitconfig = Join-Path $git_dir 'config'
|
|
||||||
|
|
||||||
$module.Result.before = $null
|
|
||||||
|
|
||||||
if (($dest -and ![System.IO.File]::Exists($gitconfig))) {
|
|
||||||
Invoke-GitClone $repo $remote $dest
|
|
||||||
Invoke-GitCheckout $dest $remote $version
|
|
||||||
$module.Result.changed = $true
|
|
||||||
} else {
|
|
||||||
$module.Result.before = Get-GitCurrentSha $dest
|
|
||||||
if (Test-GitLocalChanges $dest) {
|
|
||||||
$module.FailJson('Local modifications exist in repository.')
|
|
||||||
}
|
|
||||||
Invoke-GitFetch $dest $remote $version
|
|
||||||
Invoke-GitCheckout $dest $remote $version
|
|
||||||
Invoke-GitPull $dest $remote $version
|
|
||||||
$module.Result.after = Get-GitCurrentSha $dest
|
|
||||||
if ($module.Result.before -ne $module.Result.after) {
|
|
||||||
$module.Result.changed = $true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($recursive) {
|
|
||||||
Invoke-GitSubmoduleUpdate $dest
|
|
||||||
}
|
|
||||||
|
|
||||||
# Ensure the repository has the correct owner
|
|
||||||
$userName = [System.Security.Principal.WindowsIdentity]::GetCurrent().Name
|
|
||||||
$idRef = [System.Security.Principal.NTAccount]::new($userName)
|
|
||||||
Get-Item -Force $dest | foreach { `
|
|
||||||
$_ ; $_ | Get-ChildItem -Force -Recurse `
|
|
||||||
} | foreach { `
|
|
||||||
$acl = $_ | Get-Acl; $acl.SetOwner($idRef); $_ | Set-Acl -AclObject $acl `
|
|
||||||
}
|
|
||||||
|
|
||||||
$module.ExitJson()
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
# TODO: copyright
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
|
||||||
---
|
|
||||||
module: win_git
|
|
||||||
author:
|
|
||||||
- "Kenneth Benzie (Benie)"
|
|
||||||
short_description: Deploy software (or files) from git checkouts on Windows
|
|
||||||
description:
|
|
||||||
- Manage git checkouts of repositories to deploy files or software on Windows.
|
|
||||||
options:
|
|
||||||
data:
|
|
||||||
description:
|
|
||||||
- Alternate data to return instead of 'pong'.
|
|
||||||
- If this parameter is set to C(crash), the module will cause an
|
|
||||||
exception.
|
|
||||||
type: str
|
|
||||||
default: pong
|
|
||||||
seealso:
|
|
||||||
- module: ansible.builtin.git
|
|
||||||
'''
|
|
||||||
|
|
||||||
# DOCUMENTATION = r'''
|
|
||||||
# ---
|
|
||||||
# module: win_ping
|
|
||||||
# short_description: A windows version of the classic ping module
|
|
||||||
# description:
|
|
||||||
# - Checks management connectivity of a windows host.
|
|
||||||
# - This is NOT ICMP ping, this is just a trivial test module.
|
|
||||||
# - For non-Windows targets, use the M(ansible.builtin.ping) module instead.
|
|
||||||
# options:
|
|
||||||
# data:
|
|
||||||
# description:
|
|
||||||
# - Alternate data to return instead of 'pong'.
|
|
||||||
# - If this parameter is set to C(crash), the module will cause an exception.
|
|
||||||
# type: str
|
|
||||||
# default: pong
|
|
||||||
# seealso:
|
|
||||||
# - module: ansible.builtin.ping
|
|
||||||
# author:
|
|
||||||
# - Chris Church (@cchurch)
|
|
||||||
# '''
|
|
||||||
|
|
||||||
EXAMPLES = r'''
|
|
||||||
# Test connectivity to a windows host
|
|
||||||
# ansible winserver -m ansible.windows.win_ping
|
|
||||||
|
|
||||||
- name: Example from an Ansible Playbook
|
|
||||||
ansible.windows.win_ping:
|
|
||||||
|
|
||||||
- name: Induce an exception to see what happens
|
|
||||||
ansible.windows.win_ping:
|
|
||||||
data: crash
|
|
||||||
'''
|
|
||||||
|
|
||||||
RETURN = r'''
|
|
||||||
ping:
|
|
||||||
description: Value provided with the data parameter.
|
|
||||||
returned: success
|
|
||||||
type: str
|
|
||||||
sample: pong
|
|
||||||
'''
|
|
||||||
7
macOS.yaml
Normal file
7
macOS.yaml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- import_playbook: Unix.yaml
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role: obsidian
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
roles:
|
|
||||||
- 1password
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
- import_playbook: LinuxCLI.yaml
|
|
||||||
- import_playbook: UnixGUI.yaml
|
|
||||||
- hosts: localhost
|
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
|
||||||
- role: firefox
|
|
||||||
- role: kitty
|
|
||||||
- role: guake
|
|
||||||
- role: cider
|
|
||||||
- role: gnome-shell
|
|
||||||
when: "'GNOME' in ansible_env.XDG_CURRENT_DESKTOP"
|
|
||||||
- role: xremap
|
|
||||||
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"
|
|
||||||
)
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
- hosts: localhost
|
|
||||||
roles:
|
|
||||||
- role: gdb
|
|
||||||
- role: podman
|
|
||||||
- role: system-info
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: localhost
|
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
|
||||||
- role: flatpak
|
|
||||||
when: ansible_os_family != "Darwin"
|
|
||||||
|
|
||||||
- role: 1password
|
|
||||||
- role: ferdium
|
|
||||||
- role: fonts
|
|
||||||
- role: obsidian
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- import_playbook: LinuxCLI.yaml
|
|
||||||
- hosts: localhost
|
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
|
||||||
- role: wsl
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
- import_playbook: UnixCLI.yaml
|
|
||||||
- hosts: localhost
|
|
||||||
roles:
|
|
||||||
- role: system-info
|
|
||||||
- import_playbook: UnixGUI.yaml
|
|
||||||
- hosts: localhost
|
|
||||||
vars:
|
|
||||||
github_auth_headers: >-
|
|
||||||
{{ { 'Authorization': 'Bearer ' + lookup('env', 'GITHUB_TOKEN') }
|
|
||||||
if lookup('env', 'GITHUB_TOKEN') else {} }}
|
|
||||||
roles:
|
|
||||||
- role: mas
|
|
||||||
|
|
||||||
- role: hiddenbar
|
|
||||||
- role: iterm
|
|
||||||
- role: kitty
|
|
||||||
- role: magnet
|
|
||||||
- role: microsoft-remote-desktop
|
|
||||||
- role: viscosity
|
|
||||||
|
|
||||||
- role: macos
|
|
||||||
@@ -1,24 +1,13 @@
|
|||||||
---
|
---
|
||||||
- name: set keyring path
|
|
||||||
set_fact:
|
|
||||||
keyring: /etc/apt/keyrings/1password.asc
|
|
||||||
old_keyring: /etc/apt/trusted.gpg.d/1password-archive-keyring.gpg
|
|
||||||
|
|
||||||
- name: remove old keyring
|
|
||||||
become: true
|
|
||||||
file:
|
|
||||||
path: '{{old_keyring}}'
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: add apt signing key
|
- name: add apt signing key
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
become: true
|
become: true
|
||||||
get_url:
|
apt_key:
|
||||||
url: https://downloads.1password.com/linux/keys/1password.asc
|
url: https://downloads.1password.com/linux/keys/1password.asc
|
||||||
dest: '{{keyring}}'
|
keyring: /etc/apt/trusted.gpg.d/1password-archive-keyring.gpg
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: set compatible architecture
|
- when: ansible_machine == 'x86_64'
|
||||||
when: ansible_machine == 'x86_64'
|
|
||||||
set_fact:
|
set_fact:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
@@ -29,16 +18,11 @@
|
|||||||
- name: add apt repository
|
- name: add apt repository
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
become: true
|
become: true
|
||||||
copy:
|
apt_repository:
|
||||||
content: >-
|
repo: >-
|
||||||
deb [arch={{arch}} signed-by={{keyring}}]
|
deb [arch={{arch}}
|
||||||
|
signed-by=/etc/apt/trusted.gpg.d/1password-archive-keyring.gpg]
|
||||||
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
https://downloads.1password.com/linux/debian/{{arch}} stable main
|
||||||
dest: /etc/apt/sources.list.d/1password.list
|
|
||||||
|
|
||||||
- name: apt update
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
update_cache: true
|
|
||||||
|
|
||||||
- name: install gui package
|
- name: install gui package
|
||||||
when: '"WSL" not in ansible_kernel'
|
when: '"WSL" not in ansible_kernel'
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
- name: add dnf repository key
|
|
||||||
become: true
|
|
||||||
rpm_key:
|
|
||||||
key: https://downloads.1password.com/linux/keys/1password.asc
|
|
||||||
|
|
||||||
- name: add dnf repository
|
|
||||||
become: true
|
|
||||||
yum_repository:
|
|
||||||
name: 1password
|
|
||||||
description: 1Password Stable Channel
|
|
||||||
baseurl: https://downloads.1password.com/linux/rpm/stable/$basearch
|
|
||||||
enabled: true
|
|
||||||
gpgcheck: true
|
|
||||||
repo_gpgcheck: true
|
|
||||||
gpgkey: ['https://downloads.1password.com/linux/keys/1password.asc']
|
|
||||||
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: 1password
|
|
||||||
state: latest
|
|
||||||
@@ -11,20 +11,35 @@
|
|||||||
path: '{{app_exe}}'
|
path: '{{app_exe}}'
|
||||||
register: app_stat
|
register: app_stat
|
||||||
|
|
||||||
|
- name: get installed version
|
||||||
|
when: app_stat.stat.exists == True
|
||||||
|
win_command: '{{app_exe}} --version'
|
||||||
|
register: app_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
- when: app_stat.stat.exists == True
|
||||||
|
set_fact:
|
||||||
|
installed_version: '{{app_version.stdout.strip()}}'
|
||||||
|
|
||||||
- name: download latest installer
|
- name: download latest installer
|
||||||
when: not app_stat.stat.exists
|
|
||||||
win_get_url:
|
win_get_url:
|
||||||
url: https://downloads.1password.com/win/1PasswordSetup-latest.exe
|
url: https://downloads.1password.com/win/1PasswordSetup-latest.exe
|
||||||
dest: '{{installer_exe}}'
|
dest: '{{installer_exe}}'
|
||||||
|
|
||||||
- name: run installer
|
- name: get installer version
|
||||||
when: not app_stat.stat.exists
|
win_shell: |
|
||||||
win_command: '{{installer_exe}}'
|
(Get-ItemProperty {{installer_exe}}).VersionInfo.ProductVersion
|
||||||
|
register: installer_product_version
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
- name: remove installer
|
# FIXME: The [5:] is to account for a mystery "\e[6 q" prefix, not sure if this
|
||||||
win_file:
|
# is consistent across machines or some other oddity.
|
||||||
path: '{{installer_exe}}'
|
- set_fact:
|
||||||
state: absent
|
installer_version: '{{installer_product_version.stdout.strip()[5:]}}'
|
||||||
|
|
||||||
|
- name: run installer
|
||||||
|
when: installed_version is not defined or installed_version != installer_version
|
||||||
|
win_command: '{{installer_exe}}'
|
||||||
|
|
||||||
- name: create start menu shortcut
|
- name: create start menu shortcut
|
||||||
win_shortcut:
|
win_shortcut:
|
||||||
|
|||||||
@@ -4,11 +4,6 @@
|
|||||||
register: zsh_completion_script
|
register: zsh_completion_script
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
- name: create local zsh site functions directory
|
|
||||||
file:
|
|
||||||
state: directory
|
|
||||||
path: ~/.local/share/zsh/site-functions
|
|
||||||
|
|
||||||
- name: create op zsh completion file
|
- name: create op zsh completion file
|
||||||
copy:
|
copy:
|
||||||
content: '{{zsh_completion_script.stdout}}'
|
content: '{{zsh_completion_script.stdout}}'
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: the_silver_searcher
|
|
||||||
state: latest
|
|
||||||
8
roles/autodesk-fusion360/tasks/main.yaml
Normal file
8
roles/autodesk-fusion360/tasks/main.yaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
- assert:
|
||||||
|
that: ansible_os_family == "Windows"
|
||||||
|
|
||||||
|
- name: install chocolatey package
|
||||||
|
win_chocolatey:
|
||||||
|
name: autodesk-fusion360
|
||||||
|
state: latest
|
||||||
@@ -9,6 +9,10 @@
|
|||||||
repo: git@code.infektor.net:config/AutoHotKey.git
|
repo: git@code.infektor.net:config/AutoHotKey.git
|
||||||
dest: '{{autohotkey_repo_dir}}'
|
dest: '{{autohotkey_repo_dir}}'
|
||||||
branch: master
|
branch: master
|
||||||
|
- win_owner:
|
||||||
|
path: '{{autohotkey_repo_dir}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
|
||||||
- name: create scheduled task
|
- name: create scheduled task
|
||||||
win_scheduled_task:
|
win_scheduled_task:
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: create ~/.bashrc file
|
|
||||||
template:
|
|
||||||
src: templates/bashrc
|
|
||||||
dest: ~/.bashrc
|
|
||||||
@@ -1,122 +0,0 @@
|
|||||||
# If not running interactively, don't do anything
|
|
||||||
case $- in
|
|
||||||
*i*) ;;
|
|
||||||
*) return;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# don't put duplicate lines or lines starting with space in the history.
|
|
||||||
# See bash(1) for more options
|
|
||||||
HISTCONTROL=ignoreboth
|
|
||||||
|
|
||||||
# append to the history file, don't overwrite it
|
|
||||||
shopt -s histappend
|
|
||||||
|
|
||||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
|
||||||
HISTSIZE=1000
|
|
||||||
HISTFILESIZE=2000
|
|
||||||
|
|
||||||
# check the window size after each command and, if necessary,
|
|
||||||
# update the values of LINES and COLUMNS.
|
|
||||||
shopt -s checkwinsize
|
|
||||||
|
|
||||||
# make less more friendly for non-text input files, see lesspipe(1)
|
|
||||||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
||||||
|
|
||||||
# enable color support of ls and also add handy aliases
|
|
||||||
if [ -x /usr/bin/dircolors ]; then
|
|
||||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
||||||
alias ls='ls --color=auto'
|
|
||||||
alias dir='dir --color=auto'
|
|
||||||
alias vdir='vdir --color=auto'
|
|
||||||
alias grep='grep --color=auto'
|
|
||||||
alias fgrep='fgrep --color=auto'
|
|
||||||
alias egrep='egrep --color=auto'
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f ~/.bash_aliases ]; then
|
|
||||||
. ~/.bash_aliases
|
|
||||||
fi
|
|
||||||
|
|
||||||
# enable programmable completion features (you don't need to enable
|
|
||||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
|
||||||
# sources /etc/bash.bashrc).
|
|
||||||
if ! shopt -oq posix; then
|
|
||||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
|
||||||
. /usr/share/bash-completion/bash_completion
|
|
||||||
elif [ -f /etc/bash_completion ]; then
|
|
||||||
. /etc/bash_completion
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Enable vi mode
|
|
||||||
set -o vi
|
|
||||||
|
|
||||||
function _prompt_first_line {
|
|
||||||
local exit_code=$?
|
|
||||||
if [ "$exit_code" = "0" ]; then
|
|
||||||
exit_code=
|
|
||||||
else
|
|
||||||
# If the last command failed, display its error code at the right
|
|
||||||
case $exit_code in
|
|
||||||
129) exit_code="SIGHUP" ;; # 128 + 1
|
|
||||||
130) exit_code="SIGINT" ;; # 128 + 2
|
|
||||||
131) exit_code="SIGQUIT" ;; # 128 + 3
|
|
||||||
132) exit_code="SIGILL" ;; # 128 + 4
|
|
||||||
133) exit_code="SIGTRAP" ;; # 128 + 5
|
|
||||||
134) exit_code="SIGABRT" ;; # 128 + 6
|
|
||||||
134) exit_code="SIGIOT" ;; # 128 + 6
|
|
||||||
135) exit_code="SIGBUS" ;; # 128 + 7
|
|
||||||
136) exit_code="SIGFPE" ;; # 128 + 8
|
|
||||||
137) exit_code="SIGKILL" ;; # 128 + 9
|
|
||||||
138) exit_code="SIGUSR1" ;; # 128 + 10
|
|
||||||
139) exit_code="SIGSEGV" ;; # 128 + 11
|
|
||||||
140) exit_code="SIGUSR2" ;; # 128 + 12
|
|
||||||
141) exit_code="SIGPIPE" ;; # 128 + 13
|
|
||||||
142) exit_code="SIGALRM" ;; # 128 + 14
|
|
||||||
143) exit_code="SIGTERM" ;; # 128 + 15
|
|
||||||
144) exit_code="SIGSTKFLT" ;; # 128 + 16
|
|
||||||
145) exit_code="SIGCHLD" ;; # 128 + 17
|
|
||||||
146) exit_code="SIGCONT" ;; # 128 + 18
|
|
||||||
147) exit_code="SIGSTOP" ;; # 128 + 19
|
|
||||||
148) exit_code="SIGTSTP" ;; # 128 + 20
|
|
||||||
149) exit_code="SIGTTIN" ;; # 128 + 21
|
|
||||||
150) exit_code="SIGTTOU" ;; # 128 + 22
|
|
||||||
151) exit_code="SIGURG" ;; # 128 + 23
|
|
||||||
152) exit_code="SIGXCPU" ;; # 128 + 24
|
|
||||||
153) exit_code="SIGXFSZ" ;; # 128 + 25
|
|
||||||
154) exit_code="SIGVTALRM" ;; # 128 + 26
|
|
||||||
155) exit_code="SIGPROF" ;; # 128 + 27
|
|
||||||
156) exit_code="SIGWINCH" ;; # 128 + 28
|
|
||||||
157) exit_code="SIGIO" ;; # 128 + 29
|
|
||||||
158) exit_code="SIGPWR" ;; # 128 + 30
|
|
||||||
159) exit_code="SIGSYS" ;; # 128 + 31
|
|
||||||
esac
|
|
||||||
exit_code=" \e[1m\e[31m$exit_code\e[0m"
|
|
||||||
fi
|
|
||||||
local time=$(date +%H:%M:%S)
|
|
||||||
local dir=$PWD
|
|
||||||
[[ "$dir" =~ ^"$HOME"(/|$) ]] && dir="~${dir#$HOME}"
|
|
||||||
# TODO: virtualenv
|
|
||||||
local grey="\e[38;5;244m"
|
|
||||||
local reset="\e[0m"
|
|
||||||
local blue="\e[38;5;37m"
|
|
||||||
echo -e "$grey$time$reset $blue$dir$reset$exit_code"
|
|
||||||
}
|
|
||||||
|
|
||||||
PROMPT_COMMAND=_prompt_first_line
|
|
||||||
|
|
||||||
yellow="\001\e[38;5;3m\002"
|
|
||||||
grey="\001\e[38;5;244m\002"
|
|
||||||
reset="\001\e[0m\002"
|
|
||||||
|
|
||||||
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
|
|
||||||
@@ -4,6 +4,7 @@
|
|||||||
ansible_distribution == "Ubuntu" and
|
ansible_distribution == "Ubuntu" and
|
||||||
ansible_distribution_version == "18.04"
|
ansible_distribution_version == "18.04"
|
||||||
}}'
|
}}'
|
||||||
|
- debug: msg={{use_github}}
|
||||||
|
|
||||||
- when: use_github
|
- when: use_github
|
||||||
include_tasks: deb.yaml
|
include_tasks: deb.yaml
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: bat
|
|
||||||
state: latest
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
- 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:
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: curl
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: create .editrc config file
|
|
||||||
template:
|
|
||||||
src: editrc
|
|
||||||
dest: '{{ansible_env.HOME}}/.editrc'
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# Enable vi mode
|
|
||||||
lldb:bind -v
|
|
||||||
lldb:bind ^I lldb_complete
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
---
|
|
||||||
- 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'
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
when: ansible_os_family == 'Darwin'
|
|
||||||
homebrew_cask:
|
|
||||||
name: ferdium
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- when: ansible_os_family == 'Windows'
|
|
||||||
include_tasks: Windows.yaml
|
|
||||||
|
|
||||||
- name: install flatpak package
|
|
||||||
when: ansible_os_family != 'Windows' and
|
|
||||||
ansible_os_family != 'Darwin'
|
|
||||||
become: true
|
|
||||||
flatpak:
|
|
||||||
name: org.ferdium.Ferdium
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -1,5 +1,2 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: Windows.yaml
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
when: ansible_os_family == 'Windows'
|
|
||||||
- include_tasks: Ubuntu.yaml
|
|
||||||
when: ansible_distribution == 'Ubuntu'
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: flatpak
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: flatpak
|
|
||||||
state: latest
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
- name: refresh font cache
|
|
||||||
command: fc-cache
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- name: enable homebrew tap
|
|
||||||
homebrew_tap:
|
|
||||||
name: homebrew/cask-fonts
|
|
||||||
|
|
||||||
- name: install Caskaydia Cove Nerd Font
|
|
||||||
homebrew_cask:
|
|
||||||
name: font-caskaydia-cove-nerd-font
|
|
||||||
state: latest
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
---
|
|
||||||
- name: stat version file
|
|
||||||
stat:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
|
||||||
register: version_file
|
|
||||||
|
|
||||||
- name: slurp version
|
|
||||||
when: version_file.stat.exists
|
|
||||||
slurp:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
|
||||||
register: version_slurp
|
|
||||||
|
|
||||||
- when: version_file.stat.exists
|
|
||||||
set_fact:
|
|
||||||
version: '{{version_slurp.content | b64decode}}'
|
|
||||||
|
|
||||||
- name: get latest release
|
|
||||||
uri:
|
|
||||||
url: https://api.github.com/repos/ryanoasis/nerd-fonts/releases/latest
|
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
needs_installed:
|
|
||||||
'{{ not version_file.stat.exists or version.strip() != latest.json.tag_name }}'
|
|
||||||
asset: '{{ latest.json.assets | to_json | from_json |
|
|
||||||
json_query("[?contains(name, `CascadiaCode.zip`)] | [0]") }}'
|
|
||||||
|
|
||||||
- name: create user fonts directory
|
|
||||||
when: needs_installed
|
|
||||||
file:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/share/fonts'
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: download Caskaydia Cove Nerd Font archive
|
|
||||||
when: needs_installed
|
|
||||||
get_url:
|
|
||||||
url: '{{asset.browser_download_url}}'
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
|
||||||
|
|
||||||
- name: install Caskaydia Cove Nerd Font
|
|
||||||
when: needs_installed
|
|
||||||
unarchive:
|
|
||||||
src: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/share/fonts'
|
|
||||||
notify: refresh font cache
|
|
||||||
|
|
||||||
- name: write version file
|
|
||||||
copy:
|
|
||||||
content: '{{latest.json.tag_name}}'
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/share/fonts/CaskaydiaCove.version'
|
|
||||||
|
|
||||||
- name: remove Caskaydia Cove Nerd Font archive
|
|
||||||
when: needs_installed
|
|
||||||
file:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/share/fonts/tmp.zip'
|
|
||||||
state: absent
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
- when: ansible_os_family == 'Darwin'
|
|
||||||
include_tasks: 'Darwin.yaml'
|
|
||||||
- when: ansible_os_family == 'Windows'
|
|
||||||
include_tasks: 'Windows.yaml'
|
|
||||||
- when: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
|
||||||
include_tasks: 'Linux.yaml'
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: fzf
|
|
||||||
state: latest
|
|
||||||
@@ -1,8 +1,6 @@
|
|||||||
---
|
---
|
||||||
- when: ansible_distribution == 'Ubuntu' and
|
- name: install apt package
|
||||||
ansible_distribution_version is version('22.04', '<=')
|
become: true
|
||||||
include_tasks: Debian-old.yaml
|
apt:
|
||||||
|
name: fzf
|
||||||
- when: not (ansible_distribution == 'Ubuntu' and
|
state: latest
|
||||||
ansible_distribution_version is version('22.04', '<='))
|
|
||||||
include_tasks: Debian-apt.yaml
|
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: fzf
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: gdb
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew:
|
|
||||||
name: gh
|
|
||||||
state: latest
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
---
|
|
||||||
- set_fact:
|
|
||||||
arch_map:
|
|
||||||
aarch64: arm64
|
|
||||||
armv6l: armhf
|
|
||||||
armv7l: armhf
|
|
||||||
i386: i386
|
|
||||||
x86_64: amd64
|
|
||||||
- set_fact:
|
|
||||||
arch: '{{ [ansible_architecture] | map("extract", arch_map) | first }}'
|
|
||||||
|
|
||||||
- name: download apt repository key
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: https://cli.github.com/packages/githubcli-archive-keyring.gpg
|
|
||||||
dest: /usr/share/keyrings/githubcli-archive-keyring.gpg
|
|
||||||
mode: 0644
|
|
||||||
|
|
||||||
- name: add apt repository list
|
|
||||||
become: true
|
|
||||||
apt_repository:
|
|
||||||
filename: github-cli
|
|
||||||
repo: 'deb [arch={{arch}} signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main'
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: install apt package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: gh
|
|
||||||
state: latest
|
|
||||||
update_cache: true
|
|
||||||
register: gh_apt
|
|
||||||
|
|
||||||
- name: install zsh completions
|
|
||||||
when: gh_apt.changed
|
|
||||||
become: true
|
|
||||||
shell: gh completion -s zsh > /usr/local/share/zsh/site-functions/_gh
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
- name: add dnf repository
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: https://cli.github.com/packages/rpm/gh-cli.repo
|
|
||||||
dest: /etc/yum.repos.d/gh-cli.repo
|
|
||||||
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: gh
|
|
||||||
state: latest
|
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
- 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
|
||||||
|
|
||||||
|
|||||||
@@ -31,13 +31,17 @@
|
|||||||
- 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}}'
|
||||||
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
dest: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
||||||
version: master
|
version: master
|
||||||
with_items: '{{git_config_repos}}'
|
with_items: '{{git_config_repos}}'
|
||||||
|
- win_owner:
|
||||||
|
path: '{{ansible_env.USERPROFILE}}/.config/{{item.name}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
with_items: '{{git_config_repos}}'
|
||||||
|
|
||||||
# - TODO: install pip packages
|
# - TODO: install pip packages
|
||||||
# win_pip:
|
# win_pip:
|
||||||
|
|||||||
@@ -18,4 +18,8 @@
|
|||||||
extra_args: --user
|
extra_args: --user
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- include_tasks: ~/.config/git/tasks.yaml
|
- name: create symbolic links
|
||||||
|
file:
|
||||||
|
state: link
|
||||||
|
src: ~/.config/git/_git-changes
|
||||||
|
dest: ~/.local/share/zsh/site-functions/_git-changes
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
---
|
|
||||||
- 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}}'
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
- 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
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
---
|
|
||||||
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]'
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew:
|
|
||||||
name: glab
|
|
||||||
state: latest
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
---
|
|
||||||
- set_fact:
|
|
||||||
glab: /usr/bin/glab
|
|
||||||
- name: stat the executable
|
|
||||||
stat:
|
|
||||||
path: '{{glab}}'
|
|
||||||
register: stat_glab
|
|
||||||
|
|
||||||
- name: get instlal version
|
|
||||||
when: stat_glab.stat.exists
|
|
||||||
command: '{{glab}} --version'
|
|
||||||
register: glab_version_output
|
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
- when: stat_glab.stat.exists
|
|
||||||
set_fact:
|
|
||||||
glab_version: '{{glab_version_output.stdout | replace("glab version ", "v")}}'
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
gitlab_api: 'https://gitlab.com/api/v4'
|
|
||||||
project_id: 'gitlab-org%2Fcli'
|
|
||||||
|
|
||||||
- name: get list of gitlab releases
|
|
||||||
uri:
|
|
||||||
url:
|
|
||||||
'{{gitlab_api}}/projects/{{project_id}}/releases'
|
|
||||||
register: releases
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
latest: '{{releases.json[0]}}'
|
|
||||||
latest_version: '{{releases.json[0].tag_name}}'
|
|
||||||
query: >
|
|
||||||
[?contains(name, `glab`)] |
|
|
||||||
[?contains(name, `Linux`)] |
|
|
||||||
[?contains(name, `{{ansible_machine}}.deb`)] | [0]
|
|
||||||
- set_fact:
|
|
||||||
asset: '{{latest.assets.links|json_query(query)}}'
|
|
||||||
|
|
||||||
- name: create download directory
|
|
||||||
when: glab_version is not defined or glab_version != latest_version
|
|
||||||
tempfile:
|
|
||||||
state: directory
|
|
||||||
suffix: glab
|
|
||||||
register: tempdir
|
|
||||||
|
|
||||||
- name: download .deb file
|
|
||||||
when: glab_version is not defined or glab_version != latest_version
|
|
||||||
get_url:
|
|
||||||
url: '{{asset.url}}'
|
|
||||||
dest: '{{tempdir.path}}/glab.deb'
|
|
||||||
|
|
||||||
- name: install .deb file
|
|
||||||
when: glab_version is not defined or glab_version != latest_version
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
deb: '{{tempdir.path}}/glab.deb'
|
|
||||||
|
|
||||||
- name: remove download directory
|
|
||||||
when: glab_version is not defined or glab_version != latest_version
|
|
||||||
file:
|
|
||||||
state: absent
|
|
||||||
path: '{{tempdir.path}}'
|
|
||||||
|
|
||||||
- name: install zsh completions
|
|
||||||
when: glab_version is not defined or glab_version != latest_version
|
|
||||||
command:
|
|
||||||
glab completion -s zsh > ~/.local/share/zsh/site-functions/_glab
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: glab
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install chocolatey package
|
|
||||||
win_chocolatey:
|
|
||||||
name: glab
|
|
||||||
state: latest
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
---
|
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
---
|
|
||||||
- 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/']
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family != 'Darwin' and ansible_os_family != 'Windows'
|
|
||||||
|
|
||||||
- name: install package
|
|
||||||
package:
|
|
||||||
name: guake
|
|
||||||
state: latest
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew_cask:
|
|
||||||
name: hiddenbar
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: htop
|
|
||||||
state: latest
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == "Darwin"
|
|
||||||
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew_cask:
|
|
||||||
name: iterm2
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
# TODO: Configure stuff, somehow?
|
|
||||||
@@ -2,15 +2,11 @@
|
|||||||
- 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
|
||||||
|
|
||||||
|
# TODO: Support arm64
|
||||||
- set_fact:
|
- set_fact:
|
||||||
arch: '{{ [ansible_architecture] |
|
asset_query: '[?contains(name, `jp-darwin-amd64`)] | [0]'
|
||||||
map("extract", { "arm64": "arm64", "x86_64": "amd64" }) | first }}'
|
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
asset_query: '[?contains(name, `jp-darwin-{{arch}}`)] | [0]'
|
|
||||||
assets: '{{latest.json.assets}}'
|
assets: '{{latest.json.assets}}'
|
||||||
latest_version: '{{latest.json.tag_name}}'
|
latest_version: '{{latest.json.tag_name}}'
|
||||||
jp_exe: '{{ansible_env.HOME}}/.local/bin/jp'
|
jp_exe: '{{ansible_env.HOME}}/.local/bin/jp'
|
||||||
@@ -18,7 +14,7 @@
|
|||||||
- name: check if already installed
|
- name: check if already installed
|
||||||
stat:
|
stat:
|
||||||
path: '{{jp_exe}}'
|
path: '{{jp_exe}}'
|
||||||
register: jp_stat
|
register: jp_exe
|
||||||
|
|
||||||
- name: get installed version
|
- name: get installed version
|
||||||
when: jp_stat.stat.exists == True
|
when: jp_stat.stat.exists == True
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
---
|
|
||||||
- name: stat executable
|
|
||||||
stat:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/bin/jp'
|
|
||||||
register: jp_stat
|
|
||||||
|
|
||||||
- name: get installed version
|
|
||||||
when: jp_stat.stat.exists
|
|
||||||
command: jp --version
|
|
||||||
changed_when: false
|
|
||||||
register: jp_version
|
|
||||||
|
|
||||||
- name: extract installed version
|
|
||||||
when: jp_stat.stat.exists
|
|
||||||
set_fact:
|
|
||||||
jp_installed_version:
|
|
||||||
'{{jp_version.stdout.strip() | regex_replace("^.*(\d+\.\d+\.\d+).*$", "\1")}}'
|
|
||||||
|
|
||||||
- name: get latest release
|
|
||||||
uri:
|
|
||||||
url: 'https://api.github.com/repos/jmespath/jp/releases/latest'
|
|
||||||
headers: '{{github_auth_headers}}'
|
|
||||||
register: latest
|
|
||||||
|
|
||||||
- name: determine if jp needs installed
|
|
||||||
set_fact:
|
|
||||||
jp_needs_installed:
|
|
||||||
'{{not jp_stat.stat.exists or jp_installed_version != latest.json.tag_name}}'
|
|
||||||
arch_dict: {x86_64: amd64, arm64: arm64}
|
|
||||||
|
|
||||||
- name: select asset name
|
|
||||||
when: jp_needs_installed
|
|
||||||
set_fact:
|
|
||||||
asset_query:
|
|
||||||
'[?contains(name, `jp-linux-{{arch_dict[ansible_architecture]}}`)] | [0]'
|
|
||||||
- name: select asset
|
|
||||||
when: jp_needs_installed
|
|
||||||
set_fact:
|
|
||||||
asset: '{{latest.json.assets | to_json | from_json | json_query(asset_query)}}'
|
|
||||||
|
|
||||||
- name: create directory
|
|
||||||
when: jp_needs_installed
|
|
||||||
file:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/bin'
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: install executable
|
|
||||||
when: jp_needs_installed
|
|
||||||
get_url:
|
|
||||||
url: '{{asset.browser_download_url}}'
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/bin/jp'
|
|
||||||
mode: '0755'
|
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: install apt package
|
- name: install apt package
|
||||||
become: true
|
|
||||||
apt:
|
apt:
|
||||||
name: jq
|
name: jq
|
||||||
state: latest
|
state: latest
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: jq
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew_cask:
|
|
||||||
name: kitty
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install apt package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name: kitty
|
|
||||||
state: latest
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: kitty
|
|
||||||
state: latest
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
|
||||||
|
|
||||||
- name: clone config repo
|
|
||||||
git:
|
|
||||||
repo: git@code.infektor.net:config/kitty.git
|
|
||||||
dest: ~/.config/kitty
|
|
||||||
@@ -1,17 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: slurp /etc/os-release
|
|
||||||
slurp:
|
|
||||||
src: /etc/os-release
|
|
||||||
register: os_release_slurp
|
|
||||||
- set_fact:
|
|
||||||
os_release: "{{ os_release_slurp.content |
|
|
||||||
b64decode | trim() | replace('=', ': ') | from_yaml }}"
|
|
||||||
|
|
||||||
- include_tasks: Ubuntu.yaml
|
|
||||||
when: "'ID_LIKE' in os_release and os_release.ID_LIKE == 'ubuntu debian'"
|
|
||||||
|
|
||||||
- name: install apt packages
|
- name: install apt packages
|
||||||
when: "'ID_LIKE' not in os_release"
|
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf packages
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name:
|
|
||||||
- clang
|
|
||||||
- clang-tools-extra
|
|
||||||
- git-clang-format
|
|
||||||
- llvm
|
|
||||||
state: latest
|
|
||||||
@@ -2,68 +2,21 @@
|
|||||||
- 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
|
|
||||||
slurp:
|
|
||||||
src: /etc/os-release
|
|
||||||
register: os_release_b64
|
|
||||||
- name: extract UBUNTU_CODENAME=<name> to support dirivitive distros
|
|
||||||
set_fact:
|
|
||||||
ubuntu_codename: >-
|
|
||||||
{{
|
|
||||||
os_release_b64.content | b64decode |
|
|
||||||
regex_search('UBUNTU_CODENAME=.*') |
|
|
||||||
replace('UBUNTU_CODENAME=', '')
|
|
||||||
}}
|
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
llvm_major_version:
|
llvm_major_version:
|
||||||
'{{llvm_latest.json.tag_name[8:llvm_latest.json.tag_name.find(".")]}}'
|
'{{llvm_latest.json.tag_name[8:llvm_latest.json.tag_name.find(".")]}}'
|
||||||
- set_fact:
|
- set_fact:
|
||||||
llvm_apt_repo_url:
|
llvm_apt_repo_url:
|
||||||
'http://apt.llvm.org/{{ubuntu_codename}}/'
|
'http://apt.llvm.org/{{ansible_distribution_release}}/'
|
||||||
llvm_apt_category:
|
llvm_apt_category:
|
||||||
'llvm-toolchain-{{ubuntu_codename}}-{{llvm_major_version}}'
|
'llvm-toolchain-{{ansible_distribution_release}}-{{llvm_major_version}}'
|
||||||
keyring: '/etc/apt/keyrings/llvm.asc'
|
|
||||||
|
|
||||||
- name: remove old keyring
|
|
||||||
when: '"WSL" not in ansible_kernel'
|
|
||||||
become: true
|
|
||||||
apt_key:
|
|
||||||
url: https://apt.llvm.org/llvm-snapshot.gpg.key
|
|
||||||
id: 6084F3CF814B57C1CF12EFD515CF4D18AF4F7421
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: remove old upstream deb repository
|
|
||||||
become: true
|
|
||||||
apt_repository:
|
|
||||||
repo: 'deb {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
|
||||||
state: absent
|
|
||||||
filename: llvm
|
|
||||||
update_cache: false
|
|
||||||
|
|
||||||
- name: remove old upstream deb-src repository
|
|
||||||
become: true
|
|
||||||
apt_repository:
|
|
||||||
repo: 'deb-src {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
|
||||||
state: absent
|
|
||||||
filename: llvm
|
|
||||||
update_cache: false
|
|
||||||
|
|
||||||
- name: add apt repository key
|
|
||||||
become: true
|
|
||||||
get_url:
|
|
||||||
url: https://apt.llvm.org/llvm-snapshot.gpg.key
|
|
||||||
dest: '{{keyring}}'
|
|
||||||
|
|
||||||
- name: add upstream deb repository
|
- name: add upstream deb repository
|
||||||
become: true
|
become: true
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: >
|
repo: 'deb {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
||||||
deb [signed-by={{keyring}}]
|
|
||||||
{{llvm_apt_repo_url}} {{llvm_apt_category}} main
|
|
||||||
state: present
|
state: present
|
||||||
filename: llvm
|
filename: llvm
|
||||||
update_cache: false
|
update_cache: false
|
||||||
@@ -71,13 +24,18 @@
|
|||||||
- name: add upstream deb-src repository
|
- name: add upstream deb-src repository
|
||||||
become: true
|
become: true
|
||||||
apt_repository:
|
apt_repository:
|
||||||
repo: >
|
repo: 'deb-src {{llvm_apt_repo_url}} {{llvm_apt_category}} main'
|
||||||
deb-src [signed-by={{keyring}}]
|
|
||||||
{{llvm_apt_repo_url}} {{llvm_apt_category}} main
|
|
||||||
state: present
|
state: present
|
||||||
filename: llvm
|
filename: llvm
|
||||||
update_cache: false
|
update_cache: false
|
||||||
|
|
||||||
|
- name: add apt repository key
|
||||||
|
become: true
|
||||||
|
apt_key:
|
||||||
|
url: https://apt.llvm.org/llvm-snapshot.gpg.key
|
||||||
|
id: 6084F3CF814B57C1CF12EFD515CF4D18AF4F7421
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: update apt cache
|
- name: update apt cache
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
|
|||||||
@@ -1,2 +1,5 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
|
when: ansible_os_family in ['Darwin', 'Windows']
|
||||||
|
- include_tasks: '{{ansible_distribution}}.yaml'
|
||||||
|
when: ansible_os_family not in ['Darwin', 'Windows']
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: disable creation of .DS_Store in directories
|
|
||||||
osx_defaults:
|
|
||||||
domain: com.apple.desktopservices
|
|
||||||
key: DSDontWriteNetworkStores
|
|
||||||
value: 'true'
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: install app store package
|
|
||||||
mas:
|
|
||||||
id: 441258766
|
|
||||||
state: latest
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == 'Darwin'
|
|
||||||
|
|
||||||
- name: install homebrew package
|
|
||||||
homebrew:
|
|
||||||
name: mas
|
|
||||||
state: latest
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
- assert:
|
|
||||||
that: ansible_os_family == "Darwin"
|
|
||||||
|
|
||||||
- name: install homebrew cask
|
|
||||||
homebrew_cask:
|
|
||||||
name: microsoft-remote-desktop
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: install chocolatey package
|
- name: install chocolatey package
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: gh
|
name: moonlight-qt
|
||||||
state: latest
|
state: latest
|
||||||
@@ -1,17 +1,7 @@
|
|||||||
---
|
---
|
||||||
- name: install homebrew packages
|
- name: install homebrew packages
|
||||||
homebrew:
|
homebrew:
|
||||||
name:
|
name: neovim
|
||||||
- neovim
|
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
neovim_pip_packages: >
|
|
||||||
{{
|
|
||||||
neovim_pip_packages + [
|
|
||||||
"pynvim",
|
|
||||||
"greenlet"
|
|
||||||
]
|
|
||||||
}}
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- include_tasks: Unix.yaml
|
||||||
|
|||||||
@@ -1,114 +1,8 @@
|
|||||||
---
|
---
|
||||||
# Don't neovim packages because they are all behind, even Debian unstable.
|
- name: install apt package
|
||||||
# Instead use the latest pre-build Linux package from GitHub, then stow them
|
|
||||||
# into /usr/local.
|
|
||||||
|
|
||||||
- name: remove apt package
|
|
||||||
become: true
|
become: true
|
||||||
apt:
|
apt:
|
||||||
name: neovim
|
name: neovim
|
||||||
state: absent
|
|
||||||
|
|
||||||
- name: install gnu stow for managing tar.gz package
|
|
||||||
become: true
|
|
||||||
apt:
|
|
||||||
name:
|
|
||||||
- stow
|
|
||||||
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
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name:
|
|
||||||
- neovim
|
|
||||||
- python3-neovim
|
|
||||||
state: latest
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
|
||||||
@@ -4,9 +4,11 @@
|
|||||||
|
|
||||||
- name: clone config repo
|
- name: clone config repo
|
||||||
git:
|
git:
|
||||||
repo: git@code.infektor.net:config/nvim.git
|
repo: git@code.infektor.net:config/vim.git
|
||||||
dest: '{{vim_config_dir}}'
|
dest: '{{vim_config_dir}}'
|
||||||
version: main
|
version: master
|
||||||
|
|
||||||
|
# TODO: - name: set repo email
|
||||||
|
|
||||||
- name: install pip packages
|
- name: install pip packages
|
||||||
pip:
|
pip:
|
||||||
|
|||||||
@@ -26,13 +26,6 @@
|
|||||||
file_type: directory
|
file_type: directory
|
||||||
register: found_plugins
|
register: found_plugins
|
||||||
|
|
||||||
- set_fact:
|
|
||||||
backslashes: '\\'
|
|
||||||
forwardslash: '/'
|
|
||||||
- set_fact:
|
|
||||||
managed_plugins: "{{managed_plugins | replace(backslashes, forwardslash)}}"
|
|
||||||
found_plugins: "{{found_plugins | replace(backslashes, forwardslash)}}"
|
|
||||||
|
|
||||||
- name: remove found plugins which are not in the managed list
|
- name: remove found plugins which are not in the managed list
|
||||||
win_file:
|
win_file:
|
||||||
path: '{{item.path}}'
|
path: '{{item.path}}'
|
||||||
|
|||||||
@@ -10,10 +10,21 @@
|
|||||||
|
|
||||||
- name: clone config repo
|
- name: clone config repo
|
||||||
win_git:
|
win_git:
|
||||||
repo: git@code.infektor.net:config/nvim.git
|
repo: git@code.infektor.net:config/vim.git
|
||||||
dest: '{{vim_config_dir}}'
|
dest: '{{vim_config_dir}}'
|
||||||
branch: main
|
branch: master
|
||||||
|
# clone: false
|
||||||
|
update: true
|
||||||
|
- win_owner:
|
||||||
|
path: '{{vim_config_dir}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that: False
|
||||||
|
|
||||||
|
# - 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}}'
|
||||||
@@ -39,18 +50,10 @@
|
|||||||
src: '{{vim_config_dir}}/tasks.yaml'
|
src: '{{vim_config_dir}}/tasks.yaml'
|
||||||
dest: vim_config_tasks.yaml
|
dest: vim_config_tasks.yaml
|
||||||
flat: true
|
flat: true
|
||||||
changed_when: false
|
|
||||||
|
|
||||||
- when: config_repo_tasks.stat.exists
|
- when: config_repo_tasks.stat.exists
|
||||||
include_tasks: vim_config_tasks.yaml
|
include_tasks: vim_config_tasks.yaml
|
||||||
|
|
||||||
- name: remove fetched tasks
|
|
||||||
file:
|
|
||||||
state: absent
|
|
||||||
path: vim_config_tasks.yaml
|
|
||||||
changed_when: false
|
|
||||||
delegate_to: localhost
|
|
||||||
|
|
||||||
- when: ansible_os_family != "Windows" and
|
- when: ansible_os_family != "Windows" and
|
||||||
plugin_dir is defined and plugins is defined
|
plugin_dir is defined and plugins is defined
|
||||||
include_tasks: 'Unix-plugins.yaml'
|
include_tasks: 'Unix-plugins.yaml'
|
||||||
|
|||||||
@@ -3,5 +3,6 @@ neovim_pip_packages:
|
|||||||
- cmake-language-server
|
- cmake-language-server
|
||||||
- cmakelint
|
- cmakelint
|
||||||
- compdb
|
- compdb
|
||||||
|
- pynvim
|
||||||
- vim-vint
|
- vim-vint
|
||||||
- yamllint
|
- yamllint
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install dnf package
|
|
||||||
become: true
|
|
||||||
dnf:
|
|
||||||
name: nodejs
|
|
||||||
state: latest
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install desktop menu
|
|
||||||
command: >
|
|
||||||
xdg-desktop-menu install --mode user
|
|
||||||
{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop
|
|
||||||
@@ -1,7 +1,11 @@
|
|||||||
---
|
---
|
||||||
- name: install homebrew package
|
- name: install homebrew package
|
||||||
homebrew_cask:
|
homebrew:
|
||||||
name: obsidian
|
name: obsidian
|
||||||
state: latest
|
state: latest
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
- name: clone notes repository
|
||||||
|
git:
|
||||||
|
repo: git@github.com:kbenzie/notes.git
|
||||||
|
dest: '{{ansible_env.HOME}}/Documents/Notes'
|
||||||
|
branch: main
|
||||||
|
|||||||
@@ -1,32 +0,0 @@
|
|||||||
---
|
|
||||||
- name: install flatpak package
|
|
||||||
become: true
|
|
||||||
flatpak:
|
|
||||||
name: md.obsidian.Obsidian
|
|
||||||
|
|
||||||
# Remove old appimage if it exists
|
|
||||||
- name: stat appimage symlink
|
|
||||||
stat:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
|
||||||
register: symlink_file
|
|
||||||
- set_fact:
|
|
||||||
iconpath: 'share/icons/hicolor/512x512/apps/obsidian.png'
|
|
||||||
- name: remove appimage icon file
|
|
||||||
file:
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/{{iconpath}}'
|
|
||||||
state: absent
|
|
||||||
- name: remove appimage desktop file
|
|
||||||
file:
|
|
||||||
dest: '{{ansible_env.HOME}}/.local/share/applications/obsidian-obsidian.desktop'
|
|
||||||
state: absent
|
|
||||||
- name: remove old appimage
|
|
||||||
when: "'lnk_source' in symlink_file.stat"
|
|
||||||
file:
|
|
||||||
path: '{{symlink_file.stat.lnk_source}}'
|
|
||||||
state: absent
|
|
||||||
- name: remove appimage symlink
|
|
||||||
file:
|
|
||||||
path: '{{ansible_env.HOME}}/.local/bin/Obsidian'
|
|
||||||
state: absent
|
|
||||||
|
|
||||||
- include_tasks: Unix.yaml
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
- name: clone notes repository
|
|
||||||
git:
|
|
||||||
repo: git@github.com:kbenzie/notes.git
|
|
||||||
dest: '{{ansible_env.HOME}}/Documents/Notes'
|
|
||||||
version: main
|
|
||||||
@@ -12,3 +12,7 @@
|
|||||||
repo: git@github.com:kbenzie/notes.git
|
repo: git@github.com:kbenzie/notes.git
|
||||||
dest: '{{obsidian_notes_repo}}'
|
dest: '{{obsidian_notes_repo}}'
|
||||||
branch: main
|
branch: main
|
||||||
|
- win_owner:
|
||||||
|
path: '{{obsidian_notes_repo}}'
|
||||||
|
user: Benie
|
||||||
|
recurse: true
|
||||||
|
|||||||
@@ -1,5 +1,2 @@
|
|||||||
---
|
---
|
||||||
- include_tasks: '{{ansible_os_family}}.yaml'
|
- include_tasks: '{{ansible_os_family}}.yaml'
|
||||||
when: ansible_os_family == "Darwin" or ansible_os_family == "Windows"
|
|
||||||
- include_tasks: 'Linux.yaml'
|
|
||||||
when: ansible_os_family != "Darwin" and ansible_os_family != "Windows"
|
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Name=Obsidian
|
|
||||||
Exec={{ansible_env.HOME}}/.local/bin/Obsidian
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Icon={{ansible_env.HOME}}/.local/{{iconpath}}
|
|
||||||
StartupWMClass=Obsidian
|
|
||||||
X-AppImage-Version={{latest.json.name}}
|
|
||||||
Comment=Private and flexible note‑taking app that adapts to the way you think.
|
|
||||||
MimeType=x-scheme-handler/obsidian;
|
|
||||||
Categories=Utility;
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user