Compare commits
6 Commits
bc0a99c883
...
a6f9893fac
| Author | SHA1 | Date | |
|---|---|---|---|
| a6f9893fac | |||
| 71469bab93 | |||
| 0e56890ee4 | |||
| 15de59d8cc | |||
| 90c92e2159 | |||
| c6d23aa138 |
@@ -31,3 +31,4 @@ Wants=yubikey-touch-detector.service
|
||||
Wants=kdeconnect.service
|
||||
Wants=color-theme-dark.service
|
||||
Wants=workstation-mgr.service
|
||||
Wants=screencfg.service
|
||||
|
||||
8
autostart/services/screencfg.service
Normal file
8
autostart/services/screencfg.service
Normal file
@@ -0,0 +1,8 @@
|
||||
[Unit]
|
||||
BindsTo=autostart.target
|
||||
After=windowmanager.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/usr/bin/screencfg watch --best
|
||||
Restart=always
|
||||
@@ -376,6 +376,7 @@ json:
|
||||
markdown:
|
||||
archlinux:
|
||||
- marksman
|
||||
- mdformat
|
||||
lldb:
|
||||
archlinux:
|
||||
- lldb
|
||||
|
||||
Submodule pkgbuilds/claude-code updated: 46d57c06e8...2fe00a7bc8
Submodule pkgbuilds/screencfg-git updated: 3c6b0cffed...a74270fcdd
23
playbook.yml
23
playbook.yml
@@ -208,6 +208,22 @@
|
||||
changed_when: unconfigured_packages_cmd.rc == 123
|
||||
become: true
|
||||
|
||||
- name: reflector
|
||||
block:
|
||||
- name: Configure reflector
|
||||
ansible.builtin.copy:
|
||||
dest: /etc/xdg/reflector/reflector.conf
|
||||
owner: root
|
||||
group: root
|
||||
mode: "0644"
|
||||
content: |
|
||||
--save /etc/pacman.d/mirrorlist
|
||||
--protocol https
|
||||
--country Germany
|
||||
--latest 5
|
||||
--sort age
|
||||
become: true
|
||||
|
||||
- name: Enable reflector timer
|
||||
ansible.builtin.systemd:
|
||||
name: reflector.timer
|
||||
@@ -433,13 +449,14 @@
|
||||
|
||||
source ./PKGBUILD
|
||||
|
||||
for arch in "${arch[@]}" ; do
|
||||
if [[ "${arch}" == "any" ]] ; then
|
||||
for a in "${arch[@]}" ; do
|
||||
if [[ "${a}" == "any" ]] ; then
|
||||
arch="any"
|
||||
break
|
||||
fi
|
||||
if [[ "${arch}" == "x86_64" ]] ; then
|
||||
if [[ "${a}" == "x86_64" ]] ; then
|
||||
arch="x86_64"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user