mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* byobu-config: use Derek's *awesome* "screen -X" hack to reload profiles
automatically, and drop the "reload" prompt Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
parent
113e372828
commit
9e08978921
2 changed files with 7 additions and 12 deletions
13
byobu-config
13
byobu-config
|
@ -34,6 +34,7 @@ DOC='/usr/share/doc/'+PKG
|
||||||
DEF_ESC="A"
|
DEF_ESC="A"
|
||||||
RELOAD = "If you are using the default set of keybindings, press\n<F5> or <ctrl-a-R> to activate these changes.\n\nOtherwise, exit this screen session and start a new one."
|
RELOAD = "If you are using the default set of keybindings, press\n<F5> or <ctrl-a-R> to activate these changes.\n\nOtherwise, exit this screen session and start a new one."
|
||||||
RELOAD_FLAG="/var/run/screen/S-"+USER+"/"+PKG+".reload-required"
|
RELOAD_FLAG="/var/run/screen/S-"+USER+"/"+PKG+".reload-required"
|
||||||
|
RELOAD_CMD="screen -X at 0 source $HOME/."+PKG+"/profile"
|
||||||
ESC = ''
|
ESC = ''
|
||||||
snack.hotkeys[ESC] = ord(ESC)
|
snack.hotkeys[ESC] = ord(ESC)
|
||||||
snack.hotkeys[ord(ESC)] = ESC
|
snack.hotkeys[ord(ESC)] = ESC
|
||||||
|
@ -59,6 +60,7 @@ def ioctl_GWINSZ(fd): #### TABULATION FUNCTIONS
|
||||||
def reload_required():
|
def reload_required():
|
||||||
f = open(RELOAD_FLAG,'w')
|
f = open(RELOAD_FLAG,'w')
|
||||||
f.close()
|
f.close()
|
||||||
|
commands.getoutput(RELOAD_CMD)
|
||||||
|
|
||||||
def terminal_size(): ### decide on *some* terminal size
|
def terminal_size(): ### decide on *some* terminal size
|
||||||
cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2) # try open fds
|
cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2) # try open fds
|
||||||
|
@ -99,8 +101,6 @@ def menu(screen, size, isInstalled):
|
||||||
g.add(bb, 0, 1, padding=(1,1,0,0))
|
g.add(bb, 0, 1, padding=(1,1,0,0))
|
||||||
|
|
||||||
if bb.buttonPressed(g.runOnce()) == "exit":
|
if bb.buttonPressed(g.runOnce()) == "exit":
|
||||||
win="screen -X at 0 source $HOME/."+PKG+"/profile"
|
|
||||||
commands.getoutput(win)
|
|
||||||
return 0
|
return 0
|
||||||
else:
|
else:
|
||||||
return li.current()
|
return li.current()
|
||||||
|
@ -150,8 +150,6 @@ def profile(screen, size):
|
||||||
if bb.buttonPressed(g.runOnce()) != "cancel":
|
if bb.buttonPressed(g.runOnce()) != "cancel":
|
||||||
commands.getoutput('byobu-select-profile --set %s' % li.current())
|
commands.getoutput('byobu-select-profile --set %s' % li.current())
|
||||||
reload_required()
|
reload_required()
|
||||||
button = messagebox(screen, 60, 4, _("Message"), _(RELOAD), \
|
|
||||||
buttons=((_("Menu"), )))
|
|
||||||
return 100
|
return 100
|
||||||
|
|
||||||
def keybindings(screen, size):
|
def keybindings(screen, size):
|
||||||
|
@ -167,8 +165,6 @@ def keybindings(screen, size):
|
||||||
if bb.buttonPressed(g.runOnce()) != "cancel":
|
if bb.buttonPressed(g.runOnce()) != "cancel":
|
||||||
switch_keybindings(li.current())
|
switch_keybindings(li.current())
|
||||||
reload_required()
|
reload_required()
|
||||||
button = messagebox(screen, 60, 4, _("Message"), _(RELOAD), \
|
|
||||||
buttons=((_("Menu"), )))
|
|
||||||
return 100
|
return 100
|
||||||
|
|
||||||
def switch_keybindings(set):
|
def switch_keybindings(set):
|
||||||
|
@ -348,8 +344,6 @@ def togglestatus(screen, size):
|
||||||
count=count+1
|
count=count+1
|
||||||
writestatus(itemlist)
|
writestatus(itemlist)
|
||||||
reload_required()
|
reload_required()
|
||||||
button = messagebox(screen, 60, 4, _("Message"), _(RELOAD), \
|
|
||||||
buttons=((_("Menu"), )))
|
|
||||||
return 100
|
return 100
|
||||||
|
|
||||||
def writewindows(winlist):
|
def writewindows(winlist):
|
||||||
|
@ -478,9 +472,6 @@ def chgesc(screen, size):
|
||||||
if bb.buttonPressed(which) != "cancel":
|
if bb.buttonPressed(which) != "cancel":
|
||||||
setesckey(esc.value())
|
setesckey(esc.value())
|
||||||
reload_required()
|
reload_required()
|
||||||
button = messagebox(screen, 60, 4, _("Message"), \
|
|
||||||
_(RELOAD), \
|
|
||||||
buttons=((_("Menu"), )))
|
|
||||||
if button == "exit":
|
if button == "exit":
|
||||||
return 0
|
return 0
|
||||||
return 100
|
return 100
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -5,7 +5,11 @@ byobu (2.27) unreleased; urgency=low
|
||||||
with minor modifications (install keybindings/common as a symlink to
|
with minor modifications (install keybindings/common as a symlink to
|
||||||
f-keys)
|
f-keys)
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 17 Aug 2009 15:46:14 -0500
|
[ Dustin Kirkland ]
|
||||||
|
* byobu-config: use Derek's *awesome* "screen -X" hack to reload profiles
|
||||||
|
automatically, and drop the "reload" prompt
|
||||||
|
|
||||||
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 17 Aug 2009 16:08:53 -0500
|
||||||
|
|
||||||
byobu (2.26-0ubuntu1) karmic; urgency=low
|
byobu (2.26-0ubuntu1) karmic; urgency=low
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue