From c75de201a0146ff73906d123c3c6b0746e7fd7ed Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Sun, 28 Mar 2021 18:44:51 -0400 Subject: [PATCH] license fix (oops!) --- dotfiles-old/README.md | 10 ++++++++-- dotfiles-old/clone.sh | 2 ++ dotfiles-old/licenses/MITX | 30 ++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 2 deletions(-) create mode 100644 dotfiles-old/licenses/MITX diff --git a/dotfiles-old/README.md b/dotfiles-old/README.md index 255d76b..765345e 100644 --- a/dotfiles-old/README.md +++ b/dotfiles-old/README.md @@ -2,13 +2,19 @@ Pretty config stuff. ![This is a screenshot of my desktop.](https://web.archive.org/web/20200926155417if_/https://i.redd.it/jwhsmokcfcp51.png) -For this configuration, posted on r/unixporn on 2020-09-25, refer to the state of the repository around [2020-09-26](https://github.com/devenblake/dotfiles/tree/7d0a35b6d06c2bb46990087c6a6c4b2a2685d49c) or so. +For this configuration, [posted on r/unixporn on 2020-09-25](https://www.reddit.com/r/unixporn/comments/izpvwp/i3gaps_basic_but_it_works/), refer to the [state of the repository around 2020-09-26](https://github.com/devenblake/dotfiles/tree/7d0a35b6d06c2bb46990087c6a6c4b2a2685d49c) or so. My setup has changed drastically since then. -My shell aliases are in `.aliases` and my general shell configuration is in `.env` +My shell aliases are in `.aliases` and my general shell configuration is in `.env`. I use `dash` as my shell. I sort of miss tab-completion but it's worth it so I know everything I do is reproducible. Refer to `scripts/` for scripts that help me keep everything organized, except for `clone.sh` (which clones all my dotfiles to `~/src/dotfiles/`, where I keep my local copy of this repo). A list of all the packages I use is available in `scripts/packages/`, organized by repository availability. + +## License + +See `LICENSE` for the repository license if you want but basically all code, unless otherwise stated, is released unencumbered into the public domain. +A notable exception to this is `src/dmenu/config.h` which is licensed under the MIT/X Consortium license as is dmenu. +This license can be found in `licenses/MITX`. diff --git a/dotfiles-old/clone.sh b/dotfiles-old/clone.sh index d2639d4..2e143ef 100755 --- a/dotfiles-old/clone.sh +++ b/dotfiles-old/clone.sh @@ -15,3 +15,5 @@ mkdir -p ./.config/i3status cp $HOME/.config/i3status/config ./.config/i3status/config mkdir -p ./.config/sxhkd cp $HOME/.config/sxhkd/sxhkdrc ./.config/sxhkd/sxhkdrc +mkdir -p ./src/dmenu +cp $HOME/src/dmenu/config.h ./src/dmenu/config.h diff --git a/dotfiles-old/licenses/MITX b/dotfiles-old/licenses/MITX new file mode 100644 index 0000000..3afd28e --- /dev/null +++ b/dotfiles-old/licenses/MITX @@ -0,0 +1,30 @@ +MIT/X Consortium License + +© 2006-2019 Anselm R Garbe +© 2006-2008 Sander van Dijk +© 2006-2007 Michał Janeczek +© 2007 Kris Maglione +© 2009 Gottox +© 2009 Markus Schnalke +© 2009 Evan Gates +© 2010-2012 Connor Lane Smith +© 2014-2020 Hiltjo Posthuma +© 2015-2019 Quentin Rameau + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE.