ocd 0.6.2

Organize current dotfiles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-FileCopyrightText: 2025 Jason Pena <jasonpena@awkless.com>
# SPDX-License-Identifier: MIT

-- sh/.shrc --
case $- in
  *i*) ;;
  *) exit ;;
esac

set -o vi

-- dwm/dwm.c --
int
main(int argc, char **argv) {
	printf("Hello world, from DWM!");
	return 0;
}