Fluxbox bits and bobs: About

Downloads, License, Errors, Additions, Privacy, Cookies and JavaScript

1. Downloads
All written examples, scripts and icons can be found as a .tar.gz file in sammlung-en.tar.gz.
All mentioned icons can be found as a .tar.gz file in icons.tar.gz.
The mentioned icon package can be found as a .deb file for all architectures in yadicons.deb.
The often used wrapper to start programs as superuser can be found as a .deb file for all architectures in sux_1.0.1-6_all.deb.
2. Errors/Additions
If You find errors (there must be masses of them) or like to make additions, tell me:
netz(at)l4a.org

3. License

This document can be freely used and copied under the Creative Commons CC BY-SA License:
https://creativecommons.org/licenses/by-sa/4.0/

4. Impressum
This website has been created and the responsibility for its content lies by:

Peter Handrich
Mail: netz(at)l4a.org
Address:
Große Straße 52
27449 Rotenburg an der Wümme
Germany

5. Privacy
This website is completely free of charge.

This website does not track anybody.
This website does not collect any data of its visitors - it does not even count them.
This website does not send any cookies to Your webbrowser.
This website uses exactly one snippet of JavaScript to send the content of a listing to Your clipboard - and will work with JavaScript switched off (with the except of the copy function). This is it:

<p>
<button id="copyTextBtn1">Copy</button>
<textarea id="cookies" cols="100" rows="2">
Content of the textarea/listing
</textarea>
</p>
<script>
copyTextBtn1 = document.querySelector('#copyTextBtn1');
copyTextBtn1.addEventListener('click', function(event) {
let copyTextarea = document.querySelector('#cookies');
copyTextarea.focus();
copyTextarea.select();
try {
let successful = document.execCommand('copy');
let msg = successful ? 'was successful.' : 'was NOT successful.';
alert('Copying to the clipboard ' + msg);
} catch(err) {
alert('Error copying');
}
});
</script>