mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
Bump, add pipx
This commit is contained in:
@@ -118,6 +118,10 @@ function deb_only {
|
||||
fi
|
||||
}
|
||||
|
||||
function require_pipx {
|
||||
command -v pipx >/dev/null 2>&1 || die "Requires pipx"
|
||||
}
|
||||
|
||||
# Begin main tool selection
|
||||
case ${TOOL} in
|
||||
john)
|
||||
@@ -422,10 +426,12 @@ EOF
|
||||
add_bin_symlink docker-compose
|
||||
;;
|
||||
tldr)
|
||||
pip3 install --user tldr
|
||||
require_pipx
|
||||
pipx install tldr
|
||||
;;
|
||||
blint)
|
||||
pip3 install --user blint
|
||||
require_pipx
|
||||
pipx install blint
|
||||
;;
|
||||
dust)
|
||||
if ! command -v cargo >/dev/null 2>&1 ; then
|
||||
@@ -514,7 +520,8 @@ EOF
|
||||
cargo install igrep
|
||||
;;
|
||||
unblob)
|
||||
pip install --user unblob
|
||||
require_pipx
|
||||
pipx install unblob
|
||||
;;
|
||||
*)
|
||||
echo "Unknown tool: ${TOOL}" >/dev/stderr
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR EDITOR:vim
|
||||
SETUVAR __fish_initialized:3100
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR fish_color_autosuggestion:586e75
|
||||
SETUVAR fish_color_cancel:\x2dr
|
||||
SETUVAR fish_color_command:93a1a1
|
||||
@@ -31,3 +31,4 @@ SETUVAR fish_pager_color_completion:B3A06D
|
||||
SETUVAR fish_pager_color_description:B3A06D
|
||||
SETUVAR fish_pager_color_prefix:cyan\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||
SETUVAR fish_pager_color_selected_background:\x2dr
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
setxkbmap -option ctrl:nocaps -option compose:ralt
|
||||
test -x /usr/bin/xsettingsd && /usr/bin/xsettingsd &
|
||||
test -f "$HOME/.env" && "$HOME/.env"
|
||||
test -f "$HOME/.shenv" && "$HOME/.shenv"
|
||||
test -f "$HOME/.profile" && . "$HOME/.profile"
|
||||
|
||||
Reference in New Issue
Block a user