Added scripts from T400
This commit is contained in:
parent
dc24730329
commit
18d6881d75
@ -858,7 +858,7 @@ options:
|
|||||||
|
|
||||||
if len(dirs) == 0 and len(nondirs) == 0:
|
if len(dirs) == 0 and len(nondirs) == 0:
|
||||||
#TODO: why?
|
#TODO: why?
|
||||||
exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
dirs.sort(key=methodcaller('lower'))
|
dirs.sort(key=methodcaller('lower'))
|
||||||
nondirs.sort(key=methodcaller('lower'))
|
nondirs.sort(key=methodcaller('lower'))
|
||||||
|
16
extract
Executable file
16
extract
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
for archive in "$@"; do
|
||||||
|
# count files in root dir
|
||||||
|
rootfiles=$(7z l -slt "${archive}" | grep -c 'Path = [^/]*$')
|
||||||
|
|
||||||
|
# add -o switch, if more than one file in root
|
||||||
|
# checks for >2, because path of the zip file itself is listed too
|
||||||
|
if [ $rootfiles -gt 2 ]; then
|
||||||
|
filename=${archive##*/}
|
||||||
|
rootname=${filename%.*}
|
||||||
|
opt="-o${rootname}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
#unpack
|
||||||
|
7z x "${opt}" "${archive}"
|
||||||
|
done
|
@ -14,11 +14,13 @@ aticonfig_available = is_exe("/usr/bin/aticonfig")
|
|||||||
sensors_available = is_exe("/usr/bin/sensors")
|
sensors_available = is_exe("/usr/bin/sensors")
|
||||||
|
|
||||||
if sensors_available:
|
if sensors_available:
|
||||||
command = "sensors radeon-pci-* | grep temp1"
|
#command = "sensors radeon-pci-* | grep temp1"
|
||||||
|
command = "sensors thinkpad-isa-* | grep ATI"
|
||||||
if aticonfig_available:
|
if aticonfig_available:
|
||||||
command = "aticonfig --odgt"
|
command = "aticonfig --odgt"
|
||||||
|
|
||||||
# Run command
|
# Run command
|
||||||
|
|
||||||
return_value = check_output(command, shell=True)
|
return_value = check_output(command, shell=True)
|
||||||
|
|
||||||
# Default return value
|
# Default return value
|
||||||
|
2
runDesktop.sh
Executable file
2
runDesktop.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
`grep '^Exec' $1 | tail -1 | sed 's/^Exec=//' | sed 's/%.//'` &
|
Loading…
x
Reference in New Issue
Block a user