Termux templating/packages
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
README.md
|
README.md
|
||||||
|
|
||||||
{{ if or (eq .chezmoi.username "root") (not (eq .chezmoi.osRelease.id "arch")) }}
|
{{ if .gui }}
|
||||||
.config/i3/
|
.config/i3/
|
||||||
.config/i3blocks/
|
.config/i3blocks/
|
||||||
.config/mpv/
|
.config/mpv/
|
||||||
|
|||||||
@@ -4,3 +4,4 @@ sourceDir = "~/linux-config"
|
|||||||
gui = true
|
gui = true
|
||||||
ext_kb = true
|
ext_kb = true
|
||||||
# ext_kb = false
|
# ext_kb = false
|
||||||
|
linux_os = ""
|
||||||
|
|||||||
@@ -22,11 +22,20 @@ set -U mfs_dir "/home/kevin/coding/mf-site"
|
|||||||
source /home/kevin/coding/spotify-lib-vis/src/scripts/api-keys-fish.sh
|
source /home/kevin/coding/spotify-lib-vis/src/scripts/api-keys-fish.sh
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
set -x PATH $PATH ~/scripts ~/scripts/colors ~/go/bin
|
set -x PATH $PATH ~/.local/bin ~/scripts ~/scripts/colors ~/go/bin
|
||||||
set -x CLASSPATH $CLASSPATH /home/kevin/java/*.jar
|
set -x CLASSPATH $CLASSPATH /home/kevin/java/*.jar
|
||||||
set -x LD_LIBRARY_PATH $LD_LIBRARY_PATH /usr/local/lib /usr/local/lib64
|
set -x LD_LIBRARY_PATH $LD_LIBRARY_PATH /usr/local/lib /usr/local/lib64
|
||||||
set -x PKG_CONFIG_PATH $PKG_CONFIG_PATH /usr/lib/pkgconfig
|
set -x PKG_CONFIG_PATH $PKG_CONFIG_PATH /usr/lib/pkgconfig
|
||||||
|
|
||||||
|
{{ if eq .linux_os "termux" }}
|
||||||
|
# set SPACEFISH_PROMPT_ORDER time user dir host git package node docker ruby golang php rust haskell julia aws conda pyenv kubecontext exec_time line_sep battery jobs exit_code vi_mode char
|
||||||
|
set SPACEFISH_DIR_PREFIX ''
|
||||||
|
set SPACEFISH_PROMPT_ORDER vi_mode dir git pyenv exec_time jobs exit_code line_sep char
|
||||||
|
set SPACEFISH_VI_MODE_INSERT ''
|
||||||
|
set SPACEFISH_VI_MODE_NORMAL '[n] '
|
||||||
|
set SPACEFISH_VI_MODE_SUFFIX ''
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
set -x PASSWORD_STORE_CLIP_TIME 120
|
set -x PASSWORD_STORE_CLIP_TIME 120
|
||||||
set -xU XSET_RATE 90
|
set -xU XSET_RATE 90
|
||||||
set -xU XSET_DELAY 200
|
set -xU XSET_DELAY 200
|
||||||
@@ -53,8 +62,10 @@ bind \ce edit_command_buffer
|
|||||||
bind \cr forward-word
|
bind \cr forward-word
|
||||||
|
|
||||||
chezmoi apply
|
chezmoi apply
|
||||||
|
{{ if not (eq .linux_os "termux") }}
|
||||||
~/scripts/sync-shortcuts
|
~/scripts/sync-shortcuts
|
||||||
# source ~/.config/fish/key_abbr.fish > /dev/null
|
{{ end }}
|
||||||
|
source ~/.config/fish/key_abbr.fish > /dev/null
|
||||||
set -U fish_fxn_dir "{{ .chezmoi.homedir }}/linux-config/dot_config/fish/functions"
|
set -U fish_fxn_dir "{{ .chezmoi.homedir }}/linux-config/dot_config/fish/functions"
|
||||||
# set -U fish_fxn_dir "~/.config/fish/functions"
|
# set -U fish_fxn_dir "~/.config/fish/functions"
|
||||||
abbr ff "cd $fish_fxn_dir"
|
abbr ff "cd $fish_fxn_dir"
|
||||||
|
|||||||
@@ -46,7 +46,11 @@ function cd --description "Change directory"
|
|||||||
set -g __fish_cd_direction prev
|
set -g __fish_cd_direction prev
|
||||||
|
|
||||||
set -U last_dir $PWD
|
set -U last_dir $PWD
|
||||||
|
{{ if (not (eq .linux_os "termux")) }}
|
||||||
lsd -a
|
lsd -a
|
||||||
|
{{ else }}
|
||||||
|
ls -a
|
||||||
|
{{ end }}
|
||||||
end
|
end
|
||||||
|
|
||||||
return $cd_status
|
return $cd_status
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
function git-amend-push
|
function git-amend-push
|
||||||
git add -A .
|
git add -A
|
||||||
and git commit --amend --no-edit -S
|
and git commit --amend --no-edit -S
|
||||||
and git push --force
|
and git push --force
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -124,8 +124,10 @@ Plug 'vim-scripts/L9'
|
|||||||
" find files from within Vim
|
" find files from within Vim
|
||||||
" Plug 'vim-scripts/FuzzyFinder'
|
" Plug 'vim-scripts/FuzzyFinder'
|
||||||
|
|
||||||
|
{{ if not .gui }}
|
||||||
" Gotham color scheme
|
" Gotham color scheme
|
||||||
" Plug 'whatyouhide/vim-gotham'
|
Plug 'whatyouhide/vim-gotham'
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
" " collection of Vim color schemes
|
" " collection of Vim color schemes
|
||||||
" Plug 'flazz/vim-colorschemes'
|
" Plug 'flazz/vim-colorschemes'
|
||||||
@@ -263,13 +265,44 @@ Plug 'kana/vim-textobj-user'
|
|||||||
Plug 'rbonvall/vim-textobj-latex'
|
Plug 'rbonvall/vim-textobj-latex'
|
||||||
" swap words
|
" swap words
|
||||||
Plug 'tommcdo/vim-exchange'
|
Plug 'tommcdo/vim-exchange'
|
||||||
|
Plug 'scrooloose/nerdtree'
|
||||||
|
let NERDTreeQuitOnOpen=1
|
||||||
|
let NERDTreeShowHidden=1
|
||||||
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||||
|
Plug 'junegunn/fzf.vim'
|
||||||
|
Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
let g:tmux_navigator_no_mappings = 1
|
||||||
|
" nnoremap <C-Down> :TmuxNavigateDown<cr>
|
||||||
|
" nnoremap <C-Up> :TmuxNavigateUp<cr>
|
||||||
|
" nnoremap <C-Left> :TmuxNavigateLeft<cr>
|
||||||
|
" nnoremap <C-Right> :TmuxNavigateRight<cr>
|
||||||
|
" nnoremap <silent> <leader>j :TmuxNavigateDown<cr>
|
||||||
|
" nnoremap <silent> <leader>k :TmuxNavigateUp<cr>
|
||||||
|
" nnoremap <silent> <leader>h :TmuxNavigateLeft<cr>
|
||||||
|
" nnoremap <silent> <leader>l :TmuxNavigateRight<cr>
|
||||||
|
" nnoremap <silent> <C-j> :TmuxNavigateDown<cr>
|
||||||
|
" nnoremap <silent> <C-k> :TmuxNavigateUp<cr>
|
||||||
|
" nnoremap <silent> <C-h> :TmuxNavigateLeft<cr>
|
||||||
|
" nnoremap <silent> <C-l> :TmuxNavigateRight<cr>
|
||||||
|
" nnoremap <silent> <A-j> :TmuxNavigateDown<cr>
|
||||||
|
" nnoremap <silent> <A-k> :TmuxNavigateUp<cr>
|
||||||
|
" nnoremap <silent> <A-h> :TmuxNavigateLeft<cr>
|
||||||
|
" nnoremap <silent> <A-l> :TmuxNavigateRight<cr>
|
||||||
|
" nnoremap <silent> <M-j> :TmuxNavigateDown<cr>
|
||||||
|
" nnoremap <silent> <M-k> :TmuxNavigateUp<cr>
|
||||||
|
" nnoremap <silent> <M-h> :TmuxNavigateLeft<cr>
|
||||||
|
" nnoremap <silent> <M-l> :TmuxNavigateRight<cr>
|
||||||
" ]]] vim-plug "
|
" ]]] vim-plug "
|
||||||
|
|
||||||
" Mappings [[[ "
|
" Mappings [[[ "
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
" colorscheme gotham256
|
|
||||||
|
{{ if .gui }}
|
||||||
colorscheme wal
|
colorscheme wal
|
||||||
|
{{ else }}
|
||||||
|
colorscheme gotham256
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
" normal mappings [[[ "
|
" normal mappings [[[ "
|
||||||
|
|
||||||
@@ -340,10 +373,11 @@ nnoremap <leader>ll Vjgq
|
|||||||
nnoremap <leader>m :call cursor(0, len(getline('.'))/2)<CR>
|
nnoremap <leader>m :call cursor(0, len(getline('.'))/2)<CR>
|
||||||
" apply normal command to selection
|
" apply normal command to selection
|
||||||
vnoremap <leader>n q:anorm
|
vnoremap <leader>n q:anorm
|
||||||
" don't wrap lines
|
nnoremap <leader>nt :NERDTree<CR>
|
||||||
nnoremap <leader>nw :set nowrap<CR>
|
|
||||||
" check if in neovim
|
" check if in neovim
|
||||||
nnoremap <leader>nv :echo has('nvim')<CR>
|
nnoremap <leader>nv :echo has('nvim')<CR>
|
||||||
|
" don't wrap lines
|
||||||
|
nnoremap <leader>nw :set nowrap<CR>
|
||||||
" recursively open fold
|
" recursively open fold
|
||||||
nnoremap <leader>o zO
|
nnoremap <leader>o zO
|
||||||
" Plug commands
|
" Plug commands
|
||||||
@@ -416,6 +450,7 @@ nnoremap <C-Down> <C-W><C-J>
|
|||||||
nnoremap <C-Up> <C-W><C-K>
|
nnoremap <C-Up> <C-W><C-K>
|
||||||
nnoremap <C-Right> <C-W><C-L>
|
nnoremap <C-Right> <C-W><C-L>
|
||||||
nnoremap <C-Left> <C-W><C-H>
|
nnoremap <C-Left> <C-W><C-H>
|
||||||
|
|
||||||
" Maximize height/width.
|
" Maximize height/width.
|
||||||
nnoremap <C-g> <C-W>_
|
nnoremap <C-g> <C-W>_
|
||||||
nnoremap <C-w> <C-W>|
|
nnoremap <C-w> <C-W>|
|
||||||
|
|||||||
@@ -69,9 +69,13 @@ vdr "vidir --verbose"
|
|||||||
|
|
||||||
# directory-related [[[ #
|
# directory-related [[[ #
|
||||||
|
|
||||||
ls "lsd"
|
{{ if not (eq .linux_os "termux") }}
|
||||||
l "lsd -a"
|
l "lsd -a"
|
||||||
ll "lsd -al"
|
ll "lsd -al"
|
||||||
|
{{ else }}
|
||||||
|
l "ls -a"
|
||||||
|
ll "ls -al"
|
||||||
|
{{ end }}
|
||||||
smv "sudo mv"
|
smv "sudo mv"
|
||||||
f "cd"
|
f "cd"
|
||||||
fz "fzf"
|
fz "fzf"
|
||||||
@@ -88,16 +92,17 @@ lhd "sudo fdisk -l"
|
|||||||
# get disc space for mounted drives
|
# get disc space for mounted drives
|
||||||
# ds "df -h | tee >(head -n 1) >(grep sd) >/dev/null"
|
# ds "df -h | tee >(head -n 1) >(grep sd) >/dev/null"
|
||||||
ds "df -h | head -n 1 && df -h | grep sd"
|
ds "df -h | head -n 1 && df -h | grep sd"
|
||||||
chownw "sudo chown -R {{ .chezmoi.group }}:wheel"
|
chownw "sudo chown -R kevin:wheel"
|
||||||
chwnm "sudo chown -R {{ .chezmoi.group }}:wheel /run/media/{{ .chezmoi.username }}"
|
chwnm "sudo chown -R kevin:wheel /run/media/{{ .chezmoi.username }}"
|
||||||
# cd into backup folder and show backup sizes
|
# cd into backup folder and show backup sizes
|
||||||
nbu "cd /run/media/{{ .chezmoi.group }}/backup-hd/{{ .chezmoi.fullHostname }}/tar && lsd -l"
|
nbu "cd /run/media/kevin/backup-hd/{{ .chezmoi.fullHostname }}/tar && lsd -l"
|
||||||
|
|
||||||
# ]]] directory-related #
|
# ]]] directory-related #
|
||||||
|
|
||||||
# power options [[[ #
|
# power options [[[ #
|
||||||
|
|
||||||
s "systemctl suspend"
|
s "systemctl suspend"
|
||||||
|
x "exit"
|
||||||
so "xset dpms force off"
|
so "xset dpms force off"
|
||||||
sd "systemctl poweroff"
|
sd "systemctl poweroff"
|
||||||
rb "systemctl reboot"
|
rb "systemctl reboot"
|
||||||
@@ -120,15 +125,9 @@ vlh "alsamixer -c 2"
|
|||||||
vlm "alsamixer -c 1"
|
vlm "alsamixer -c 1"
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
# apt [[[ #
|
# pkg management [[[ #
|
||||||
|
|
||||||
# apti "sudo apt install"
|
{{ if eq .linux_os "arch" }}#[[[
|
||||||
# aptr "sudo apt remove"
|
|
||||||
# aptu "sudo apt upgrade"
|
|
||||||
|
|
||||||
# ]]] apt #
|
|
||||||
|
|
||||||
{{ if eq .chezmoi.osRelease.id "arch" }}
|
|
||||||
# pacman [[[ #
|
# pacman [[[ #
|
||||||
|
|
||||||
# pc "sudo pacman -S"
|
# pc "sudo pacman -S"
|
||||||
@@ -161,7 +160,26 @@ yaug "yay -Syu --answerclean=None --answerdiff=None --answeredit=None"
|
|||||||
xya "yay -Qqne > ~/{{ .chezmoi.os }}-config/txt/{{ .chezmoi.fullHostname }}-pkgs.txt && yay -Qqme > ~/{{ .chezmoi.os }}-config/txt/{{ .chezmoi.fullHostname }}-aur.txt "
|
xya "yay -Qqne > ~/{{ .chezmoi.os }}-config/txt/{{ .chezmoi.fullHostname }}-pkgs.txt && yay -Qqme > ~/{{ .chezmoi.os }}-config/txt/{{ .chezmoi.fullHostname }}-aur.txt "
|
||||||
|
|
||||||
# ]]] yay #
|
# ]]] yay #
|
||||||
{{ end }}
|
#]]]
|
||||||
|
|
||||||
|
{{ else if eq .linux_os "termux" }}#[[[
|
||||||
|
pki "pkg install"
|
||||||
|
pkli "pkg list-installed"
|
||||||
|
pku "pkg uninstall"
|
||||||
|
pks "pkg search"
|
||||||
|
xpk "pkg list-installed | awk -F/ '{print \$1}' > ~/{{ .chezmoi.os }}-config/txt/termux-pkgs.txt"
|
||||||
|
|
||||||
|
{{ end }}#]]]
|
||||||
|
|
||||||
|
# apt [[[ #
|
||||||
|
|
||||||
|
# apti "sudo apt install"
|
||||||
|
# aptr "sudo apt remove"
|
||||||
|
# aptu "sudo apt upgrade"
|
||||||
|
|
||||||
|
# ]]] apt #
|
||||||
|
|
||||||
|
# ]]] pkg management #
|
||||||
|
|
||||||
py "python"
|
py "python"
|
||||||
pyt "pytest -vv"
|
pyt "pytest -vv"
|
||||||
@@ -192,6 +210,7 @@ clc "cloc ."
|
|||||||
cv "cava"
|
cv "cava"
|
||||||
dg "dragon-drag-and-drop -x"
|
dg "dragon-drag-and-drop -x"
|
||||||
fh "feh"
|
fh "feh"
|
||||||
|
fi "fish"
|
||||||
gpd "gpg --decrypt"
|
gpd "gpg --decrypt"
|
||||||
gpe "gpg --encrypt --recipient"
|
gpe "gpg --encrypt --recipient"
|
||||||
htc "htop -s PERCENT_CPU"
|
htc "htop -s PERCENT_CPU"
|
||||||
@@ -213,7 +232,10 @@ r "ranger"
|
|||||||
rg "printf '\033c' && rg"
|
rg "printf '\033c' && rg"
|
||||||
rx "redshift -x"
|
rx "redshift -x"
|
||||||
sn "sudo nvim"
|
sn "sudo nvim"
|
||||||
sw "swex"
|
# sw "swex"
|
||||||
|
t "tmux"
|
||||||
|
ta "tmux a"
|
||||||
|
tls "tmux ls"
|
||||||
vmd "vimdiff"
|
vmd "vimdiff"
|
||||||
wg "wego"
|
wg "wego"
|
||||||
wp "grep wallpaper ~/.cache/wal/colors.sh"
|
wp "grep wallpaper ~/.cache/wal/colors.sh"
|
||||||
@@ -281,7 +303,9 @@ gmg "git merge"
|
|||||||
gmgt "git mergetool"
|
gmgt "git mergetool"
|
||||||
|
|
||||||
gr "git remote -v"
|
gr "git remote -v"
|
||||||
gro "git remote show origin"
|
gra "git remote add origin"
|
||||||
|
grr "git remote remove origin"
|
||||||
|
grs "git remote show origin"
|
||||||
|
|
||||||
# ]]] branch #
|
# ]]] branch #
|
||||||
|
|
||||||
@@ -413,8 +437,6 @@ ureq "pip freeze > requirements.txt"
|
|||||||
hlg "tail -n 5 $spv_dir/src/api/management/commands/update-history.log"
|
hlg "tail -n 5 $spv_dir/src/api/management/commands/update-history.log"
|
||||||
# scan history
|
# scan history
|
||||||
# hs "$spv_dir/src/update-history.sh && cat $spv_dir/src/api/management/commands/update-history.log | tail -n 1"
|
# hs "$spv_dir/src/update-history.sh && cat $spv_dir/src/api/management/commands/update-history.log | tail -n 1"
|
||||||
# scan cron log for hs cmd
|
|
||||||
crnl "grep \"({{ .chezmoi.group }}) CMD\" /var/log/syslog | tail -n 1 && hlg"
|
|
||||||
# removes all but newest file
|
# removes all but newest file
|
||||||
# rmol "ls -t | tail -n +2 | xargs rm -- && l"
|
# rmol "ls -t | tail -n +2 | xargs rm -- && l"
|
||||||
|
|
||||||
@@ -471,7 +493,6 @@ ht "python3 -m http.server"
|
|||||||
h "hugo"
|
h "hugo"
|
||||||
he "hugo serve -D --disableFastRender"
|
he "hugo serve -D --disableFastRender"
|
||||||
|
|
||||||
ss "ssh {{ .chezmoi.group }}@192.168.0.100"
|
|
||||||
ssb "ssh-bandit"
|
ssb "ssh-bandit"
|
||||||
|
|
||||||
rt "python ~/coding/rt-scraper/!rt-scraper.py"
|
rt "python ~/coding/rt-scraper/!rt-scraper.py"
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
# sys [[[ #
|
# sys [[[ #
|
||||||
|
|
||||||
bg ~/Pictures/Backgrounds
|
bg ~/Pictures/Backgrounds
|
||||||
bu /run/media/{{ .chezmoi.group }}/backup-hd/{{ .chezmoi.fullHostname }}/tar
|
|
||||||
cf ~/.config
|
cf ~/.config
|
||||||
cff ~/.config/fish
|
cff ~/.config/fish
|
||||||
d ~/Downloads
|
d ~/Downloads
|
||||||
@@ -13,12 +12,10 @@ k ~/
|
|||||||
lc ~/linux-config
|
lc ~/linux-config
|
||||||
lf /mnt/linux-files
|
lf /mnt/linux-files
|
||||||
lfv /mnt/linux-files/Videos
|
lfv /mnt/linux-files/Videos
|
||||||
me /run/media/{{ .chezmoi.group }}
|
|
||||||
o /
|
o /
|
||||||
p ~/.password-store
|
p ~/.password-store
|
||||||
P ~/Pictures
|
P ~/Pictures
|
||||||
std ~/st
|
std ~/st
|
||||||
sw ~/.local/share/nvim/swap/
|
|
||||||
tm /tmp
|
tm /tmp
|
||||||
|
|
||||||
# ]]] sys #
|
# ]]] sys #
|
||||||
@@ -29,7 +26,8 @@ cn ~/coding
|
|||||||
ib ~/linux-config/dot_config/i3blocks/scripts
|
ib ~/linux-config/dot_config/i3blocks/scripts
|
||||||
ra ~/linux-config/dot_config/ranger
|
ra ~/linux-config/dot_config/ranger
|
||||||
sr ~/linux-config/scripts
|
sr ~/linux-config/scripts
|
||||||
swa ~/.local/share/nvim/swap
|
snp ~/.vim/plugged/vim-snippets/UltiSnips
|
||||||
|
sw ~/.local/share/nvim/swap/
|
||||||
tx ~/linux-config/txt
|
tx ~/linux-config/txt
|
||||||
wd ~/.config/watson
|
wd ~/.config/watson
|
||||||
|
|
||||||
@@ -44,7 +42,6 @@ mmd ~/coding/move-mouse-with-head
|
|||||||
ms ~/coding/mf-site
|
ms ~/coding/mf-site
|
||||||
mh ~/coding/mf-site/layouts
|
mh ~/coding/mf-site/layouts
|
||||||
# mg ~/coding/best-mf-site-personal
|
# mg ~/coding/best-mf-site-personal
|
||||||
snp ~/.vim/plugged/vim-snippets/UltiSnips
|
|
||||||
sv ~/coding/spotify-lib-vis/src
|
sv ~/coding/spotify-lib-vis/src
|
||||||
svg ~/coding/spotify-lib-vis/src/graphs/static/graphs/scripts
|
svg ~/coding/spotify-lib-vis/src/graphs/static/graphs/scripts
|
||||||
swd ~/coding/swex
|
swd ~/coding/swex
|
||||||
|
|||||||
@@ -58,7 +58,6 @@ wt ~/.config/watson/state.tmp
|
|||||||
0f ~/school/309-proj/public/js/food.js
|
0f ~/school/309-proj/public/js/food.js
|
||||||
0s ~/school/309-proj/server.js
|
0s ~/school/309-proj/server.js
|
||||||
0t ~/school/309-proj/public/js/stores.js
|
0t ~/school/309-proj/public/js/stores.js
|
||||||
0k ~/school/309-proj/json/{{ .chezmoi.group }}.md
|
|
||||||
|
|
||||||
# ]]] 309 #
|
# ]]] 309 #
|
||||||
|
|
||||||
|
|||||||
0
txt/exclude-dirs-backup-full.txt
Executable file → Normal file
0
txt/exclude-dirs-backup-full.txt
Executable file → Normal file
0
txt/exclude-dirs-backup.txt.tmpl
Executable file → Normal file
0
txt/exclude-dirs-backup.txt.tmpl
Executable file → Normal file
0
txt/gtk-themes.txt
Executable file → Normal file
0
txt/gtk-themes.txt
Executable file → Normal file
0
txt/nzxt-aur.txt
Executable file → Normal file
0
txt/nzxt-aur.txt
Executable file → Normal file
0
txt/nzxt-pkgs.txt
Executable file → Normal file
0
txt/nzxt-pkgs.txt
Executable file → Normal file
95
txt/termux-pkgs.txt
Normal file
95
txt/termux-pkgs.txt
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
Listing...
|
||||||
|
apt
|
||||||
|
bash
|
||||||
|
bat
|
||||||
|
bc
|
||||||
|
binutils
|
||||||
|
busybox
|
||||||
|
ca-certificates
|
||||||
|
clang
|
||||||
|
cmake
|
||||||
|
command-not-found
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
dash
|
||||||
|
diffutils
|
||||||
|
dpkg
|
||||||
|
fd
|
||||||
|
file
|
||||||
|
findutils
|
||||||
|
fish
|
||||||
|
flex
|
||||||
|
game-repo
|
||||||
|
gdbm
|
||||||
|
git
|
||||||
|
gnupg
|
||||||
|
gpgv
|
||||||
|
htop
|
||||||
|
jsoncpp
|
||||||
|
krb5
|
||||||
|
ldns
|
||||||
|
less
|
||||||
|
libandroid-glob
|
||||||
|
libandroid-support
|
||||||
|
libarchive
|
||||||
|
libassuan
|
||||||
|
libbz2
|
||||||
|
libc++
|
||||||
|
libcrypt
|
||||||
|
libcrypt-dev
|
||||||
|
libcurl
|
||||||
|
libdb
|
||||||
|
libedit
|
||||||
|
libevent
|
||||||
|
libexpat
|
||||||
|
libffi
|
||||||
|
libgcrypt
|
||||||
|
libgpg-error
|
||||||
|
libiconv
|
||||||
|
libksba
|
||||||
|
libllvm
|
||||||
|
liblua
|
||||||
|
liblzma
|
||||||
|
libmsgpack
|
||||||
|
libnghttp2
|
||||||
|
libnpth
|
||||||
|
libsqlite
|
||||||
|
libtermkey
|
||||||
|
libunibilium
|
||||||
|
libunistring
|
||||||
|
libuuid
|
||||||
|
libuv
|
||||||
|
libvterm
|
||||||
|
libxml2
|
||||||
|
m4
|
||||||
|
make
|
||||||
|
man
|
||||||
|
ncurses
|
||||||
|
ncurses-ui-libs
|
||||||
|
ncurses-utils
|
||||||
|
ndk-sysroot
|
||||||
|
neofetch
|
||||||
|
neovim
|
||||||
|
openssh
|
||||||
|
openssl
|
||||||
|
pcre2
|
||||||
|
pinentry
|
||||||
|
python
|
||||||
|
python-dev
|
||||||
|
ranger
|
||||||
|
readline
|
||||||
|
rhash
|
||||||
|
ripgrep
|
||||||
|
science-repo
|
||||||
|
termux-am
|
||||||
|
termux-auth
|
||||||
|
termux-exec
|
||||||
|
termux-keyring
|
||||||
|
termux-licenses
|
||||||
|
termux-tools
|
||||||
|
tmux
|
||||||
|
util-linux
|
||||||
|
vim-python
|
||||||
|
vim-runtime
|
||||||
|
wget
|
||||||
|
zlib
|
||||||
0
txt/tex-build-files.txt
Executable file → Normal file
0
txt/tex-build-files.txt
Executable file → Normal file
0
txt/todo.md
Executable file → Normal file
0
txt/todo.md
Executable file → Normal file
0
txt/usbs.md
Executable file → Normal file
0
txt/usbs.md
Executable file → Normal file
0
txt/x1-carbon-aur.txt
Executable file → Normal file
0
txt/x1-carbon-aur.txt
Executable file → Normal file
0
txt/x1-carbon-pkgs.txt
Executable file → Normal file
0
txt/x1-carbon-pkgs.txt
Executable file → Normal file
Reference in New Issue
Block a user