28 lines
333 B
Markdown
28 lines
333 B
Markdown
|
# Tom's configurations
|
||
|
|
||
|
These are my configuration files.
|
||
|
|
||
|
## install (project)
|
||
|
|
||
|
> Use GNU Stow to install a configuration.
|
||
|
|
||
|
~~~bash
|
||
|
stow "$project"
|
||
|
~~~
|
||
|
|
||
|
## install stumpwm
|
||
|
|
||
|
> Do something else
|
||
|
|
||
|
~~~bash
|
||
|
echo installing stumpwm
|
||
|
~~~
|
||
|
|
||
|
## uninstall (project)
|
||
|
|
||
|
> Use GNU Stow to uninstall a configuration.
|
||
|
|
||
|
~~~bash
|
||
|
stow -D "$project"
|
||
|
~~~
|