<feed xmlns='http://www.w3.org/2005/Atom'>
<title>archsetup/Makefile, branch v0.5</title>
<subtitle>Builds a full dev workstation from a bare Arch Linux install.
</subtitle>
<id>https://git.cjennings.net/archsetup/atom?h=v0.5</id>
<link rel='self' href='https://git.cjennings.net/archsetup/atom?h=v0.5'/>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/'/>
<updated>2026-01-29T12:53:36+00:00</updated>
<entry>
<title>feat(test,hyprland): improve test infrastructure and fix easyeffects</title>
<updated>2026-01-29T12:53:36+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-29T12:53:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=082a6731d52a4795e90bf5c29bf8ad0510d11188'/>
<id>urn:sha1:082a6731d52a4795e90bf5c29bf8ad0510d11188</id>
<content type='text'>
Test Infrastructure:
- Add make test-keep target to keep VM running after test
- Add make test-vm-base target for creating base VM only
- Update make test to auto-create VM if missing
- Remove manual user creation from create-base-vm.sh (archsetup handles it)
- Remove unused USERNAME/USER_PASSWORD from archsetup-test.conf

Archsetup:
- Add snapper-gui-git for btrfs snapshot GUI
- Add SYNC_ACL=yes for snapper permissions
- Add setfacl for wheel group access to /.snapshots

Hyprland:
- Remove easyeffects scratchpad (keep auto-launch)
- Remove ecosystem permissions (caused too many popups)

Co-Authored-By: Claude Opus 4.5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>feat(Makefile): add deps target for project dependencies</title>
<updated>2026-01-28T19:09:27+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-28T19:09:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=9e6c0b72a05052f244edf9eafa94dd9ceb548e4d'/>
<id>urn:sha1:9e6c0b72a05052f244edf9eafa94dd9ceb548e4d</id>
<content type='text'>
Installs stow, fzf for Makefile targets and qemu-full, virt-manager,
libguestfs, bridge-utils, dnsmasq, archiso, sshpass, socat for VM testing.
</content>
</entry>
<entry>
<title>feat(testing): add make test target and display report on completion</title>
<updated>2026-01-28T04:22:34+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-28T04:22:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=13a86132407dccf2ced25745da4309587384aa54'/>
<id>urn:sha1:13a86132407dccf2ced25745da4309587384aa54</id>
<content type='text'>
Add 'make test' Makefile target to run full VM integration test suite.
Print test report to terminal after generation for immediate visibility.
</content>
</entry>
<entry>
<title>feat(makefile): allow import to common, dwm, or hyprland</title>
<updated>2026-01-27T00:38:54+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-27T00:38:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=f1dcad3970bcfcd0bd30b203f0b66ee6a37280df'/>
<id>urn:sha1:f1dcad3970bcfcd0bd30b203f0b66ee6a37280df</id>
<content type='text'>
Import now requires destination:
  make import common     # Import to shared configs
  make import dwm        # Import to DWM-specific
  make import hyprland   # Import to Hyprland-specific

Prompt and header now show destination.

Co-Authored-By: Claude Opus 4.5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>fix(makefile): include top-level dotdirs in import selection</title>
<updated>2026-01-27T00:37:17+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-27T00:37:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=d7cf0c7e8554553c6fec634e9f07271ee3d2502d'/>
<id>urn:sha1:d7cf0c7e8554553c6fec634e9f07271ee3d2502d</id>
<content type='text'>
Import now searches:
- ~/.*  (top-level dotdirs like .emacs.d, .ssh)
- ~/.config/*
- ~/.local/*

Excludes .cache, .local, .config from top-level (they're handled separately).

Co-Authored-By: Claude Opus 4.5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>feat(makefile): add import target, rename adopt to reset</title>
<updated>2026-01-27T00:36:20+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-27T00:36:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=8cf277ababd28c04ec5e4b868449ea10510a0797'/>
<id>urn:sha1:8cf277ababd28c04ec5e4b868449ea10510a0797</id>
<content type='text'>
New targets:
- import: Use fzf to select ~/.config and ~/.local dirs to import
          into dotfiles/common/, then restow to create symlinks
- reset: Renamed from adopt - clearer name for "resolve conflicts,
         keep repo version"

Import workflow:
1. fzf multi-select from ~/.config and ~/.local
2. Move selected dirs to dotfiles/common/
3. Restow common to create symlinks
4. Reminder to git commit

Co-Authored-By: Claude Opus 4.5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
<entry>
<title>feat: add Makefile for GNU Stow dotfile management</title>
<updated>2026-01-27T00:31:06+00:00</updated>
<author>
<name>Craig Jennings</name>
<email>c@cjennings.net</email>
</author>
<published>2026-01-27T00:31:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.cjennings.net/archsetup/commit/?id=df6b5e294d9cd6d23884726546a481803e63545e'/>
<id>urn:sha1:df6b5e294d9cd6d23884726546a481803e63545e</id>
<content type='text'>
Targets:
- stow: Create symlinks (fresh install)
- restow: Refresh symlinks after git pull
- adopt: Pull system files, reset to repo version
- unstow: Remove all symlinks

Usage: make &lt;target&gt; &lt;de&gt;
  make stow dwm
  make restow hyprland
  make adopt dwm

Shows help if DE argument missing.

Co-Authored-By: Claude Opus 4.5 &lt;noreply@anthropic.com&gt;
</content>
</entry>
</feed>
