Skip to content

Commit

Permalink
system-tools: version 110
Browse files Browse the repository at this point in the history
- use login shell to source ~/.profile and make $HOME CWD when starting mrxvt
- update changelog
  • Loading branch information
mglae committed Dec 29, 2018
1 parent f3989a8 commit f14c0f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions packages/addons/tools/system-tools/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
110
- updated and improved mc (4.8.21)
- using more compatible "xterm" TERM definition
- updated efibootmgr to 17
- fixed screen

109
- added stress-ng

Expand Down
4 changes: 2 additions & 2 deletions packages/addons/tools/system-tools/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

PKG_NAME="system-tools"
PKG_VERSION="1.0"
PKG_REV="109"
PKG_REV="110"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="https://libreelec.tv"
Expand Down Expand Up @@ -72,7 +72,7 @@ addon() {
cp -P $(get_build_dir dtach)/.$TARGET_NAME/dtach $ADDON_BUILD/$PKG_ADDON_ID/bin

# efibootmgr
cp -P $(get_build_dir efibootmgr)/src/efibootmgr/efibootmgr $ADDON_BUILD/$PKG_ADDON_ID/bin 2>/dev/null || :
cp -P $(get_build_dir efibootmgr)/src/efibootmgr $ADDON_BUILD/$PKG_ADDON_ID/bin 2>/dev/null || :

# encfs
cp -P $(get_build_dir encfs)/.$TARGET_NAME/encfs $ADDON_BUILD/$PKG_ADDON_ID/bin
Expand Down
2 changes: 1 addition & 1 deletion packages/addons/tools/system-tools/source/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

yes = xbmcgui.Dialog().yesno('', 'This is a console-only addon','','Open a terminal window?','No','Yes')
if yes:
subprocess.Popen(["systemd-run","sh","-c",". /etc/profile;exec mrxvt"], shell=False, close_fds=True)
subprocess.Popen(["systemd-run","sh","-c",". /etc/profile;cd;exec mrxvt -ls"], shell=False, close_fds=True)

0 comments on commit f14c0f6

Please sign in to comment.