diff options
author | Michael Hanson <hansonorders@verizon.net> | 2011-02-16 21:32:27 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2011-02-16 21:32:27 (GMT) |
commit | 268b2a91da2f63a59a53cf6a615d5fbf1e35531c (patch) | |
tree | d01c4ac40265b1c4734310faa8ad27eac7498e14 /abs/core/linhes-scripts | |
parent | 7ad1c01bfef9f28c17e738c5e58b66057920a646 (diff) | |
parent | 4a1431c616b4060b70e762d6aa7e022348084dc0 (diff) | |
download | linhes_pkgbuild-268b2a91da2f63a59a53cf6a615d5fbf1e35531c.zip linhes_pkgbuild-268b2a91da2f63a59a53cf6a615d5fbf1e35531c.tar.gz linhes_pkgbuild-268b2a91da2f63a59a53cf6a615d5fbf1e35531c.tar.bz2 |
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/linhes-scripts')
-rw-r--r-- | abs/core/linhes-scripts/PKGBUILD | 6 | ||||
-rwxr-xr-x | abs/core/linhes-scripts/dtheme.sh | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/abs/core/linhes-scripts/PKGBUILD b/abs/core/linhes-scripts/PKGBUILD index 25ffb61..71a5961 100644 --- a/abs/core/linhes-scripts/PKGBUILD +++ b/abs/core/linhes-scripts/PKGBUILD @@ -3,7 +3,7 @@ pkgname=linhes-scripts pkgver=7 -pkgrel=2 +pkgrel=3 pkgdesc="Various scripts that help to make LinHES, LinHES." arch=('i686' 'x86_64') license=('GPL2') @@ -43,6 +43,7 @@ system-cleanup.sh myth2fuze dct700-cc.sh qip7100-cc.sh +dtheme.sh ) build() { @@ -87,4 +88,5 @@ md5sums=('f56985b2d602e11dc1e10d3e7848b2a5' '2fb25aef03ffd1282414d8cca3df7056' 'd2a29444ab9036fb385bbf044daf1ff5' 'df727c98350a64e2171c950bbefc9c5d' - '7b890e7044db38e8d439f67e398af206') + '7b890e7044db38e8d439f67e398af206' + '35693f50939d5827aeabfce8c5dce589') diff --git a/abs/core/linhes-scripts/dtheme.sh b/abs/core/linhes-scripts/dtheme.sh new file mode 100755 index 0000000..b2b54fa --- /dev/null +++ b/abs/core/linhes-scripts/dtheme.sh @@ -0,0 +1,6 @@ +#!/bin/bash +#Sets LinHES as the default theme +sudo mysql mythconverg << EOF +update settings set data = 'LinHES' where value = 'Theme' +EOF + |