From 9d06a617806ce5aec1bb2eee440ca961066861cc Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Mon, 15 Feb 2021 00:37:34 +0100 Subject: [PATCH] legal: change license to GPLv3 in script headers Kept wondering wether I should keep the MIT (because I highly value freedom of act) or embrace the GPL (because I don't want this work to become close-source). I do understand that this commit (and the next one that is actually changing the LICENSE) is a defeat for freedom. I guess freedom has been defeated long time ago, when people and companies figured that was "free" (as in gratis) was also "free" (as in disposable). This is not how I think free (as in "libre") works but hey, that surely is how Intel and other corporations see it (ec: Intel Management Engine is entirely based on Minix, is close-source, and *maybe* used as a backdoor by anybody). It boils down to the Paradox of Tolerance, and I surely won't tolerate shit going their way. If you want to take open source stuff, be my guest ; but you have to play by the rules. --- .config/nvim/after/ftplugin/groff.vim | 2 +- .config/nvim/after/ftplugin/python.vim | 2 +- .config/nvim/after/ftplugin/tex.vim | 2 +- .config/nvim/after/ftplugin/text.vim | 2 +- .config/nvim/after/ftplugin/verilog.vim | 2 +- .config/nvim/init.vim | 2 +- .config/nvim/statusline.vim | 2 +- .local/bin/arch-setup | 2 +- .local/bin/audio-notify | 2 +- .local/bin/bibinput | 2 +- .local/bin/bibshow | 2 +- .local/bin/bulk | 2 +- .local/bin/colorblocks | 2 +- .local/bin/compiler | 2 +- .local/bin/displayselect | 2 +- .local/bin/dmenumount | 2 +- .local/bin/dmenuopen | 2 +- .local/bin/dmenupass | 2 +- .local/bin/dmenuprompt | 2 +- .local/bin/dmenuumount | 2 +- .local/bin/dot | 2 +- .local/bin/fetch | 2 +- .local/bin/kbacklight | 2 +- .local/bin/mailsync | 2 +- .local/bin/maker | 2 +- .local/bin/mom | 2 +- .local/bin/mommerge | 2 +- .local/bin/player | 2 +- .local/bin/remaps | 2 +- .local/bin/sbacklight | 2 +- .local/bin/setbg | 2 +- .local/bin/statusbar/sb-battery | 2 +- .local/bin/statusbar/sb-internet | 2 +- .local/bin/statusbar/sb-mailbox | 2 +- .local/bin/statusbar/sb-mpdup | 2 +- .local/bin/statusbar/sb-music | 2 +- .local/bin/statusbar/sb-volume | 2 +- 37 files changed, 37 insertions(+), 37 deletions(-) diff --git a/.config/nvim/after/ftplugin/groff.vim b/.config/nvim/after/ftplugin/groff.vim index d50ccfe..3b3707a 100644 --- a/.config/nvim/after/ftplugin/groff.vim +++ b/.config/nvim/after/ftplugin/groff.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : groff filetype config inoremap à \[`a] diff --git a/.config/nvim/after/ftplugin/python.vim b/.config/nvim/after/ftplugin/python.vim index 24b9fa6..4914385 100644 --- a/.config/nvim/after/ftplugin/python.vim +++ b/.config/nvim/after/ftplugin/python.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : python filetype config " PEP8 diff --git a/.config/nvim/after/ftplugin/tex.vim b/.config/nvim/after/ftplugin/tex.vim index a4d628b..54997d2 100644 --- a/.config/nvim/after/ftplugin/tex.vim +++ b/.config/nvim/after/ftplugin/tex.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : tex filetype config " spellcheck enabled diff --git a/.config/nvim/after/ftplugin/text.vim b/.config/nvim/after/ftplugin/text.vim index 30c5508..d7639bd 100644 --- a/.config/nvim/after/ftplugin/text.vim +++ b/.config/nvim/after/ftplugin/text.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : vim filetype config setlocal spell spelllang=fr,en_us diff --git a/.config/nvim/after/ftplugin/verilog.vim b/.config/nvim/after/ftplugin/verilog.vim index eb0e582..374bc40 100644 --- a/.config/nvim/after/ftplugin/verilog.vim +++ b/.config/nvim/after/ftplugin/verilog.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : verilog fietype config noremap :w! \| :CoqRunToCursor diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 099cf11..dad23df 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 06/05/2020 -" License : MIT +" License : GPLv3 " Description : My own personnal nvim configuration "" Plugin stuff diff --git a/.config/nvim/statusline.vim b/.config/nvim/statusline.vim index 60bcf16..b5b907c 100644 --- a/.config/nvim/statusline.vim +++ b/.config/nvim/statusline.vim @@ -1,6 +1,6 @@ " Author : swytch " Created : 08/05/2020 -" License : MIT +" License : GPLv3 " Description : My own personnal statusline script function! CurrentMode() diff --git a/.local/bin/arch-setup b/.local/bin/arch-setup index bdb9b5a..cbd4357 100755 --- a/.local/bin/arch-setup +++ b/.local/bin/arch-setup @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : arch_setup -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 17:49:05 CEST # # @description : automate the setup of my arch installation diff --git a/.local/bin/audio-notify b/.local/bin/audio-notify index 77aeb05..f015fb1 100755 --- a/.local/bin/audio-notify +++ b/.local/bin/audio-notify @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : audio_notify -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 17:52:58 CEST # # @description : send a notification with sound level diff --git a/.local/bin/bibinput b/.local/bin/bibinput index f647667..68b02e4 100755 --- a/.local/bin/bibinput +++ b/.local/bin/bibinput @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : bibinput -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 17:57:47 CEST # # @description : create a bibliography entry through dmenu diff --git a/.local/bin/bibshow b/.local/bin/bibshow index 87a8942..5386f00 100755 --- a/.local/bin/bibshow +++ b/.local/bin/bibshow @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : bibshow -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 17:58:14 CEST # # @description : interactively display the infos of a .bib entry in dmenu diff --git a/.local/bin/bulk b/.local/bin/bulk index 33adcfd..68470cf 100755 --- a/.local/bin/bulk +++ b/.local/bin/bulk @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (swytch@$HOSTNAME) # @file : bulk -# @license : MIT +# @license : GPLv3 # @created : Wednesday Feb 10, 2021 00:27:55 CET # # @description : execute batch commands through your favorite $EDITOR diff --git a/.local/bin/colorblocks b/.local/bin/colorblocks index 17bbba4..aa4e31d 100755 --- a/.local/bin/colorblocks +++ b/.local/bin/colorblocks @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (based on u/deepjyoti30 on GitHub) # @file : colorblocks -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 17:59:44 CEST # # @description : display terminal colors as big blocks diff --git a/.local/bin/compiler b/.local/bin/compiler index aa8b790..a46d8d6 100755 --- a/.local/bin/compiler +++ b/.local/bin/compiler @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : compiler -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:00:51 CEST # # @description : compile or run another finishing operation on a file diff --git a/.local/bin/displayselect b/.local/bin/displayselect index 1a4a92e..a239c2f 100755 --- a/.local/bin/displayselect +++ b/.local/bin/displayselect @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : displayselect -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:04:01 CEST # # @description : detect displays and select an organisation diff --git a/.local/bin/dmenumount b/.local/bin/dmenumount index 8c6ec31..9318767 100755 --- a/.local/bin/dmenumount +++ b/.local/bin/dmenumount @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : dmenumount -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:05:31 CEST # # @description : dmenu prompt to mount unmounted drives diff --git a/.local/bin/dmenuopen b/.local/bin/dmenuopen index 6d6b4dd..9ac96a1 100755 --- a/.local/bin/dmenuopen +++ b/.local/bin/dmenuopen @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : dmenuopen -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:08:05 CEST # # @description : find a file, open it with appropriate application diff --git a/.local/bin/dmenupass b/.local/bin/dmenupass index 6fada4d..8d0a84d 100755 --- a/.local/bin/dmenupass +++ b/.local/bin/dmenupass @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : dmenupass -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:08:50 CEST # # @description : [sudo] prompt (SUDO_ASKPASS variable) diff --git a/.local/bin/dmenuprompt b/.local/bin/dmenuprompt index e2c43c5..1ae8900 100755 --- a/.local/bin/dmenuprompt +++ b/.local/bin/dmenuprompt @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : dmenuprompt -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:10:13 CEST # # @description : dmenu prompt ($1) to perform a command ($2) diff --git a/.local/bin/dmenuumount b/.local/bin/dmenuumount index 5949dad..8917cf2 100755 --- a/.local/bin/dmenuumount +++ b/.local/bin/dmenuumount @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted form Luke Smith - lukesmith.xyz) # @file : dmenuumount -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:11:17 CEST # # @description : dmenu prompt to unmount drives diff --git a/.local/bin/dot b/.local/bin/dot index d09af8d..476dd86 100755 --- a/.local/bin/dot +++ b/.local/bin/dot @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : dot -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:13:05 CEST # # @description : git wrapper for dotfiles management diff --git a/.local/bin/fetch b/.local/bin/fetch index f53b3eb..07af97c 100755 --- a/.local/bin/fetch +++ b/.local/bin/fetch @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapated from github.com/jschx/ufetch) # @file : fetch -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:16:09 CEST # # @description : display system infos diff --git a/.local/bin/kbacklight b/.local/bin/kbacklight index 4afa371..c540e5d 100755 --- a/.local/bin/kbacklight +++ b/.local/bin/kbacklight @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : kbacklight -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:17:03 CEST # # @description : control keyboard brightness diff --git a/.local/bin/mailsync b/.local/bin/mailsync index a6f0d98..1e4c60f 100755 --- a/.local/bin/mailsync +++ b/.local/bin/mailsync @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : mailsync -# @license : MIT +# @license : GPLv3 # @created : Sunday Feb 14, 2021 12:46:24 CET # # @description : synchronize mail accounts diff --git a/.local/bin/maker b/.local/bin/maker index c70e77b..6189d5b 100755 --- a/.local/bin/maker +++ b/.local/bin/maker @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : maker -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:18:53 CEST # # @description : create a makefile for current project (if c/c++) diff --git a/.local/bin/mom b/.local/bin/mom index 79767a9..905b6d2 100755 --- a/.local/bin/mom +++ b/.local/bin/mom @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : mom -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:19:56 CEST # # @description : create a groff doc with genereic metadata diff --git a/.local/bin/mommerge b/.local/bin/mommerge index 2daddcd..b4ad907 100755 --- a/.local/bin/mommerge +++ b/.local/bin/mommerge @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : mommerge -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:20:23 CEST # # @description : merge mom files from current dir diff --git a/.local/bin/player b/.local/bin/player index 3b3c1d3..f8f5e43 100755 --- a/.local/bin/player +++ b/.local/bin/player @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (swytch@$HOSTNAME) # @file : player -# @license : MIT +# @license : GPLv3 # @created : Friday Feb 05, 2021 21:42:00 CET # # @description : simple wrapper for mpc, to send notifications diff --git a/.local/bin/remaps b/.local/bin/remaps index 1190779..d84df55 100755 --- a/.local/bin/remaps +++ b/.local/bin/remaps @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : remaps -# @license : MIT +# @license : GPLv3 # @created : Wednesday Jan 13, 2021 00:41:18 CET # # @description : remap keys to others diff --git a/.local/bin/sbacklight b/.local/bin/sbacklight index 7a3f215..58125fd 100755 --- a/.local/bin/sbacklight +++ b/.local/bin/sbacklight @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch # @file : sbacklight -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:22:36 CEST # # @description : control screen brightness diff --git a/.local/bin/setbg b/.local/bin/setbg index f05b7af..3d81bf4 100755 --- a/.local/bin/setbg +++ b/.local/bin/setbg @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : setbg -# @license : MIT +# @license : GPLv3 # @created : Wednesday May 20, 2020 18:23:50 CEST # @description : set the wallpaper ###################################################################### diff --git a/.local/bin/statusbar/sb-battery b/.local/bin/statusbar/sb-battery index f32b1ba..0f188a3 100755 --- a/.local/bin/statusbar/sb-battery +++ b/.local/bin/statusbar/sb-battery @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-battery -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 17:19:04 CET # # @description : battery block dwmblocks diff --git a/.local/bin/statusbar/sb-internet b/.local/bin/statusbar/sb-internet index 33363a7..5590b96 100755 --- a/.local/bin/statusbar/sb-internet +++ b/.local/bin/statusbar/sb-internet @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-internet -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 17:35:49 CET # # @description : internet block for dwmblocks diff --git a/.local/bin/statusbar/sb-mailbox b/.local/bin/statusbar/sb-mailbox index 6bdca7b..8b4b426 100755 --- a/.local/bin/statusbar/sb-mailbox +++ b/.local/bin/statusbar/sb-mailbox @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-mailbox -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 18:15:13 CET # # @description : mail block for dwmblocks diff --git a/.local/bin/statusbar/sb-mpdup b/.local/bin/statusbar/sb-mpdup index 8ceac79..8af8d22 100755 --- a/.local/bin/statusbar/sb-mpdup +++ b/.local/bin/statusbar/sb-mpdup @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-mpdup -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 18:04:04 CET # # @description : update music block for dwmblocks diff --git a/.local/bin/statusbar/sb-music b/.local/bin/statusbar/sb-music index 3e16434..b50e34c 100755 --- a/.local/bin/statusbar/sb-music +++ b/.local/bin/statusbar/sb-music @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-music -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 18:05:21 CET # # @description : music block for dwmblocks diff --git a/.local/bin/statusbar/sb-volume b/.local/bin/statusbar/sb-volume index b8ec861..d499098 100755 --- a/.local/bin/statusbar/sb-volume +++ b/.local/bin/statusbar/sb-volume @@ -3,7 +3,7 @@ ###################################################################### # @author : swytch (adapted from Luke Smith - lukesmith.xyz) # @file : sb-volume -# @license : MIT +# @license : GPLv3 # @created : Saturday Feb 13, 2021 17:51:16 CET # # @description : volume block for dwmblocks