Add some neat new tools
This commit is contained in:
parent
9954a27a64
commit
e0f5b62782
|
@ -9,3 +9,5 @@ command -v fish >/dev/null 2>&1 && grep fish /etc/shells >/dev/null 2>&1 && {
|
|||
echo " If you're in bash intentionally for some reason, then ignore this message."
|
||||
}
|
||||
. "$HOME/.cargo/env"
|
||||
|
||||
source /home/daniel/.home/.config/broot/launcher/bash/br
|
||||
|
|
|
@ -51,6 +51,7 @@ l common/scim/lua $h/.scim/lua
|
|||
l common/nnn $c/nnn
|
||||
l common/kak $c/kak
|
||||
l common/helix $c/helix
|
||||
l common/gitui $c/gitui
|
||||
l common/gpg/agent.conf $h/.gnupg/gpg-agent.conf
|
||||
chmod og-rwx ~/.gnupg
|
||||
l common/htop/rc $c/htop/htoprc
|
||||
|
|
|
@ -195,6 +195,10 @@ function __ssh_agent_start -d "start a new ssh agent"
|
|||
true # suppress errors from setenv, i.e. set -gx
|
||||
end
|
||||
|
||||
if set --query KITTY_PID
|
||||
alias ssh "kitty +kitten ssh"
|
||||
end
|
||||
|
||||
function fish_ssh_agent --description "Start ssh-agent if not started yet, or uses already started ssh-agent."
|
||||
if test -z "$SSH_ENV"
|
||||
set -xg SSH_ENV $HOME/.ssh/environment
|
||||
|
|
23
common/gitui/mocha.ron
Normal file
23
common/gitui/mocha.ron
Normal file
|
@ -0,0 +1,23 @@
|
|||
(
|
||||
selected_tab: Reset,
|
||||
command_fg: Rgb(205, 214, 244),
|
||||
selection_bg: Rgb(88, 91, 112),
|
||||
selection_fg: Rgb(205, 214, 244),
|
||||
cmdbar_bg: Rgb(24, 24, 37),
|
||||
cmdbar_extra_lines_bg: Rgb(24, 24, 37),
|
||||
disabled_fg: Rgb(127, 132, 156),
|
||||
diff_line_add: Rgb(166, 227, 161),
|
||||
diff_line_delete: Rgb(243, 139, 168),
|
||||
diff_file_added: Rgb(249, 226, 175),
|
||||
diff_file_removed: Rgb(235, 160, 172),
|
||||
diff_file_moved: Rgb(203, 166, 247),
|
||||
diff_file_modified: Rgb(250, 179, 135),
|
||||
commit_hash: Rgb(180, 190, 254),
|
||||
commit_time: Rgb(186, 194, 222),
|
||||
commit_author: Rgb(116, 199, 236),
|
||||
danger_fg: Rgb(243, 139, 168),
|
||||
push_gauge_bg: Rgb(137, 180, 250),
|
||||
push_gauge_fg: Rgb(30, 30, 46),
|
||||
tag_fg: Rgb(245, 224, 220),
|
||||
branch_fg: Rgb(148, 226, 213)
|
||||
)
|
23
common/gitui/theme.ron
Normal file
23
common/gitui/theme.ron
Normal file
|
@ -0,0 +1,23 @@
|
|||
(
|
||||
selected_tab: Reset,
|
||||
command_fg: Rgb(205, 214, 244),
|
||||
selection_bg: Rgb(88, 91, 112),
|
||||
selection_fg: Rgb(205, 214, 244),
|
||||
cmdbar_bg: Rgb(24, 24, 37),
|
||||
cmdbar_extra_lines_bg: Rgb(24, 24, 37),
|
||||
disabled_fg: Rgb(127, 132, 156),
|
||||
diff_line_add: Rgb(166, 227, 161),
|
||||
diff_line_delete: Rgb(243, 139, 168),
|
||||
diff_file_added: Rgb(249, 226, 175),
|
||||
diff_file_removed: Rgb(235, 160, 172),
|
||||
diff_file_moved: Rgb(203, 166, 247),
|
||||
diff_file_modified: Rgb(250, 179, 135),
|
||||
commit_hash: Rgb(180, 190, 254),
|
||||
commit_time: Rgb(186, 194, 222),
|
||||
commit_author: Rgb(116, 199, 236),
|
||||
danger_fg: Rgb(243, 139, 168),
|
||||
push_gauge_bg: Rgb(137, 180, 250),
|
||||
push_gauge_fg: Rgb(30, 30, 46),
|
||||
tag_fg: Rgb(245, 224, 220),
|
||||
branch_fg: Rgb(148, 226, 213)
|
||||
)
|
|
@ -7,14 +7,10 @@
|
|||
# sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
|
||||
# fi
|
||||
|
||||
paru -Sy --needed --noconfirm \
|
||||
pacman -Sy --needed --noconfirm \
|
||||
watchexec `# Filesystem Event Wacher` \
|
||||
fwupd `# Firmware Update Manager` \
|
||||
ncdu `# Disk Usage Analyzer` \
|
||||
efibootmgr efivar `# UEFI Boot CLI Stuff` \
|
||||
weechat `# IRC Client` \
|
||||
aria2 `# Downloads Manager` \
|
||||
wezterm `# Terminal` \
|
||||
tailscale `# VPN` \
|
||||
ripgrep `# Code Search Utilities` \
|
||||
git-delta `# Better Diff Viewer` \
|
||||
|
@ -26,19 +22,12 @@ paru -Sy --needed --noconfirm \
|
|||
htop bottom `# Process Management and System Resources Monitoring` \
|
||||
openssh mosh `# Remote Access` \
|
||||
openssl `# Crypto` \
|
||||
rtx-bin `# Version Manager` \
|
||||
oath-toolkit `# TOTP Utility` \
|
||||
pass pass-otp `# Password Management` \
|
||||
sc-im `# Spreadsheets` \
|
||||
cloc `# For counting lines of code` \
|
||||
pigz `# Multicore Compression Utility` \
|
||||
hexyl `# CLI Hex Viewer` \
|
||||
rsync rclone `# File Transfer` \
|
||||
helix `# Text Editors` \
|
||||
unzip `# Simple Unzipping` \
|
||||
zellij `# Terminal Multiplexer` \
|
||||
nmap traceroute iputils `# Networking Utilities` \
|
||||
kitty-terminfo `# Better Terminal Emulator` \
|
||||
dog bind nmap traceroute iputils `# Networking Utilities` \
|
||||
curl wget xh `# HTTP Utilities` \
|
||||
w3m `# Web Browser` \
|
||||
jq gron `# JSON Utilities` \
|
||||
|
@ -46,10 +35,13 @@ paru -Sy --needed --noconfirm \
|
|||
inotify-tools `# Filesystem Watching` \
|
||||
fish `# Shell` \
|
||||
time `# GNU Time` \
|
||||
fortune-mod fortune-mod-archlinux `# Fortune` \
|
||||
fortune-mod `# Fortune` \
|
||||
sysstat `# System Statistics` \
|
||||
reflector `# Simple Pacman Mirror Management` \
|
||||
gnu-netcat socat websocat `# Socket Utilities` \
|
||||
nnn `# CLI File Manager` \
|
||||
avahi nss-mdns `# mDNS and Network Discovery Utilities` \
|
||||
dua-cli `# Disj Usage Abalyzer` \
|
||||
man-db man-pages `# Come On, Man!`
|
||||
|
||||
# TODO: if paru? rtx-bin
|
||||
|
|
|
@ -11,3 +11,15 @@ yn() {
|
|||
}
|
||||
|
||||
yn "Do you want to install UI packages?" && "$dir/optional/ui-packages.bash"
|
||||
|
||||
paru -Sy --needed --noconfirm \
|
||||
weechat `# IRC Client` \
|
||||
rtx-bin `# Version Manager` \
|
||||
bluetuith `# Disk Usage Analyzer` \
|
||||
aria2 `# Downloads Manager` \
|
||||
oath-toolkit `# TOTP Utility` \
|
||||
pass pass-otp `# Password Management` \
|
||||
sc-im `# Spreadsheets` \
|
||||
cloc `# For counting lines of code` \
|
||||
gitui `# Git TUI` \
|
||||
pigz `# Multicore Compression Utility` \
|
||||
|
|
|
@ -28,7 +28,6 @@ paru -Sy --needed \
|
|||
hunspell-en_US `# Firefox Spell Checking` \
|
||||
passff-host `# pass integration in Firefox` \
|
||||
kitty `# Terminal Emulator` \
|
||||
wezterm `# Terminal Emulator` \
|
||||
pulsemixer pavucontrol pamixer libpulse `# Pulseaudio Controls` \
|
||||
playerctl `# Media Keys Controls` \
|
||||
feh `# Image Viewer` \
|
||||
|
@ -40,5 +39,17 @@ paru -Sy --needed \
|
|||
slurp grim wl-clipboard `# Screenshots and Clipboard Utilities` \
|
||||
pipewire pipewire-pulse wireplumber `# Audio` \
|
||||
xdg-desktop-portal xdg-desktop-portal-wlr `# Screensharing` \
|
||||
obs-studio `# Live Streaming` \
|
||||
eww-wayland `# Bar & Widgets`
|
||||
obs-studio `# Live Streaming`
|
||||
|
||||
# eww-wayland `# Bar & Widgets`
|
||||
# stopped using eww since it didn't _easily_ support wayland workspaces
|
||||
# laziness!
|
||||
|
||||
# stopped using hyprland due to some weird glitchy stuff that would occasionally
|
||||
# start happening where keypresses would get doubled
|
||||
# I don't think I filed an issue
|
||||
|
||||
# wezterm `# Terminal Emulator` \
|
||||
# stopped using wezterm due to issues with splits plus daemon sessions
|
||||
# https://github.com/wez/wezterm/issues/3771
|
||||
# there may have been other issues? not sure
|
||||
|
|
Reference in a new issue