diff options
author | 2025-01-22 16:48:42 +0100 | |
---|---|---|
committer | 2025-01-22 16:48:42 +0100 | |
commit | 8360523f9fedd19b70abfd5fa6ed239655ea49e0 (patch) | |
tree | 9d585e350190d8f57d7723a80a0deef7e6342ed1 | |
parent | 9e36977b9d4641c9fc67eee9b36bdfa8a3b85bbd (diff) | |
download | zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.gz zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.bz2 zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.lz zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.zip |
feat: proper copyright and license declaration
-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | env.zsh | 8 | ||||
-rwxr-xr-x | install.zsh | 18 | ||||
-rw-r--r-- | utils/session-type.zsh | 8 | ||||
-rwxr-xr-x | zuwu.zsh | 15 |
5 files changed, 45 insertions, 6 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2024 memdmp +Copyright (c) 2025 memdmp 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: @@ -7,6 +7,14 @@ # memdmp <https://mem.estrogen.zone/> # +# +# Copyright (c) 2025 the above listed authors +# +# 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. +# + # Currently, we just ensure your environment is sensible - e.g. we ensure your LANG is well-defined, etc... # Validate $LANG is set correctly diff --git a/install.zsh b/install.zsh index 223089b..755e1fe 100755 --- a/install.zsh +++ b/install.zsh @@ -1,4 +1,22 @@ #!/usr/bin/env zsh + +# +# Installs the zuwu microframework onto the user's device. +# +# This file is part of zuwu - a general-purpose zsh initialization and utility framework. +# +# Authors: +# memdmp <https://mem.estrogen.zone/> +# + +# +# Copyright (c) 2025 the above listed authors +# +# 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. +# + set -e if [[ "$ZSH_NAME" == "" ]]; then diff --git a/utils/session-type.zsh b/utils/session-type.zsh index 074cd54..79340e2 100644 --- a/utils/session-type.zsh +++ b/utils/session-type.zsh @@ -8,6 +8,14 @@ # memdmp <https://mem.estrogen.zone/> # +# +# Copyright (c) 2025 the above listed authors +# +# 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. +# + function { local session_extensions=() local session_base="local" @@ -1,9 +1,14 @@ -############################################## -# zuwu: a cute lil zsh microframework thingy # -# ~ memdmp # -############################################## # -# Copyright (c) 2024 memdmp +# The zuwu microframework primary entrypoint. +# +# This file is part of zuwu - a general-purpose zsh initialization and utility framework. +# +# Authors: +# memdmp <https://mem.estrogen.zone/> +# + +# +# Copyright (c) 2025 the above listed authors # # 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. |