<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=f742d41837756743629a4a7bf2f1932e919f77a8'/>
<id>urn:sha1:f742d41837756743629a4a7bf2f1932e919f77a8</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=aebff3de6d856957ab13acfbc206887855de3185'/>
<id>urn:sha1:aebff3de6d856957ab13acfbc206887855de3185</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=cd0984fda412ae979379f45200a2aec52425d769'/>
<id>urn:sha1:cd0984fda412ae979379f45200a2aec52425d769</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=125b73e1cf8e9d46bf944f4bf074fbac454b60eb'/>
<id>urn:sha1:125b73e1cf8e9d46bf944f4bf074fbac454b60eb</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=ed45c7caebb06e9e4166d056e3c7d01464703cd4'/>
<id>urn:sha1:ed45c7caebb06e9e4166d056e3c7d01464703cd4</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=b5a7afd46a401421431049b4e1606598c81f0a05'/>
<id>urn:sha1:b5a7afd46a401421431049b4e1606598c81f0a05</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=9c23fedc174b600b8c40d60844476d2975ffa119'/>
<id>urn:sha1:9c23fedc174b600b8c40d60844476d2975ffa119</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>
