mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* screen-profiles: drop special ubuntu handling
* screen-profiles-export: drop ubuntu prepending Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
parent
84c8547485
commit
5779364ef7
2 changed files with 6 additions and 6 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -1,4 +1,4 @@
|
||||||
screen-profiles (1.48) unreleased; urgency=low
|
screen-profiles (1.48-0ubuntu1) jaunty; urgency=low
|
||||||
|
|
||||||
Drop the distro name in generated profiles
|
Drop the distro name in generated profiles
|
||||||
* debian/install: fix installation of profiles
|
* debian/install: fix installation of profiles
|
||||||
|
@ -9,6 +9,8 @@ screen-profiles (1.48) unreleased; urgency=low
|
||||||
prepended
|
prepended
|
||||||
* select-screen-profile: remove the ubuntu specific profile handling
|
* select-screen-profile: remove the ubuntu specific profile handling
|
||||||
* screen: fix broken symlinks to ubuntu-* profiles
|
* screen: fix broken symlinks to ubuntu-* profiles
|
||||||
|
* screen-profiles: drop special ubuntu handling
|
||||||
|
* screen-profiles-export: drop ubuntu prepending
|
||||||
|
|
||||||
* screen: default to the light profile, if unspecified; this should be
|
* screen: default to the light profile, if unspecified; this should be
|
||||||
acceptable now that the F9:Menu prompt is always shown, and from there,
|
acceptable now that the F9:Menu prompt is always shown, and from there,
|
||||||
|
@ -22,8 +24,9 @@ screen-profiles (1.48) unreleased; urgency=low
|
||||||
* bin/mem-available: fix subtle bug where whitespace is printed if in a
|
* bin/mem-available: fix subtle bug where whitespace is printed if in a
|
||||||
totally default (no status file) configuration
|
totally default (no status file) configuration
|
||||||
* screen-profiles-status.1, debian/rules: manpage added
|
* screen-profiles-status.1, debian/rules: manpage added
|
||||||
|
* screen-profiles-export: randomly generate tarball name, if unspecified
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 21 Apr 2009 15:35:34 -0500
|
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 21 Apr 2009 16:14:37 -0500
|
||||||
|
|
||||||
screen-profiles (1.47-0ubuntu1) jaunty; urgency=low
|
screen-profiles (1.47-0ubuntu1) jaunty; urgency=low
|
||||||
|
|
||||||
|
|
|
@ -126,9 +126,6 @@ def profile(screen, size):
|
||||||
li = Listbox(height = 8, width = 60, scroll = 1, returnExit = 1)
|
li = Listbox(height = 8, width = 60, scroll = 1, returnExit = 1)
|
||||||
|
|
||||||
for choice in commands.getoutput('select-screen-profile -l').splitlines():
|
for choice in commands.getoutput('select-screen-profile -l').splitlines():
|
||||||
if choice == "ubuntu":
|
|
||||||
li.append(choice+("-light"), choice)
|
|
||||||
else:
|
|
||||||
li.append(choice, choice)
|
li.append(choice, choice)
|
||||||
|
|
||||||
bb = ButtonBar(screen, ((_("Apply"), "apply"), (_("Cancel"), "cancel")), compact = 1)
|
bb = ButtonBar(screen, ((_("Apply"), "apply"), (_("Cancel"), "cancel")), compact = 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue