Compare commits
97 Commits
e797bc1801
...
master
Author | SHA1 | Date | |
---|---|---|---|
d0b7f01cc8 | |||
29fc927053 | |||
841557d6f6 | |||
e95b46cb01 | |||
511f210280 | |||
3acbf0d275 | |||
3dec19aa55 | |||
e58fb3ad35 | |||
611af2412d | |||
a7eddf83c3 | |||
38e7b666cf | |||
5c0ac04bab | |||
b858d798ae | |||
03c2016471 | |||
72056fc85b | |||
a74aec2dd2 | |||
7578995c96 | |||
3490a06700 | |||
3800dd08fb | |||
d9fa71c045 | |||
6b56f14ffa | |||
396627f4cb | |||
b214a4541b | |||
a11f9cd7e0 | |||
2983c7d19e | |||
231bab7a13 | |||
d158b91169 | |||
3fe8bfd9d7 | |||
88a7fe6cfd | |||
978ac74893 | |||
e041d69918 | |||
37a3e43fb7 | |||
561933f814 | |||
d452db49a5 | |||
6e1219e0b5 | |||
edb70737e9 | |||
c934ad515b | |||
bf63e412c8 | |||
3d966d48aa | |||
c50c23ba5c | |||
0d03127d06 | |||
b314a6506d | |||
cad7d6fc85 | |||
e074cf8e11 | |||
adfa2a9144 | |||
ea2efd1145 | |||
6c4e8102c7 | |||
12ae5c9728 | |||
4da7aad44b | |||
ed4a0674ab | |||
0c7367492c | |||
ddc2205035 | |||
9a0a0e69de | |||
41c1cff77c | |||
5b4449d7e9 | |||
b472f6b758 | |||
630a31ff35 | |||
89d2579bc8 | |||
6d3e8a7a9b | |||
27fd6700ff | |||
95faf30824 | |||
7b37d7b49f | |||
862fca3554 | |||
17681ff33b | |||
fd8ef13162 | |||
abb3c811f9 | |||
abe36b2490 | |||
913a96cb27 | |||
3064dd2b70 | |||
e0de67fad7 | |||
d0574e433a | |||
d40916c963 | |||
dfbd41e132 | |||
c007b4732d | |||
76a9a37e81 | |||
5d541a845a | |||
6a05fefc0e | |||
8420f1f1c1 | |||
38e261d753 | |||
3469a349d2 | |||
632021c3ee | |||
eb382bba08 | |||
aaa52a48b3 | |||
aedb580510 | |||
59a1d3bb83 | |||
79f3ba513f | |||
7328245064 | |||
cfbecf8a1a | |||
fe2ff0fde4 | |||
c3b7c57e2e | |||
0de1c0f2d3 | |||
614b78873a | |||
ac5879cead | |||
2b93f4ab3b | |||
dc19de13ff | |||
c031affb9f | |||
9724a9dddd |
@ -1 +0,0 @@
|
|||||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
23
dot_bashrc
23
dot_bashrc
@ -1,23 +0,0 @@
|
|||||||
# If not running interactively, don't do anything
|
|
||||||
[[ $- != *i* ]] && return
|
|
||||||
|
|
||||||
# Required init for cli programs
|
|
||||||
# Do not install completions unless no working, check /usr/share/bash-completion
|
|
||||||
eval "$(zoxide init bash)"
|
|
||||||
|
|
||||||
# Set aliases
|
|
||||||
alias ls="eza --icons --long"
|
|
||||||
alias grep="ugrep"
|
|
||||||
alias cd="z"
|
|
||||||
alias cat="bat -p"
|
|
||||||
alias update-mirrors="rate-mirrors arch | sudo tee /etc/pacman.d/mirrorlist; rate-mirrors chaotic-aur | sudo tee /etc/pacman.d/chaotic-mirrorlist"
|
|
||||||
alias update="paru; paru -c"
|
|
||||||
alias l="ls --ignore-glob '$([ -f .hidden ] && cat .hidden | tr '\n' '|')'"
|
|
||||||
|
|
||||||
|
|
||||||
# XDG stuff
|
|
||||||
export HISTFILE="${XDG_STATE_HOME}"/bash/history
|
|
||||||
|
|
||||||
# Helpful tool: https://bash-prompt-generator.org
|
|
||||||
# On github: https://github.com/Scriptim/bash-prompt-generator
|
|
||||||
PS1='[\u@\h \w]\$ '
|
|
161
dot_config/bash/dot_bash_aliases
Normal file
161
dot_config/bash/dot_bash_aliases
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
# shellcheck shell=bash
|
||||||
|
# shellcheck disable=SC1090,SC1091,SC2034
|
||||||
|
|
||||||
|
# Set aliases
|
||||||
|
hash ug 2>/dev/null && alias grep="ugrep"
|
||||||
|
hash bat 2>/dev/null && alias cat="bat -p"
|
||||||
|
hash zoxide 2>/dev/null && alias cd="z"
|
||||||
|
hash fd 2>/dev/null && alias find="fd"
|
||||||
|
hash numbat 2>/dev/null && alias bc="numbat" # numbat is a bit more than just a bc alternative
|
||||||
|
# hash eva 2>/dev/null && alias bc="eva" # eva is a bc alternative, but don't want to switch yet
|
||||||
|
hash fend 2>/dev/null && alias units="fend" # fend's syntax is a bit different from units, don't want to switch yet
|
||||||
|
# hash sd 2>/dev/null && alias sed="sd" # Disabled because some scripts use sed, and don't set the -i flag
|
||||||
|
hash dust 2>/dev/null && alias du="dust"
|
||||||
|
hash erd 2>/dev/null && alias tree="erd"
|
||||||
|
hash dua 2>/dev/null && alias duai="dua interactive"
|
||||||
|
hash tealdeer 2>/dev/null && alias tldr="tealdeer"
|
||||||
|
hash hexyl 2>/dev/null && alias xxd="hexyl"
|
||||||
|
hash xdg-open 2>/dev/null && alias start="xdg-open" && alias open="xdg-open"
|
||||||
|
hash micro 2>/dev/null && alias edit="micro" && alias nano="micro"
|
||||||
|
hash nvim 2>/dev/null && alias vim="nvim" && alias vi="nvim"
|
||||||
|
hash trash-put 2>/dev/null && alias rm="trash-put" && alias tp="trash-put"
|
||||||
|
hash gallery-dl 2>/dev/null && alias gallery-dl="gallery-dl --cookies-from-browser firefox"
|
||||||
|
|
||||||
|
if hash lsb_release 2>/dev/null; then
|
||||||
|
if [[ $(lsb_release -si) =~ "Arch" ]]; then
|
||||||
|
alias update-mirrors="rate-mirrors arch | sudo tee /etc/pacman.d/mirrorlist; rate-mirrors chaotic-aur | sudo tee /etc/pacman.d/chaotic-mirrorlist"
|
||||||
|
# System package managers
|
||||||
|
|
||||||
|
hash pacman 2>/dev/null && command="sudo pacman -Syu; sudo pacman -Sc; "
|
||||||
|
hash pamac 2>/dev/null && command="pamac update; pamac clean; "
|
||||||
|
hash yay 2>/dev/null && command="yay; yay -Sc; "
|
||||||
|
hash paru 2>/dev/null && command="paru; paru -c; "
|
||||||
|
elif [[ $(lsb_release -si) =~ "Debian" || $(lsb_release -si) =~ "Ubuntu" ]]; then
|
||||||
|
alias update-mirrors="sudo nala fetch --auto -c US -c CA"
|
||||||
|
|
||||||
|
# System package managers
|
||||||
|
hash apt 2>/dev/null && command="sudo apt update && sudo apt upgrade && sudo apt autoremove; "
|
||||||
|
hash aptitude 2>/dev/null && command="sudo aptitude update && sudo aptitude upgrade && sudo aptitude autoremove; "
|
||||||
|
hash nala 2>/dev/null && command="sudo nala update && sudo nala upgrade && sudo nala autoremove; "
|
||||||
|
fi
|
||||||
|
# Non system packages
|
||||||
|
hash flatpak 2>/dev/null && command+="flatpak update && flatpak uninstall --unused; "
|
||||||
|
hash snap 2>/dev/null && command+="sudo snap refresh && sudo snap remove --purge $(snap list --all | awk '/^.*disabled/{print $1}'); "
|
||||||
|
|
||||||
|
# Firmware
|
||||||
|
hash fwupdmgr 2>/dev/null && command+="fwupdmgr refresh --force && fwupdmgr update;"
|
||||||
|
|
||||||
|
# We want this to be expanded to the command, as the command is not very helpful
|
||||||
|
# shellcheck disable=SC2139
|
||||||
|
alias update="$command"
|
||||||
|
elif [[ "$TERMUX_VERSION" ]]; then
|
||||||
|
# Termux, special case
|
||||||
|
alias update-mirrors="termux-change-repo"
|
||||||
|
alias update="pkg upgrade && pkg autoclean"
|
||||||
|
# Non privaledged environemnt, have to use local package managers like eget, nix, etc
|
||||||
|
else
|
||||||
|
alias update-mirrors="echo 'No mirrors to update'"
|
||||||
|
alias update='eget -D; . "$HOME"/.config/eget/post_install.sh'
|
||||||
|
alias nix-shell-local="nix-user-chroot ~/.local/share/nix bash"
|
||||||
|
|
||||||
|
if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then
|
||||||
|
. ~/.nix-profile/etc/profile.d/nix.sh
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if hash eza 2>/dev/null; then
|
||||||
|
function ls {
|
||||||
|
if [[ "$*" =~ "-a" || "$*" =~ "-A" || "$*" =~ "--all" || "$*" =~ "--almost-all" ]]; then
|
||||||
|
eza --icons --long "$@"
|
||||||
|
else
|
||||||
|
eza --icons --long --ignore-glob "$([[ -f .hidden ]] && < .hidden tr '\n' '|')" "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
|
if hash sigtool 2>/dev/null; then
|
||||||
|
# clamav-exception-add <file>
|
||||||
|
# Adds a file to the clamav user-defined exceptions list
|
||||||
|
# Usage: clamav-exception-add <file>
|
||||||
|
# Example: clamav-exception-add /path/to/file
|
||||||
|
# Note: This requires root privileges, so you may need to run it with sudo
|
||||||
|
function clamav-exception-add {
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
echo "Usage: clamav-exception-add <file>"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
if [[ ! -f $1 ]]; then
|
||||||
|
echo "File not found: $1"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
sudo bash -c "sigtool --sha256 $1 >> /var/lib/clamav/user-defined-exceptions.sfp"
|
||||||
|
}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Dotfiles management
|
||||||
|
# TODO: Rewrite to use bash read instead of zsh read
|
||||||
|
if hash chezmoi 2>/dev/null; then
|
||||||
|
function .add {
|
||||||
|
if [[ -z $1 || -z $2 ]]; then
|
||||||
|
echo "Usage: .add <file> <message>"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
chezmoi add "$1"
|
||||||
|
chezmoi git add .
|
||||||
|
chezmoi git status
|
||||||
|
echo -n "Commit changes? [y/N] "
|
||||||
|
read -r answer
|
||||||
|
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||||
|
chezmoi git -- commit -m "$2"
|
||||||
|
echo -n "Push changes? [y/N] "
|
||||||
|
read -r answer
|
||||||
|
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||||
|
chezmoi git push
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
# TODO: Rewrite to use bash read instead of zsh read
|
||||||
|
function .re-add {
|
||||||
|
if [[ -z $1 ]]; then
|
||||||
|
echo "Usage: .re-add <message>"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
chezmoi re-add
|
||||||
|
chezmoi git status
|
||||||
|
chezmoi git diff
|
||||||
|
echo -n "Commit changes? [y/N] "
|
||||||
|
read -r answer
|
||||||
|
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||||
|
chezmoi git -- commit -am "$1"
|
||||||
|
echo -n "Push changes? [y/N] "
|
||||||
|
read -r answer
|
||||||
|
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||||
|
chezmoi git push
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
alias .push="chezmoi git push"
|
||||||
|
alias .pull="chezmoi git pull"
|
||||||
|
alias .status="chezmoi git status"
|
||||||
|
alias .diff="chezmoi git diff"
|
||||||
|
alias .update="chezmoi update"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Other aliases
|
||||||
|
alias rce='xdg-open $HOME/.bashrc && xdg-open $HOME/.zshrc && xdg-open $XDG_CONFIG_HOME/bash/.bash_aliases'
|
||||||
|
alias ftpd-simple='python -m pyftpdlib'
|
||||||
|
|
||||||
|
|
||||||
|
# XDG aliases
|
||||||
|
alias wget='wget --hsts-file="$XDG_DATA_HOME"/wget-hsts'
|
||||||
|
alias yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME"/yarn/config'
|
||||||
|
alias units='units --history "$XDG_DATA_HOME"/units_history'
|
||||||
|
alias nvidia-settings='nvidia-settings --config="$XDG_CONFIG_HOME"/nvidia/settings'
|
||||||
|
alias adb='HOME="$XDG_DATA_HOME"/android adb'
|
||||||
|
|
||||||
|
# If we have local rust installed, set it up
|
||||||
|
if [[ -f $XDG_DATA_HOME/cargo/env ]]; then
|
||||||
|
. "$XDG_DATA_HOME/cargo/env"
|
||||||
|
fi
|
52
dot_config/bash/dot_bashrc
Normal file
52
dot_config/bash/dot_bashrc
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
# shellcheck shell=bash
|
||||||
|
# shellcheck disable=SC1090,SC1091,SC2034
|
||||||
|
|
||||||
|
# Add local bin to PATH
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
# Workaround for SSH/Login sessions
|
||||||
|
# https://github.com/systemd/systemd/issues/7641#issuecomment-680694017
|
||||||
|
set -a
|
||||||
|
if shopt -q login_shell && [[ -f /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator ]]; then
|
||||||
|
eval "$(/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator)"
|
||||||
|
# Fallback to to manually parsing environment.d
|
||||||
|
elif [[ -z "$XDG_DATA_HOME" && -z "$XDG_CONFIG_HOME" && -z "$XDG_STATE_HOME" && -z "$XDG_CACHE_HOME" ]]; then
|
||||||
|
eval "$(<"$HOME/.config/environment.d/xdg.conf")"
|
||||||
|
fi
|
||||||
|
set +a
|
||||||
|
|
||||||
|
# If we have local bash-completion, use it
|
||||||
|
[[ -f $HOME/.local/bin/bash_completion ]] && . "$HOME/.local/bin/bash_completion"
|
||||||
|
|
||||||
|
# Bash XDG history
|
||||||
|
HISTFILE="$XDG_STATE_HOME"/bash/history
|
||||||
|
HISTSIZE=10000
|
||||||
|
SAVEHIST=10000
|
||||||
|
HISTCONTROL=ignoredups:erasedups
|
||||||
|
shopt -s histappend
|
||||||
|
|
||||||
|
# Helpful tool: https://bash-prompt-generator.org
|
||||||
|
# On github: https://github.com/Scriptim/bash-prompt-generator
|
||||||
|
PS1='[\u@\h \w]\$ '
|
||||||
|
|
||||||
|
[[ -f $XDG_CONFIG_HOME/bash/.bash_aliases ]] && source "$XDG_CONFIG_HOME/bash/.bash_aliases"
|
||||||
|
|
||||||
|
# Bash specific alias
|
||||||
|
alias rc='source "$XDG_CONFIG_HOME"/bash/.bashrc'
|
||||||
|
|
||||||
|
# https://github.com/pkasemir/find-the-command
|
||||||
|
[[ -f /usr/share/doc/find-the-command/ftc.bash ]] && source /usr/share/doc/find-the-command/ftc.bash noupdate quiet info
|
||||||
|
# https://wiki.archlinux.org/title/Pkgfile#Command_not_found
|
||||||
|
# [[ -f /usr/share/doc/pkgfile/command-not-found.bash ]] && source /usr/share/doc/pkgfile/command-not-found.bash
|
||||||
|
|
||||||
|
# Starship after defining custom prompt, easy to remove
|
||||||
|
hash starship 2>/dev/null && eval "$(starship init bash)"
|
||||||
|
|
||||||
|
# Zoxide init has to be last
|
||||||
|
hash zoxide 2>/dev/null && eval "$(zoxide init bash)"
|
||||||
|
|
||||||
|
# Return 0 to indicate success that the script has been sourced to completion
|
||||||
|
return 0
|
23
dot_config/discord/settings.json
Normal file
23
dot_config/discord/settings.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"chromiumSwitches": {},
|
||||||
|
"IS_MAXIMIZED": true,
|
||||||
|
"IS_MINIMIZED": false,
|
||||||
|
"WINDOW_BOUNDS": {
|
||||||
|
"x": 4127,
|
||||||
|
"y": 144,
|
||||||
|
"width": 1280,
|
||||||
|
"height": 720
|
||||||
|
},
|
||||||
|
"OPEN_ON_STARTUP": false,
|
||||||
|
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true,
|
||||||
|
"SKIP_HOST_UPDATE": true,
|
||||||
|
"MIN_WIDTH": 940,
|
||||||
|
"MIN_HEIGHT": 500,
|
||||||
|
"openasar": {
|
||||||
|
"setup": true,
|
||||||
|
"quickstart": true
|
||||||
|
},
|
||||||
|
"trayBalloonShown": true,
|
||||||
|
"BACKGROUND_COLOR": "#000000",
|
||||||
|
"enableHardwareAcceleration": true
|
||||||
|
}
|
110
dot_config/eget/eget.toml
Normal file
110
dot_config/eget/eget.toml
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
[global]
|
||||||
|
target = "~/.local/bin"
|
||||||
|
upgrade_only = true
|
||||||
|
|
||||||
|
["zyedidia/eget"]
|
||||||
|
|
||||||
|
["zyedidia/micro"]
|
||||||
|
asset_filters = [ "static", ".tar.gz" , "^sha" ]
|
||||||
|
|
||||||
|
["ip7z/7zip"]
|
||||||
|
# Currently not working as 7zip packages use xz filters unsupported by eget/xz go library
|
||||||
|
#file = "7zzs"
|
||||||
|
#target = "~/.local/bin/7z"
|
||||||
|
download_only = true
|
||||||
|
|
||||||
|
["sharkdp/bat"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["BurntSushi/ripgrep"]
|
||||||
|
|
||||||
|
["sharkdp/fd"]
|
||||||
|
asset_filters = [ "gnu" ]
|
||||||
|
|
||||||
|
["sharkdp/hyperfine"]
|
||||||
|
asset_filters = [ "gnu" ]
|
||||||
|
|
||||||
|
["ajeetdsouza/zoxide"]
|
||||||
|
|
||||||
|
["neovim/neovim"]
|
||||||
|
asset_filters = [ "x86_64" ]
|
||||||
|
target = "~/.local/bin/nvim"
|
||||||
|
|
||||||
|
["konosubakonoakua/ncdu-zig"]
|
||||||
|
target = "~/.local/bin/ncdu"
|
||||||
|
|
||||||
|
["eza-community/eza"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["starship/starship"]
|
||||||
|
asset_filters = [ "gnu" ]
|
||||||
|
|
||||||
|
["Byron/dua-cli"]
|
||||||
|
|
||||||
|
["doy/rbw"]
|
||||||
|
|
||||||
|
["twpayne/chezmoi"]
|
||||||
|
asset_filters = [ "glibc", ".tar.gz" ]
|
||||||
|
|
||||||
|
["scop/bash-completion"]
|
||||||
|
# Needs manual intervention to install, as its a bash script with a subfolder containing completions
|
||||||
|
download_only = true
|
||||||
|
asset_filters = [ ".tar.xz" ]
|
||||||
|
|
||||||
|
["srevinsaju/Firefox-Appimage"]
|
||||||
|
target = "~/.local/bin/firefox"
|
||||||
|
tag = "firefox"
|
||||||
|
asset_filters = [ ".AppImage", "^zsync" ]
|
||||||
|
|
||||||
|
["BtbN/FFmpeg-Builds"]
|
||||||
|
asset_filters = [ "^lgpl", "shared", "master", ".tar.xz" ]
|
||||||
|
download_only = true # Shared libraries aren't extracted correctly, need to do in post install script
|
||||||
|
|
||||||
|
["romkatv/zsh-bin"]
|
||||||
|
asset_filters = [ "^asc" ]
|
||||||
|
# all = true
|
||||||
|
file = "bin/zsh"
|
||||||
|
|
||||||
|
["xyproto/gendesk"]
|
||||||
|
asset_filters = [ "static" ]
|
||||||
|
|
||||||
|
["neovide/neovide"]
|
||||||
|
|
||||||
|
["valicm/VSCode-AppImage"]
|
||||||
|
asset_filters = [ ".AppImage", "^zsync" ]
|
||||||
|
target = "~/.local/bin/code"
|
||||||
|
|
||||||
|
#["containers/podman"]
|
||||||
|
# target = "~/.local/bin/podman"
|
||||||
|
|
||||||
|
#["89luca89/lilipod"]
|
||||||
|
# target = "~/.local/bin/lilipod"
|
||||||
|
|
||||||
|
["sharkdp/numbat"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["sharkdp/hexyl"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["chmln/sd"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["bootandy/dust"]
|
||||||
|
asset_filters = [ "gnu", ".tar.gz" ]
|
||||||
|
|
||||||
|
["tealdeer-rs/tealdeer"]
|
||||||
|
|
||||||
|
["nushell/nushell"]
|
||||||
|
asset_filters = [ "musl", ".tar.gz" ]
|
||||||
|
all = true
|
||||||
|
|
||||||
|
# TODO: Change to no extract so I can setup shared librarys and terminfo etc, as well as get kitten binary
|
||||||
|
["kovidgoyal/kitty"]
|
||||||
|
asset_filters = [ "^sig", "^kitten", "x86_64" ]
|
||||||
|
|
||||||
|
["nix-community/nix-user-chroot"]
|
||||||
|
asset_filters = [ "x86_64", "musl" ]
|
||||||
|
|
||||||
|
["fish-shell/fish-shell"]
|
||||||
|
asset_filters = [ "x86_64", "static" ]
|
||||||
|
all = true
|
76
dot_config/eget/executable_post_install.sh
Normal file
76
dot_config/eget/executable_post_install.sh
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
# Non github dependancies
|
||||||
|
if ! hash poetry 2>/dev/null;then
|
||||||
|
pipx install poetry
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! hash rustup 2>/dev/null;then
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Temporarily change directory
|
||||||
|
pushd $HOME/.local/bin > /dev/null
|
||||||
|
|
||||||
|
# Extract what eget could not
|
||||||
|
|
||||||
|
# Handle 7z
|
||||||
|
if compgen -G "7z*tar*" > /dev/null; then
|
||||||
|
# Extract 7z
|
||||||
|
tar xf 7z*tar* 7zzs
|
||||||
|
# Remove/rename extracted 7zzs (7z statically linked) to 7z
|
||||||
|
mv -f 7zzs 7z
|
||||||
|
# Remove archive
|
||||||
|
rm -r 7z*tar*
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Handle bash_completion
|
||||||
|
if compgen -G "bash-completion*tar*" > /dev/null; then
|
||||||
|
# Extract bash-completion
|
||||||
|
tar xf bash-completion*tar*
|
||||||
|
|
||||||
|
# Remove old bash_completion
|
||||||
|
rm -r bash_completion bash_completion.d completions
|
||||||
|
|
||||||
|
# Move new bash_completion
|
||||||
|
mv -f bash-completion*/bash_completion .
|
||||||
|
mv -f bash-completion*/bash_completion.d .
|
||||||
|
mv -f bash-completion*/completions .
|
||||||
|
|
||||||
|
# Remove extracted files
|
||||||
|
rm -r bash-completion-*
|
||||||
|
|
||||||
|
# Make bash_completion executable
|
||||||
|
chmod +x bash_completion
|
||||||
|
fi
|
||||||
|
|
||||||
|
if compgen -G "ffmpeg*tar*" > /dev/null; then
|
||||||
|
# Extract ffmpeg
|
||||||
|
tar xf ffmpeg*tar*
|
||||||
|
|
||||||
|
# Handle shared libraries
|
||||||
|
rsync --remove-source-files --links $(fd --glob "*.so*") ../lib
|
||||||
|
|
||||||
|
# Binaries
|
||||||
|
mv -f ffmpeg*/bin/* .
|
||||||
|
|
||||||
|
# Remove archive
|
||||||
|
rm -r ffmpeg*tar*
|
||||||
|
|
||||||
|
# Remove extracted files
|
||||||
|
rm -r ffmpeg-*
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Gen Desktop files
|
||||||
|
gendesk -f -n --pkgname "firefox" --name "Firefox" --exec "firefox %u" --icon "firefox" --categories "Network" --comment "Firefox Web Browser" --genericname "Web Browser"
|
||||||
|
gendesk -f -n --pkgname "neovide" --name "Neovide" --exec "neovide %F" --icon "neovide" --categories "TextEditor;Development" --comment "Neovim GUI" --genericname "Neovim GUI"
|
||||||
|
gendesk -f -n --pkgname "code" --name "Visual Studio Code" --exec "code %F" --icon "vscode" --categories "TextEditor;Development" --comment "Visual Studio Code" --genericname "Code Editor"
|
||||||
|
gendesk -f -n --pkgname "kitty" --name "Kitty" --exec "kitty" --icon "kitty" --categories "Utility" --comment "Kitty Terminal Emulator" --genericname "Terminal Emulator"
|
||||||
|
gendesk -f -n --pkgname "micro" --name "Micro" --exec "micro %F" --icon "micro" --categories "TextEditor;Development" --comment "Micro Text Editor" --genericname "Text Editor" --terminal=true
|
||||||
|
|
||||||
|
# Move desktop files to applications directory
|
||||||
|
rsync --remove-source-files *.desktop ../share/applications
|
||||||
|
|
||||||
|
# Unchange directory
|
||||||
|
popd > /dev/null
|
5
dot_config/environment.d/ssh.conf.tmpl
Normal file
5
dot_config/environment.d/ssh.conf.tmpl
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
|
||||||
|
{{ if lookPath "ksshaskpass" -}}
|
||||||
|
SSH_ASKPASS={{- lookPath "ksshaskpass" }}
|
||||||
|
SSH_ASKPASS_REQUIRE=prefer
|
||||||
|
{{- end -}}
|
@ -1 +0,0 @@
|
|||||||
SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/ssh-agent.socket
|
|
@ -12,7 +12,6 @@ GOPATH=$XDG_DATA_HOME/go
|
|||||||
GTK2_RC_FILES=$XDG_CONFIG_HOME/gtk-2.0/gtkrc
|
GTK2_RC_FILES=$XDG_CONFIG_HOME/gtk-2.0/gtkrc
|
||||||
NUGET_PACKAGES=$XDG_CACHE_HOME/NuGetPackages
|
NUGET_PACKAGES=$XDG_CACHE_HOME/NuGetPackages
|
||||||
_JAVA_OPTIONS=-Djava.util.prefs.userRoot=$XDG_CONFIG_HOME/java
|
_JAVA_OPTIONS=-Djava.util.prefs.userRoot=$XDG_CONFIG_HOME/java
|
||||||
RENPY_PATH_TO_SAVES=$XDG_DATA_HOME/renpy
|
|
||||||
WINEPREFIX=$XDG_DATA_HOME/wine
|
WINEPREFIX=$XDG_DATA_HOME/wine
|
||||||
ZDOTDIR=$XDG_CONFIG_HOME/zsh
|
ZDOTDIR=$XDG_CONFIG_HOME/zsh
|
||||||
TEXMFVAR=$XDG_CACHE_HOME/texlive/texmf-var
|
TEXMFVAR=$XDG_CACHE_HOME/texlive/texmf-var
|
||||||
@ -22,3 +21,4 @@ XCURSOR_PATH=/usr/share/icons:$XDG_DATA_HOME/icons
|
|||||||
ANDROID_USER_HOME=$XDG_DATA_HOME/android
|
ANDROID_USER_HOME=$XDG_DATA_HOME/android
|
||||||
NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc
|
NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc
|
||||||
PYTHON_HISTORY=$XDG_STATE_HOME/python_history
|
PYTHON_HISTORY=$XDG_STATE_HOME/python_history
|
||||||
|
RENPY_PATH_TO_SAVES=$XDG_DATA_HOME/renpy
|
||||||
|
32
dot_config/nushell/config.nu
Normal file
32
dot_config/nushell/config.nu
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# config.nu
|
||||||
|
#
|
||||||
|
# Installed by:
|
||||||
|
# version = "0.103.0"
|
||||||
|
#
|
||||||
|
# This file is used to override default Nushell settings, define
|
||||||
|
# (or import) custom commands, or run any other startup tasks.
|
||||||
|
# See https://www.nushell.sh/book/configuration.html
|
||||||
|
#
|
||||||
|
# This file is loaded after env.nu and before login.nu
|
||||||
|
#
|
||||||
|
# You can open this file in your default editor using:
|
||||||
|
# config nu
|
||||||
|
#
|
||||||
|
# See `help config nu` for more options
|
||||||
|
#
|
||||||
|
# You can remove these comments if you want or leave
|
||||||
|
# them for future reference.
|
||||||
|
|
||||||
|
alias corels = ls
|
||||||
|
|
||||||
|
def --wrapped ls [...rest] {
|
||||||
|
if '-a' in $rest or '--all' in $rest or not (".hidden" | path exists) {
|
||||||
|
(corels ...$rest)
|
||||||
|
} else {
|
||||||
|
(corels ...$rest) | where name not-in (cat .hidden)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
mkdir ($nu.data-dir | path join "vendor/autoload")
|
||||||
|
starship init nu | save -f ($nu.data-dir | path join "vendor/autoload/starship.nu")
|
22
dot_config/nushell/env.nu
Normal file
22
dot_config/nushell/env.nu
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# env.nu
|
||||||
|
#
|
||||||
|
# Installed by:
|
||||||
|
# version = "0.103.0"
|
||||||
|
#
|
||||||
|
# Previously, environment variables were typically configured in `env.nu`.
|
||||||
|
# In general, most configuration can and should be performed in `config.nu`
|
||||||
|
# or one of the autoload directories.
|
||||||
|
#
|
||||||
|
# This file is generated for backwards compatibility for now.
|
||||||
|
# It is loaded before config.nu and login.nu
|
||||||
|
#
|
||||||
|
# See https://www.nushell.sh/book/configuration.html
|
||||||
|
#
|
||||||
|
# Also see `help config env` for more options.
|
||||||
|
#
|
||||||
|
# You can remove these comments if you want or leave
|
||||||
|
# them for future reference.
|
||||||
|
|
||||||
|
$env.config.show_banner = false
|
||||||
|
|
||||||
|
$env.config.buffer_editor = "micro"
|
@ -20,7 +20,8 @@ RemoveMake
|
|||||||
#UseAsk
|
#UseAsk
|
||||||
#SaveChanges
|
#SaveChanges
|
||||||
CombinedUpgrade
|
CombinedUpgrade
|
||||||
CleanAfter
|
BatchInstall
|
||||||
|
#CleanAfter
|
||||||
#UpgradeMenu
|
#UpgradeMenu
|
||||||
NewsOnUpgrade
|
NewsOnUpgrade
|
||||||
SkipReview
|
SkipReview
|
||||||
|
@ -5,6 +5,7 @@ username.style_user = "white"
|
|||||||
hostname.ssh_only = false
|
hostname.ssh_only = false
|
||||||
hostname.format = "[$ssh_symbol$hostname]($style)"
|
hostname.format = "[$ssh_symbol$hostname]($style)"
|
||||||
hostname.style = "white"
|
hostname.style = "white"
|
||||||
|
hostname.ssh_symbol = " 🌐 "
|
||||||
directory.truncate_to_repo = false
|
directory.truncate_to_repo = false
|
||||||
directory.format = "[$path]($style)[$read_only]($read_only_style)"
|
directory.format = "[$path]($style)[$read_only]($read_only_style)"
|
||||||
directory.style = "white"
|
directory.style = "white"
|
||||||
@ -26,4 +27,4 @@ git_commit.style = "bright-black"
|
|||||||
format = "[\\[](bright-black)$username[@](bright-black)$hostname $directory[\\]](bright-black)$character"
|
format = "[\\[](bright-black)$username[@](bright-black)$hostname $directory[\\]](bright-black)$character"
|
||||||
|
|
||||||
# move the rest of the prompt to the right
|
# move the rest of the prompt to the right
|
||||||
right_format = """$git_branch $git_commit $time"""
|
right_format = """$git_branch $git_commit $time"""
|
||||||
|
6
dot_config/systemd/user/amixer-autounmute.service
Normal file
6
dot_config/systemd/user/amixer-autounmute.service
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Disable Auto-Mute on sound card on a range of 10 cards, since it can vary
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/bash -c 'for i in {1..10}; do amixer -c $i sset "Auto-Mute Mode" Disabled; done; exit 0'
|
10
dot_config/systemd/user/amixer-autounmute.timer
Normal file
10
dot_config/systemd/user/amixer-autounmute.timer
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Run amixer autounmute every 10 minutes
|
||||||
|
|
||||||
|
[Timer]
|
||||||
|
OnBootSec=1min
|
||||||
|
OnUnitActiveSec=10min
|
||||||
|
Persistent=true
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=timers.target
|
6
dot_config/systemd/user/kioworker-killer.service
Normal file
6
dot_config/systemd/user/kioworker-killer.service
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Kill any long living kioworker threads
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/pkill kioworker
|
10
dot_config/systemd/user/kioworker-killer.timer
Normal file
10
dot_config/systemd/user/kioworker-killer.timer
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Kill kioworker threads every 10 minutes
|
||||||
|
|
||||||
|
[Timer]
|
||||||
|
OnBootSec=1min
|
||||||
|
OnUnitActiveSec=10min
|
||||||
|
Persistent=true
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=timers.target
|
9
dot_config/tcsh/dot_tcshrc
Normal file
9
dot_config/tcsh/dot_tcshrc
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# If not running interactively, don't do anything
|
||||||
|
if (! $?prompt) return
|
||||||
|
|
||||||
|
# Set starship if it's installed
|
||||||
|
if (! `which starship >& /dev/null`) eval `starship init tcsh`
|
||||||
|
|
||||||
|
# Just use bash
|
||||||
|
set SHELL = "/bin/bash"
|
||||||
|
exec $SHELL -l
|
2
dot_config/tealdeer/config.toml
Normal file
2
dot_config/tealdeer/config.toml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[updates]
|
||||||
|
auto_update = true
|
@ -0,0 +1,16 @@
|
|||||||
|
# regular devices
|
||||||
|
monitor.alsa.rules = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
# Matches all sources
|
||||||
|
node.name = "~alsa_card.*"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
api.alsa.soft-mixer = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,29 @@
|
|||||||
|
# https://old.reddit.com/r/linux_gaming/comments/14rghc5/solution_crackly_audio_while_gaming_w_pipewire/
|
||||||
|
|
||||||
|
context.modules = [
|
||||||
|
#{ name = <module-name>
|
||||||
|
# ( args = { <key> = <value> ... } )
|
||||||
|
# ( flags = [ ( ifexists ) ( nofail ) ] )
|
||||||
|
# ( condition = [ { <key> = <value> ... } ... ] )
|
||||||
|
#}
|
||||||
|
#
|
||||||
|
# Loads a module with the given parameters.
|
||||||
|
# If ifexists is given, the module is ignored when it is not found.
|
||||||
|
# If nofail is given, module initialization failures are ignored.
|
||||||
|
# If condition is given, the module is loaded only when the context
|
||||||
|
# properties all match the match rules.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Uses realtime scheduling to boost the audio thread priorities. This uses
|
||||||
|
# RTKit if the user doesn't have permission to use regular realtime
|
||||||
|
# scheduling.
|
||||||
|
{ name = libpipewire-module-rt
|
||||||
|
args = {
|
||||||
|
nice.level = -20
|
||||||
|
rt.prio = 90
|
||||||
|
rt.time.soft = 200000
|
||||||
|
rt.time.hard = 200000
|
||||||
|
}
|
||||||
|
flags = [ ifexists nofail ]
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,40 @@
|
|||||||
|
# regular devices
|
||||||
|
monitor.alsa.rules = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
# Matches all sources
|
||||||
|
node.name = "~alsa_input.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
# Matches all sinks
|
||||||
|
node.name = "~alsa_output.*"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
session.suspend-timeout-seconds = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
# bluetooth devices
|
||||||
|
monitor.bluez.rules = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
# Matches all sources
|
||||||
|
node.name = "~bluez_input.*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
# Matches all sinks
|
||||||
|
node.name = "~bluez_output.*"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
session.suspend-timeout-seconds = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,16 @@
|
|||||||
|
access.rules = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
application.process.binary = discord
|
||||||
|
application.process.binary = chromeium
|
||||||
|
application.process.binary = firefox
|
||||||
|
}
|
||||||
|
]
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
default_permissions = "rx"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
65
dot_config/zsh/dot_zshrc
Normal file
65
dot_config/zsh/dot_zshrc
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# shellcheck shell=bash
|
||||||
|
# shellcheck disable=SC1090,SC1091,SC2034
|
||||||
|
|
||||||
|
# Add local bin to PATH
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|
||||||
|
# If not running interactively, don't do anything
|
||||||
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
|
# Workaround for SSH/Login sessions
|
||||||
|
# https://github.com/systemd/systemd/issues/7641#issuecomment-680694017
|
||||||
|
set -a
|
||||||
|
if [[ -o login && -f /usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator ]]; then
|
||||||
|
eval "$(/usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator)"
|
||||||
|
# Fallback to to manually parsing environment.d
|
||||||
|
elif [[ -z "$XDG_DATA_HOME" && -z "$XDG_CONFIG_HOME" && -z "$XDG_STATE_HOME" && -z "$XDG_CACHE_HOME" ]]; then
|
||||||
|
eval "$(<"$HOME/.config/environment.d/xdg.conf")"
|
||||||
|
fi
|
||||||
|
set +a
|
||||||
|
|
||||||
|
autoload -Uz promptinit
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit -d "$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION"
|
||||||
|
promptinit
|
||||||
|
|
||||||
|
# Some zsh plugins
|
||||||
|
[[ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]] && source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
[[ -f /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh ]] && source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||||
|
|
||||||
|
bindkey '^[[H' beginning-of-line
|
||||||
|
bindkey '^[[F' end-of-line
|
||||||
|
bindkey "^[[3~" delete-char
|
||||||
|
|
||||||
|
# Zsh XDG history
|
||||||
|
HISTFILE="$XDG_STATE_HOME"/zsh/history
|
||||||
|
HISTSIZE=10000
|
||||||
|
SAVEHIST=10000
|
||||||
|
setopt HIST_EXPIRE_DUPS_FIRST
|
||||||
|
setopt HIST_IGNORE_DUPS
|
||||||
|
setopt HIST_IGNORE_ALL_DUPS
|
||||||
|
setopt INC_APPEND_HISTORY_TIME
|
||||||
|
|
||||||
|
# Helpful tool: https://zsh-prompt-generator.site/
|
||||||
|
# On github: https://github.com/k-yokoishi/zsh-prompt-generator
|
||||||
|
PROMPT="[%n@%m %~]$ "
|
||||||
|
RPROMPT="%?:%h | %*"
|
||||||
|
|
||||||
|
[[ -f $XDG_CONFIG_HOME/bash/.bash_aliases ]] && source "$XDG_CONFIG_HOME/bash/.bash_aliases"
|
||||||
|
|
||||||
|
# Zsh specific alias
|
||||||
|
alias rc='source "$XDG_CONFIG_HOME"/zsh/.zshrc'
|
||||||
|
|
||||||
|
# https://github.com/pkasemir/find-the-command
|
||||||
|
[[ -f /usr/share/doc/find-the-command/ftc.zsh ]] && source /usr/share/doc/find-the-command/ftc.zsh noupdate quiet info
|
||||||
|
# https://wiki.archlinux.org/title/Pkgfile#Command_not_found
|
||||||
|
# [[ -f /usr/share/doc/pkgfile/command-not-found.zsh ]] && source /usr/share/doc/pkgfile/command-not-found.zsh
|
||||||
|
|
||||||
|
# Starship after defining custom prompt, easy to remove
|
||||||
|
hash starship 2>/dev/null && eval "$(starship init zsh)"
|
||||||
|
|
||||||
|
# Zoxide init has to be last
|
||||||
|
hash zoxide 2>/dev/null && eval "$(zoxide init zsh)"
|
||||||
|
|
||||||
|
# Return 0 to indicate success that the script has been sourced to completion
|
||||||
|
return 0
|
6
dot_local/share/mime/packages/rkt-text-x-scheme.xml
Normal file
6
dot_local/share/mime/packages/rkt-text-x-scheme.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
|
||||||
|
<mime-type type="text/x-scheme">
|
||||||
|
<glob pattern="*.rkt"/>
|
||||||
|
</mime-type>
|
||||||
|
</mime-info>
|
@ -18,6 +18,8 @@ Host fcslinux.cs.unb.ca
|
|||||||
# Individual hosts for the CS department
|
# Individual hosts for the CS department
|
||||||
Host *m??.cs.unb.ca
|
Host *m??.cs.unb.ca
|
||||||
User ishoebot
|
User ishoebot
|
||||||
|
AddKeysToAgent yes
|
||||||
|
ForwardAgent yes
|
||||||
ProxyJump fcslinux.cs.unb.ca
|
ProxyJump fcslinux.cs.unb.ca
|
||||||
|
|
||||||
# GitHub ssh commits
|
# GitHub ssh commits
|
||||||
@ -30,7 +32,7 @@ Host github.com
|
|||||||
# Gitea ssh commits
|
# Gitea ssh commits
|
||||||
Host git.shoebottom.ca
|
Host git.shoebottom.ca
|
||||||
Hostname ssh.shoebottom.ca
|
Hostname ssh.shoebottom.ca
|
||||||
User gitea
|
User git
|
||||||
Port 2221
|
Port 2221
|
||||||
IdentityFile ~/.ssh/git.ed25519
|
IdentityFile ~/.ssh/git.ed25519
|
||||||
AddKeysToAgent yes
|
AddKeysToAgent yes
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
# If running interactively, then:
|
|
||||||
if ($?prompt) then
|
|
||||||
set SHELL = "/usr/bin/bash" && exec $SHELL
|
|
||||||
endif
|
|
88
dot_zshrc
88
dot_zshrc
@ -1,88 +0,0 @@
|
|||||||
# If not running interactively, don't do anything
|
|
||||||
[[ $- != *i* ]] && return
|
|
||||||
|
|
||||||
# Required init for cli programs
|
|
||||||
# Do not install completions unless no working, check /usr/share/bash-completion
|
|
||||||
eval "$(zoxide init zsh)"
|
|
||||||
autoload -Uz promptinit
|
|
||||||
autoload -Uz compinit
|
|
||||||
promptinit
|
|
||||||
compinit
|
|
||||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
||||||
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
||||||
|
|
||||||
bindkey '^[[H' beginning-of-line
|
|
||||||
bindkey '^[[F' end-of-line
|
|
||||||
bindkey "^[[3~" delete-char
|
|
||||||
|
|
||||||
# Set aliases
|
|
||||||
alias grep="ugrep"
|
|
||||||
alias cd="z"
|
|
||||||
alias cat="bat -p"
|
|
||||||
alias update-mirrors="rate-mirrors arch | sudo tee /etc/pacman.d/mirrorlist; rate-mirrors chaotic-aur | sudo tee /etc/pacman.d/chaotic-mirrorlist"
|
|
||||||
alias update="paru; flatpak update"
|
|
||||||
function ls {
|
|
||||||
if [[ "$@" =~ "-a" || "$@" =~ "-A" || "$@" =~ "--all" || "$@" =~ "--almost-all" ]]; then
|
|
||||||
eza --icons --long $@
|
|
||||||
else
|
|
||||||
eza --icons --long --ignore-glob "$([[ -f .hidden ]] && cat .hidden | tr '\n' '|')" $@
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Dotfiles management
|
|
||||||
function .add {
|
|
||||||
if [[ -z $1 || -z $2 ]]; then
|
|
||||||
echo "Usage: .add <file> <message>"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
chezmoi add $1
|
|
||||||
chezmoi git status
|
|
||||||
chezmoi git diff
|
|
||||||
if $(read -q "?Commit changes? [y/N]"); then
|
|
||||||
chezmoi git commit -- -am $2
|
|
||||||
if $(read -q "?Push changes? [y/N]"); then
|
|
||||||
chezmoi git push
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
function .re-add {
|
|
||||||
if [[ -z $1 ]]; then
|
|
||||||
echo "Usage: .re-add <message>"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
chezmoi re-add
|
|
||||||
chezmoi git status
|
|
||||||
chezmoi git diff
|
|
||||||
if $(read -q "?Commit changes? [y/N]"); then
|
|
||||||
chezmoi git commit -- -am $1
|
|
||||||
if $(read -q "?Push changes? [y/N]"); then
|
|
||||||
chezmoi git push
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
alias .push="chezmoi git push"
|
|
||||||
alias .pull="chezmoi git pull"
|
|
||||||
alias .status="chezmoi git status"
|
|
||||||
alias .diff="chezmoi git diff"
|
|
||||||
alias .update="chezmoi update"
|
|
||||||
|
|
||||||
# XDG zsh stuff
|
|
||||||
compinit -d "$XDG_CACHE_HOME"/zsh/zcompdump-"$ZSH_VERSION"
|
|
||||||
export HISTFILE="$XDG_STATE_HOME"/zsh/history
|
|
||||||
|
|
||||||
# XDG aliases
|
|
||||||
alias wget="wget --hsts-file='$XDG_DATA_HOME/wget-hsts'"
|
|
||||||
alias yarn="yarn --use-yarnrc '$XDG_CONFIG_HOME/yarn/config'"
|
|
||||||
alias units="units --history '$XDG_DATA_HOME/units_history'"
|
|
||||||
alias nvidia-settings="nvidia-settings --config='$XDG_CONFIG_HOME/nvidia/settings'"
|
|
||||||
alias adb="HOME='$XDG_DATA_HOME/android' adb"
|
|
||||||
|
|
||||||
# Helpful tool: https://zsh-prompt-generator.site/
|
|
||||||
# On github: https://github.com/k-yokoishi/zsh-prompt-generator
|
|
||||||
PROMPT="[%n@%m %~]$ "
|
|
||||||
RPROMPT="%?:%h | %*"
|
|
||||||
|
|
||||||
# Starship after defining custom prompt, easy to remove
|
|
||||||
eval "$(starship init zsh)"
|
|
1
symlink_dot_bash_profile
Normal file
1
symlink_dot_bash_profile
Normal file
@ -0,0 +1 @@
|
|||||||
|
.config/bash/.bashrc
|
1
symlink_dot_bashrc
Normal file
1
symlink_dot_bashrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
.config/bash/.bashrc
|
1
symlink_dot_editorconfig
Normal file
1
symlink_dot_editorconfig
Normal file
@ -0,0 +1 @@
|
|||||||
|
.config/editorconfig/.editorconfig
|
1
symlink_dot_renpy
Normal file
1
symlink_dot_renpy
Normal file
@ -0,0 +1 @@
|
|||||||
|
.local/share/renpy
|
1
symlink_dot_tcshrc
Normal file
1
symlink_dot_tcshrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
.config/tcsh/.tcshrc
|
1
symlink_dot_zshrc
Normal file
1
symlink_dot_zshrc
Normal file
@ -0,0 +1 @@
|
|||||||
|
.config/zsh/.zshrc
|
Reference in New Issue
Block a user