-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.sh
executable file
·28 lines (20 loc) · 805 Bytes
/
README.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
# README.sh - generate README file
cat <<! >README.md
# dotfiles
This repository contains my dotfiles, runit services and small scripts.
Many scripts are inspired by or copied from [leah2](http://chneukirchen.org/dotfiles/).
## usage
$ ./install.sh
# ./install-root.sh
## deps
* [extarce](https://github.com/chneukirchen/extrace) - trace exec() calls system-wide
* [lr](https://github.com/chneukirchen/lr) - list files, recursively
* [snooze](https://github.com/chneukirchen/snooze) - run a command at a particular time
* [xe](https://github.com/chneukirchen/xe) - simple xargs and apply replacement
* [dmenu](http://tools.suckless.org/dmenu/)
* [dwm](http://dwm.suckless.org/)
* [st](http://st.suckless.org/)
## bin/
$(git ls-files bin/ | xe awk 'NR==2{if(sub("# ","* ")){print}}')
!