* usr/bin/purge-old-kernels:

- need to do some extra grepping when using efi kernels
* usr/share/byobu/profiles/tmux:
  - save 100K lines of scrollback, rather than 10K, which I find gets
    eclipsed too often when you actually need it
This commit is contained in:
Dustin Kirkland 2017-03-18 11:58:20 -05:00
commit 3f8ce23344
3 changed files with 8 additions and 3 deletions

7
debian/changelog vendored
View file

@ -1,6 +1,11 @@
byobu (5.116) unreleased; urgency=medium
* UNRELEASED
[ Dustin Kirkland ]
* usr/bin/purge-old-kernels:
- need to do some extra grepping when using efi kernels
* usr/share/byobu/profiles/tmux:
- save 100K lines of scrollback, rather than 10K, which I find gets
eclipsed too often when you actually need it
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 06 Feb 2017 12:22:26 -0600

View file

@ -46,7 +46,7 @@ done
# Build our list of kernel packages to purge, make sure we exclude the current running kernel
current="$(uname -r)"
VERSIONS=$(ls -f /boot/vmlinuz-* | grep -v "$current$" | sed -e "s/[^\-]*-//" -e "s/-[^\-]*$//" | sort -rh)
VERSIONS=$(ls -f /boot/vmlinuz-* | grep -v "$current$" | grep -v '.efi.signed' | sed -e "s/[^\-]*-//" -e "s/-[^\-]*$//" | sort -rh)
count=0
for v in $VERSIONS; do
count=$((count+1))

View file

@ -42,7 +42,7 @@ set-window-option -g xterm-keys on
set-option -g pane-active-border-bg $BYOBU_HIGHLIGHT
set-option -g pane-active-border-fg $BYOBU_HIGHLIGHT
set-option -g pane-border-fg $BYOBU_ACCENT
set-option -g history-limit 10000
set-option -g history-limit 100000
set-option -g display-panes-time 150
set-option -g display-panes-colour $BYOBU_ACCENT
set-option -g display-panes-active-colour $BYOBU_HIGHLIGHT