forked from billy3321/lazyscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slzs
executable file
·42 lines (37 loc) · 1.65 KB
/
slzs
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
#!/bin/bash
#
# Lazyscripts launcher wrapper
#
# @author '2009 Hsin Yi Chen (陳信屹) <[email protected]>'
# update lazyscripts.
source startup.sh
# run Lazyscripts with root access
case $DISTRIB_ID in
"Ubuntu")
gksu --message "執行 'Lazyscripts 懶人包' 會修改系統設定,並會安裝新軟體,所以需要系統管理員權限。 請輸入系統管理密碼,才能繼續執行。 (在 Lazyscripts 下,預設這就是你登入系統時所用的密碼。)" --preserve-env tmp/env-export.sh $@
;;
"Debian")
gksu --message "執行 'Lazyscripts 懶人包' 會修改系統設定,並會安裝新軟體,所以需要系統管理員權限。 請輸入系統管理密碼,才能繼續執行。 (在 Lazyscripts 下,預設這就是你登入系統時所用的密碼。)" tmp/env-export.sh $@
;;
"openSUSE")
case $WIN_MGR in
#FIXME: arguments?
'Gnome')
gnomesu --command="tmp/env-export.sh $@"
;;
'KDE')
kdesu -c "tmp/env-export.sh $@"
;;
esac
;;
"Fedora")
if rpm -q gksu &> /dev/null ; then
gksu --message "執行 'Lazyscripts 懶人包' 會修改系統設定,並會安裝新軟體,所以需要系統管理員權限。 請輸入系統管理密碼,才能繼續執行。 (在 Lazyscripts 下,預設這就是你登入系統時所用的密碼。)" --preserve-env tmp/env-export.sh $@
else
zenity --info --text "Sorry, you need to install gksu before run Lazyscripts. Please install gksu first.\n\ncomment: you can install through run distrib/Fedora/run_first.sh"
fi
;;
*)
echo "Lazyscripts not support $DISTRIB_ID ."
;;
esac