mirror of
https://github.com/dbarzin/pandora-box.git
synced 2025-07-24 15:59:42 +02:00
add license
This commit is contained in:
parent
d065356e5f
commit
862d246c13
2 changed files with 37 additions and 4 deletions
24
install.sh
24
install.sh
|
@ -1,11 +1,29 @@
|
||||||
#/usr/bin/bash -e
|
#/usr/bin/bash
|
||||||
|
|
||||||
|
#
|
||||||
|
# This file is part of the Pandora-box distribution (https://github.com/dbarzin/pandora-box).
|
||||||
|
# Copyright (c) 2022 Didier Barzin.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
set -e # stop on error
|
||||||
|
set -x # echo on
|
||||||
|
|
||||||
#================================
|
#================================
|
||||||
# Install script for Pandora-Box
|
# Install script for Pandora-Box
|
||||||
#================================
|
#================================
|
||||||
|
|
||||||
set -e # stop on error
|
|
||||||
set -x # echo on
|
|
||||||
cd /home/$SUDO_USER
|
cd /home/$SUDO_USER
|
||||||
|
|
||||||
# remove need restart
|
# remove need restart
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
"""Pandora-box is a USB scaning station based on Pandora."""
|
#
|
||||||
|
# This file is part of the Pandora-box distribution (https://github.com/dbarzin/pandora-box).
|
||||||
|
# Copyright (c) 2022 Didier Barzin.
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, version 3.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
import curses
|
import curses
|
||||||
from curses import wrapper
|
from curses import wrapper
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue