mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* 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:
parent
e7f6e5d6e1
commit
3f8ce23344
3 changed files with 8 additions and 3 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -1,6 +1,11 @@
|
||||||
byobu (5.116) unreleased; urgency=medium
|
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
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 06 Feb 2017 12:22:26 -0600
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ done
|
||||||
|
|
||||||
# Build our list of kernel packages to purge, make sure we exclude the current running kernel
|
# Build our list of kernel packages to purge, make sure we exclude the current running kernel
|
||||||
current="$(uname -r)"
|
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
|
count=0
|
||||||
for v in $VERSIONS; do
|
for v in $VERSIONS; do
|
||||||
count=$((count+1))
|
count=$((count+1))
|
||||||
|
|
|
@ -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-bg $BYOBU_HIGHLIGHT
|
||||||
set-option -g pane-active-border-fg $BYOBU_HIGHLIGHT
|
set-option -g pane-active-border-fg $BYOBU_HIGHLIGHT
|
||||||
set-option -g pane-border-fg $BYOBU_ACCENT
|
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-time 150
|
||||||
set-option -g display-panes-colour $BYOBU_ACCENT
|
set-option -g display-panes-colour $BYOBU_ACCENT
|
||||||
set-option -g display-panes-active-colour $BYOBU_HIGHLIGHT
|
set-option -g display-panes-active-colour $BYOBU_HIGHLIGHT
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue