Skip to content

Commit 8000ea6

Browse files
committed
housekeeping
1 parent cbaeb74 commit 8000ea6

13 files changed

Lines changed: 22 additions & 46 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
18-
python-version: "3.11"
18+
python-version: "3.12"
1919

2020
- name: Install dependencies
2121
run: |

inventory/remote.ini

Lines changed: 0 additions & 8 deletions
This file was deleted.

roles/alacritty/tasks/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
ansible.builtin.git:
1414
repo: "https://github.com/alacritty/alacritty-theme.git"
1515
dest: "{{ alacritty_config_dir }}/themes"
16-
version: master
16+
version: "{{ alacritty_theme_version }}"
1717
depth: 1
1818
update: true
1919
- name: Copy alacritty.toml

roles/alacritty/vars/main.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
---
22
alacritty_config_dir: "{{ home }}/.config/alacritty"
3+
alacritty_theme_version: "02ed0a1826d008885c0cd4589c9eff892773a62a"

roles/gpg/tasks/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
dest: ~/.gnupg/gpg.conf
1212
mode: "0600"
1313

14-
- name: Copy gpg-agent.conf
15-
ansible.builtin.copy:
16-
src: gpg-agent.conf
14+
- name: Template gpg-agent.conf
15+
ansible.builtin.template:
16+
src: gpg-agent.conf.j2
1717
dest: ~/.gnupg/gpg-agent.conf
1818
mode: "0600"
1919
notify: Reload gpg-agent
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
default-cache-ttl 3600
22
max-cache-ttl 7200
3+
{% if is_mac %}
34
pinentry-program /opt/homebrew/bin/pinentry-mac
5+
{% else %}
6+
pinentry-program /usr/bin/pinentry
7+
{% endif %}

roles/install_software/tasks/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
failed_when: false
5151

5252
- name: Warn about failed cargo installations
53-
when: install_from_source
53+
when: install_from_source and (item.rc | default(0)) != 0
5454
loop: "{{ install_software_cargo_result.results }}"
5555
ansible.builtin.debug:
5656
msg: "WARNING: Failed to install {{ item.item }}: {{ item.stderr | default('unknown error') }}"
Lines changed: 6 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,18 @@
11
{
2-
"theme": {
3-
"name": "Dev theme",
4-
"url": "file:///Users/sstol/.logseq/plugins/logseq-dev-theme/custom.css",
5-
"pid": "logseq-dev-theme"
6-
},
2+
"theme": null,
73
"themes": {
84
"mode": "dark",
9-
"light": {
10-
"name": "Atlas Theme: Light",
11-
"url": "file:///Users/sstol/.logseq/plugins/logseq-atlas-theme/custom.css",
12-
"mode": "light",
13-
"pid": "logseq-atlas-theme"
14-
},
5+
"light": null,
156
"dark": {
16-
<<<<<<< Updated upstream
177
"name": "Dev theme - WITHOUT bullet threading",
18-
"url": "file:///home/spencer/.logseq/plugins/logseq-dev-theme/no_bullet_threading.css",
8+
"url": "file:///Users/sstol/.logseq/plugins/logseq-dev-theme/no_bullet_threading.css",
199
"description": "Dev theme without bullet threading",
20-
=======
21-
"name": "Dev theme",
22-
"url": "file:///Users/sstol/.logseq/plugins/logseq-dev-theme/custom.css",
23-
>>>>>>> Stashed changes
2410
"pid": "logseq-dev-theme",
25-
"group-first": true,
26-
"group-desc": "light & dark themes",
11+
"group-first": false,
12+
"group-desc": null,
2713
"mode": "dark",
2814
"selected": false
2915
}
3016
},
31-
"externals": [],
32-
"pinnedToolbarItems": [
33-
"logseq-todo-plugin:logseq-plugin-todo",
34-
"logseq-git:git",
35-
"ollama-logseq:ollama-ui-open"
36-
]
17+
"externals": []
3718
}

roles/profile/files/go.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

roles/sway/tasks/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: Install sway
3-
become: true
3+
become: "{{ should_become }}"
44
ansible.builtin.package:
55
name: sway
66
state: present

0 commit comments

Comments
 (0)