diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-14 20:40:34 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-08-14 20:40:34 +0300 |
commit | 810cb8655fc97ce19db5f9190cb390f655d0f0d2 (patch) | |
tree | 72a2fc906bb1219257b5cd02ba46a9f77c60c762 /LICENSE |
Initial fork from https://git.suckless.org/slstatus
Changes to be committed:
new file: LICENSE
new file: Makefile
new file: README
new file: arg.h
new file: components/battery.c
new file: components/cat.c
new file: components/cpu.c
new file: components/datetime.c
new file: components/disk.c
new file: components/entropy.c
new file: components/hostname.c
new file: components/ip.c
new file: components/kernel_release.c
new file: components/keyboard_indicators.c
new file: components/keymap.c
new file: components/load_avg.c
new file: components/netspeeds.c
new file: components/num_files.c
new file: components/ram.c
new file: components/run_command.c
new file: components/swap.c
new file: components/temperature.c
new file: components/uptime.c
new file: components/user.c
new file: components/volume.c
new file: components/wifi.c
new file: config.def.h
new file: config.mk
new file: slstatus.1
new file: slstatus.c
new file: slstatus.h
new file: util.c
new file: util.h
Diffstat (limited to 'LICENSE')
-rw-r--r-- | LICENSE | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -0,0 +1,43 @@ +ISC License + +Copyright 2016-2022 Aaron Marcher <me@drkhsh.at> + +Copyright 2016 Roy Freytag <rfreytag@hs-mittweida.de> +Copyright 2016 Vincent Loupmon <vincentloupmon@gmail.com> +Copyright 2016 Daniel Walter <d.walter@0x90.at> +Copyright 2016-2018 Ali H. Fardan <raiz@firemail.cc> +Copyright 2016 Jody Leonard <me@jodyleonard.com> +Copyright 2016-2018 Quentin Rameau <quinq@fifth.space> +Copyright 2016 Mike Coddington <mike@coddington.us> +Copyright 2016-2018 Ivan J. <parazyd@dyne.org> +Copyright 2017 Tobias Stoeckmann <tobias@stoeckmann.org> +Copyright 2017-2018 Laslo Hunhold <dev@frign.de> +Copyright 2018 Darron Anderson <darronanderson@protonmail.com> +Copyright 2018 Josuah Demangeon <mail@josuah.net> +Copyright 2018 Tobias Tschinkowitz <tobias@he4d.net> +Copyright 2018 David Demelier <markand@malikania.fr> +Copyright 2018-2012 Michael Buch <michaelbuch12@gmail.com> +Copyright 2018 Ian Remmler <ian@remmler.org> +Copyright 2016-2019 Joerg Jung <jung@openbsd.org> +Copyright 2019 Ryan Kes <alrayyes@gmail.com> +Copyright 2019 Cem Keylan <cem@ckyln.com> +Copyright 2019 Dimitris Papastamos <dsp@2f30.org> +Copyright 2019-2022 Ingo Feinerer <feinerer@logic.at> +Copyright 2020 Alexandre Ratchov <alex@caoua.org> +Copyright 2020 Mart Lubbers <mart@martlubbers.net> +Copyright 2020 Daniel Moch <daniel@danielmoch.com> +Copyright 2022 Nickolas Raymond Kaczynski <nrk@disroot.org> +Copyright 2022 Patrick Iacob <iacobp@oregonstate.edu> +Copyright 2021-2022 Steven Ward <planet36@gmail.com> + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |