1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/bash
## Graficzny instalator kerneli e X t 7 3 - NeteXt'73
## przygotowanie kerneli e X t 7 3 - ext73@wp.pl
## przygotowanie skryptów optymalizacyjnych e X t 7 3
## autor skryptu NeteXt'73 - NetBit73 - netbit73@gmail.com
## Licencja: GPL v3: https://www.gnu.org/licenses/gpl.txt
#########################################################################################################################################################################
#procedury
source /opt/NeteXt73/procedury
#########################################################################################################################################################################
cd /tmp/netext73
if [ "$1" = "paypal" ]; then
su $userek xdg-open https://paypal.me/NeteXt73
#yad --center --html --on-top --browser --title="We will help you, you will help us. Thank You for Your donation. NeteXt Team." --window-icon="/opt/NeteXt73/ikony/paypal.png" --uri="https://paypal.me/NeteXt73" --width=$((860*$skala)) --height=$((600*$skala))
elif [ "$1" = "ext73" ]; then
su $userek xdg-open https://www.netext73.pl/2014/02/e-x-t-7-3.html
#yad --center --html --on-top --browser --title="e X t 7 3" --window-icon="/opt/NeteXt73/ikony/ext73.png" --uri="http://www.netext73.pl/2014/02/e-x-t-7-3.html" --width=$((860*$skala)) --height=$((600*$skala))
elif [ "$1" = "netbit73" ]; then
su $userek xdg-open https://www.netext73.pl/2014/01/netbit73.html
#yad --center --html --on-top --browser --title="NetBit73" --window-icon="/opt/NeteXt73/ikony/netbit73.png" --uri="http://www.netext73.pl/2014/01/netbit73.html" --width=$((860*$skala)) --height=$((600*$skala))
elif [ "$1" = "kontakty" ]; then
KEY="$(echo $RANDOM)"
#zmienne losowe
for i in $(seq 0 6); do
res[$i]=$(mktemp --tmpdir=/tmp/netext73 netext73_$i.XXXXXXXX)
done
yad --plug=$KEY --tabnum=1 --text-info --filename=/opt/NeteXt73/README.md 1> ${res[0]} &
yad --plug=$KEY --tabnum=2 --icons --image-on-top --single-click --item-width=$((200*$skala)) --read-dir=/opt/NeteXt73/kontakty 1> ${res[1]} &
yad --plug=$KEY --tabnum=3 --text-info --filename=/opt/NeteXt73/LICENSE 1> ${res[2]} &
yad --plug=$KEY --tabnum=4 --text-info --filename=/opt/NeteXt73/changelog 1> ${res[3]} &
yad --notebook --center --key=$KEY --tab="$TEXT_O" --tab="$TEXT_KONTAKT_Z_AUTORAMI" --tab="$TEXT_LICENCJA" --tab="$TEXT_CHANGELOG" \
--title="$nazwa_skryptu1 " --window-icon="/opt/NeteXt73/ikony/NeteXt73.png" --on-top --width=$((890*$skala)) --height=$((550*$skala)) --button="$TEXT_ZAMKNIJ:1" # --button="$TEXT_WYSLIJ_ZGLOSZENIE:0" --tab="$TEXT_BUG"
#klawisz=$?
#if [ "$klawisz" = "0" ]; then
#wycinanie błędów
#if [ "$(cat ${res[5]} | cut -d '|' -f 4 )" != "" ]; then
# please_wait
# export userek=$(cat /tmp/netext73/userek)
# echo -e "$(cat ${res[5]} | cut -d '|' -f 3) \n $(cat ${res[5]} | cut -d '|' -f 5) \n $(cat ${res[5]} | cut -d '|' -f 4)" | pastebinit_netext73 "$(cat ${res[5]} | cut -d "|" -f 2)" && dymek -i $ikona_info1 "$TEXT_INFORMACJA" "\n$TEXT_WYSLANO_ZGLOSZENIE"
# please_wait kill
#fi
#fi
for i in $(seq 0 6); do
rm ${res[$i]} -f
done
else
su $userek xdg-open $adres_opisu
#yad --center --html --browser --title="$adres_opisu" --window-icon="/opt/NeteXt73/ikony/NeteXt73.png" --uri="$adres_opisu" --width=$((950*$skala)) --height=$((600*$skala))
fi
|