diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-08 17:19:39 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-08 17:19:39 -0600 |
| commit | 9b0fada2a36e936e4740e2a217f4e19806d7411b (patch) | |
| tree | 420c31eec86398b116d93249e47f24aaf8237d3c | |
| parent | 56880ee4d9a8a5a05f275fd9f710dfe31aa8fb79 (diff) | |
- Add .gitignore to exclude docs/ directory (session notes)
- Fix comment alignment in config.def.h for exitcmd
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | config.def.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77f12ae --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +docs/ diff --git a/config.def.h b/config.def.h index 1f7bc4e..e17b5b6 100644 --- a/config.def.h +++ b/config.def.h @@ -145,7 +145,7 @@ static const char *browsercmd[] = { "firefox", NULL }; // defa static const char *editorcmd[] = { "emacs", NULL }; // default editor; respects $VISUAL env variable static const char *bluetoothcmd[] = { "blueman-manager", NULL }; static const char *trackpadcmd[] = { "toggle-touchpad", NULL }; // script enables/disables trackpad -static const char *exitcmd[] = { "dmenuexitmenu", NULL }; // script providing exit options +static const char *exitcmd[] = { "dmenuexitmenu", NULL }; // script providing exit options /* volume control */ static const char *upvol[] = { "pactl", "set-sink-volume", "0", "+5%", NULL }; |
