Merge remote-tracking branch 'origin/main' into smaller
This commit is contained in:
commit
e23e19eb63
16
.README.md
16
.README.md
@ -57,6 +57,8 @@ Mask `onedrive` service for new user:
|
||||
|
||||
## Debian Packages {#debian}
|
||||
|
||||
TODO: dlocate / plocate…
|
||||
|
||||
### Installation
|
||||
|
||||
```sh
|
||||
@ -265,6 +267,10 @@ asdf plugin add python
|
||||
for Plugin in $(asdf plugin list); { echo $Plugin; asdf list $Plugin }
|
||||
```
|
||||
|
||||
### Updates
|
||||
|
||||
TODO
|
||||
|
||||
## Newer Debian packages {#newer_versions}
|
||||
|
||||
### Flatpak
|
||||
@ -275,6 +281,14 @@ for Plugin in $(asdf plugin list); { echo $Plugin; asdf list $Plugin }
|
||||
|
||||
TODO: [Where are all the installed flatpak apps .desktop files located](https://github.com/flatpak/flatpak/issues/1286)
|
||||
|
||||
#### User Configuration
|
||||
|
||||
```sh
|
||||
flatpak remote-add --user --if-not-exists \
|
||||
--subset=verified_floss flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
flatpak install --user org.mozilla.firefox
|
||||
```
|
||||
|
||||
#### Overrides
|
||||
|
||||
```sh
|
||||
@ -539,6 +553,8 @@ bat ~/.config/nvim/README.md
|
||||
|
||||
### Dependencies
|
||||
|
||||
- TODO: Debian 13 packages
|
||||
|
||||
- kitty / NerdFont
|
||||
|
||||
- Archives Management:
|
||||
|
@ -7,7 +7,7 @@ XTerm*termName: xterm-256color
|
||||
XTerm*background: rgb:00/00/00
|
||||
XTerm*foreground: white
|
||||
|
||||
XTerm*geometry: 100x60
|
||||
XTerm*geometry: 90x40
|
||||
|
||||
! To dump mono fonts:
|
||||
! fc-list :scalable=true:spacing=mono: family | sort
|
||||
|
1
.vimrc
1
.vimrc
@ -13,6 +13,7 @@ set relativenumber
|
||||
set scrolloff=2
|
||||
set shiftwidth=2
|
||||
set smartcase
|
||||
set undofile
|
||||
|
||||
set nowrap
|
||||
set nowrapscan
|
||||
|
26
.zshrc
26
.zshrc
@ -425,12 +425,11 @@ whiptail_menu() {
|
||||
|
||||
alias -g D='$(date +%Y-%m-%d_%H-%M-%S)'
|
||||
alias -g E='2> /dev/null'
|
||||
alias -g G='|& grep -i'
|
||||
alias -g G='|& rg -i'
|
||||
alias -g H='| head'
|
||||
alias -g HL='--help |& less -r'
|
||||
alias -g L='| less'
|
||||
alias -g N='&> /dev/null'
|
||||
alias -g P='| peco'
|
||||
alias -g S='| sort'
|
||||
alias -g T='| tail'
|
||||
|
||||
@ -468,7 +467,6 @@ export BROWSER=firefox
|
||||
export EDITOR=vi
|
||||
export LESS=-iFRS
|
||||
export SYSTEMD_LESS='iFRSXMK'
|
||||
export VISUAL=bat
|
||||
|
||||
|
||||
###
|
||||
@ -537,3 +535,25 @@ compdef locate=glocate
|
||||
|
||||
# Hide "parameters" (i.e. environment variables) when looking for a "command"
|
||||
zstyle ':completion:*:-command-:*' tag-order '!parameters'
|
||||
|
||||
|
||||
###
|
||||
### Welcome Message
|
||||
###
|
||||
|
||||
grc --colour=on df -h --output=source,size,pcent,target | grep -v 'tmpfs\|none'
|
||||
echo
|
||||
|
||||
if [[ -e .welcome ]]; then
|
||||
cat .welcome
|
||||
elif [[ -e $HOME/.welcome ]]; then
|
||||
cat $HOME/.welcome
|
||||
fi
|
||||
|
||||
setopt nullglob
|
||||
if (( ${#$(echo ~/QubesIncoming/*(F))} )); then
|
||||
find ~/QubesIncoming ! -type d -printf "%5kk %p\n" |
|
||||
sort -k2,9 |
|
||||
sed -e "s:$HOME:~:"
|
||||
fi
|
||||
setopt nonullglob
|
||||
|
@ -1,8 +1,6 @@
|
||||
#!/bin/zsh
|
||||
# vi:spl=en
|
||||
|
||||
alias xterm='xterm -bg black -fg white -fa Hack -fs 10'
|
||||
|
||||
|
||||
## Execution Log
|
||||
#
|
||||
@ -11,20 +9,17 @@ rm -f $LOG
|
||||
touch $LOG
|
||||
|
||||
|
||||
## Disk Usage
|
||||
#
|
||||
#xterm -geometry 50x8-99+99 -title "Disk Usage" -hold -e "grc --colour=auto df -h --output=pcent,target,size,used,avail / /rw"
|
||||
|
||||
|
||||
## Versions Check
|
||||
#
|
||||
#xterm -geometry 100x40-99+99 -title "Versions Check" -hold -e "$HOME/bin/versions_check"
|
||||
#xterm -geometry 100x40-99+99 \
|
||||
# -title "Versions Check" -hold \
|
||||
# -e "read 'OK?Launch? '; $HOME/bin/versions_check"
|
||||
|
||||
|
||||
## Qubes: Cleaning
|
||||
#
|
||||
#sudo apt clean
|
||||
rmdir $HOME/QubesIncoming/* --ignore-fail-on-non-empty
|
||||
#rmdir $HOME/QubesIncoming/* --ignore-fail-on-non-empty
|
||||
|
||||
|
||||
## Qubes: Split SSH
|
||||
|
Loading…
Reference in New Issue
Block a user