Update
This commit is contained in:
@@ -4,7 +4,8 @@
|
|||||||
! URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=11
|
! URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=11
|
||||||
URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=12
|
URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=12
|
||||||
{{ else }}
|
{{ else }}
|
||||||
URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=14
|
! URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=14
|
||||||
|
URxvt.font: xft:DejaVuSansMono Nerd Font Mono:size=13.5
|
||||||
{{ end }}
|
{{ end }}
|
||||||
! URxvt.font: xft:Hack:size=18
|
! URxvt.font: xft:Hack:size=18
|
||||||
|
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ export SHORT_USER=${USER:0:8}
|
|||||||
# export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1
|
# export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1
|
||||||
|
|
||||||
# Load Bash It
|
# Load Bash It
|
||||||
source "$BASH_IT"/bash_it.sh
|
# source "$BASH_IT"/bash_it.sh
|
||||||
|
|
||||||
# export JAVA_HOME=/home/kevin/usr/java/jdk1.8.0_151/
|
# export JAVA_HOME=/home/kevin/usr/java/jdk1.8.0_151/
|
||||||
# export PATH=$JAVA_HOME/bin:$PATH
|
# export PATH=$JAVA_HOME/bin:$PATH
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ set -x GPG_TTY (tty)
|
|||||||
{{ if eq .chezmoi.fullHostname "nzxt" }}
|
{{ if eq .chezmoi.fullHostname "nzxt" }}
|
||||||
set -U spv_dir "/home/kevin/coding/spotify-lib-vis"
|
set -U spv_dir "/home/kevin/coding/spotify-lib-vis"
|
||||||
set -U mfs_dir "/home/kevin/coding/mf-site"
|
set -U mfs_dir "/home/kevin/coding/mf-site"
|
||||||
|
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 ~/scripts ~/scripts/colors ~/go/bin
|
||||||
@@ -79,8 +80,10 @@ abbr cpc "copy cat"
|
|||||||
abbr cpe "copy echo"
|
abbr cpe "copy echo"
|
||||||
abbr cpp "copy echo (pwd)"
|
abbr cpp "copy echo (pwd)"
|
||||||
abbr cff "create-fish-function"
|
abbr cff "create-fish-function"
|
||||||
|
abbr def "define"
|
||||||
abbr ev "evince-silent"
|
abbr ev "evince-silent"
|
||||||
abbr fbg "find-bg"
|
abbr fbg "find-bg"
|
||||||
|
abbr fzv "fzf-vim"
|
||||||
# git [[[ #
|
# git [[[ #
|
||||||
|
|
||||||
abbr gcamp "git-amend-push"
|
abbr gcamp "git-amend-push"
|
||||||
@@ -96,6 +99,8 @@ abbr mt "math"
|
|||||||
abbr pgr "grep-pdf"
|
abbr pgr "grep-pdf"
|
||||||
abbr pgrf "grep-pdf-file"
|
abbr pgrf "grep-pdf-file"
|
||||||
abbr rs "redshift-set"
|
abbr rs "redshift-set"
|
||||||
|
abbr shrm "shred-rm"
|
||||||
|
abbr thes "thesaurus"
|
||||||
abbr ut "unix-timestamp"
|
abbr ut "unix-timestamp"
|
||||||
abbr uzr "unzip-rm"
|
abbr uzr "unzip-rm"
|
||||||
abbr fvft "find-vim-filetype"
|
abbr fvft "find-vim-filetype"
|
||||||
|
|||||||
3
dot_config/fish/functions/define.fish
Normal file
3
dot_config/fish/functions/define.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function define
|
||||||
|
sdcv -u "dictd_www.dict.org_gcide" $argv[1] | bat
|
||||||
|
end
|
||||||
3
dot_config/fish/functions/fzf-vim.fish
Normal file
3
dot_config/fish/functions/fzf-vim.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function fzf-vim
|
||||||
|
fzf | xargs $EDITOR
|
||||||
|
end
|
||||||
3
dot_config/fish/functions/thesaurus.fish
Normal file
3
dot_config/fish/functions/thesaurus.fish
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
function thesaurus
|
||||||
|
sdcv -u "Moby Thesaurus II" $argv[1] | bat
|
||||||
|
end
|
||||||
@@ -95,6 +95,9 @@ handle_extension() {
|
|||||||
json)
|
json)
|
||||||
jq --color-output . "${FILE_PATH}" && exit 5
|
jq --color-output . "${FILE_PATH}" && exit 5
|
||||||
python -m json.tool -- "${FILE_PATH}" && exit 5
|
python -m json.tool -- "${FILE_PATH}" && exit 5
|
||||||
|
|
||||||
|
# txt)
|
||||||
|
# cat "${FILE_PATH}" && exit 5
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ autocmd FileType python set fdm=indent
|
|||||||
autocmd Filetype json nnoremap <leader>j :%!python -m json.tool<CR>
|
autocmd Filetype json nnoremap <leader>j :%!python -m json.tool<CR>
|
||||||
autocmd Filetype json set foldmethod=marker
|
autocmd Filetype json set foldmethod=marker
|
||||||
autocmd FileType sh map <F8> :!clear && shellcheck %<CR>
|
autocmd FileType sh map <F8> :!clear && shellcheck %<CR>
|
||||||
autocmd FileType tex set updatetime=1000
|
autocmd FileType tex set updatetime=1000 timeoutlen=300
|
||||||
autocmd FileType tex map <F8> :VimtexCompile<CR>
|
autocmd FileType tex map <F8> :VimtexCompile<CR>
|
||||||
autocmd VimEnter *.tex VimtexCompile
|
autocmd VimEnter *.tex VimtexCompile
|
||||||
autocmd VimLeave *.tex !tex-clean %:p
|
autocmd VimLeave *.tex !tex-clean %:p
|
||||||
@@ -243,6 +243,11 @@ Plug 'calviken/vim-gdscript3'
|
|||||||
" display hex colors in Vim
|
" display hex colors in Vim
|
||||||
Plug 'RRethy/vim-hexokinase'
|
Plug 'RRethy/vim-hexokinase'
|
||||||
Plug 'junegunn/goyo.vim'
|
Plug 'junegunn/goyo.vim'
|
||||||
|
" prevent commands being executed through modelines "
|
||||||
|
Plug 'ciaranm/securemodelines/'
|
||||||
|
" different colors for each layer of surrounding brackets
|
||||||
|
Plug 'luochen1990/rainbow'
|
||||||
|
let g:rainbow_active = 1
|
||||||
" ]]] vim-plug "
|
" ]]] vim-plug "
|
||||||
|
|
||||||
" Mappings [[[ "
|
" Mappings [[[ "
|
||||||
@@ -251,6 +256,8 @@ call plug#end()
|
|||||||
" colorscheme gotham256
|
" colorscheme gotham256
|
||||||
colorscheme wal
|
colorscheme wal
|
||||||
|
|
||||||
|
nnoremap Q @@
|
||||||
|
|
||||||
nnoremap v <C-V>
|
nnoremap v <C-V>
|
||||||
nnoremap > >>
|
nnoremap > >>
|
||||||
nnoremap < <<
|
nnoremap < <<
|
||||||
@@ -263,10 +270,14 @@ let mapleader="\<Space>"
|
|||||||
nnoremap <leader>a /^ <Left>
|
nnoremap <leader>a /^ <Left>
|
||||||
" replace until end of line
|
" replace until end of line
|
||||||
nnoremap <leader>c c$
|
nnoremap <leader>c c$
|
||||||
" delete entire buffer
|
" delete until end of line
|
||||||
nnoremap <leader>d d$
|
nnoremap <leader>d d$
|
||||||
" delete entire buffer
|
" delete entire buffer
|
||||||
nnoremap <leader>dg ggdG
|
nnoremap <leader>dg ggdG
|
||||||
|
" delete lines matching pattern
|
||||||
|
nnoremap <leader>dl :g//d<left><left>
|
||||||
|
" show docstring for cur word
|
||||||
|
nnoremap <leader>do :YcmCompleter GetDoc<CR>
|
||||||
" delete line into system clipboard
|
" delete line into system clipboard
|
||||||
nnoremap <leader>D "+dd
|
nnoremap <leader>D "+dd
|
||||||
" delete entire buffer into system clipboard
|
" delete entire buffer into system clipboard
|
||||||
@@ -395,11 +406,13 @@ autocmd Filetype tex inoremap <localleader>fa \forall
|
|||||||
autocmd Filetype tex inoremap <localleader>g \geq
|
autocmd Filetype tex inoremap <localleader>g \geq
|
||||||
autocmd Filetype tex inoremap <localleader>i \in
|
autocmd Filetype tex inoremap <localleader>i \in
|
||||||
autocmd Filetype tex inoremap <localleader>le \leq
|
autocmd Filetype tex inoremap <localleader>le \leq
|
||||||
autocmd Filetype tex inoremap <localleader>lo \log
|
autocmd Filetype tex inoremap <localleader>ln \log n
|
||||||
autocmd Filetype tex inoremap <localleader>lr \Leftrightarrow
|
autocmd Filetype tex inoremap <localleader>lr \Leftrightarrow
|
||||||
" autocmd Filetype tex inoremap <localleader>n \neg
|
" autocmd Filetype tex inoremap <localleader>n \neg
|
||||||
autocmd Filetype tex inoremap <localleader>n \neq
|
autocmd Filetype tex inoremap <localleader>n \neq
|
||||||
autocmd Filetype tex inoremap <localleader>N \mathbb{N}
|
autocmd Filetype tex inoremap <localleader>N \mathbb{N}
|
||||||
|
autocmd Filetype tex inoremap <localleader>pg \pagebreak<Enter>
|
||||||
|
autocmd Filetype tex inoremap <localleader>ph [,phantom]
|
||||||
autocmd Filetype tex inoremap <localleader>q \qquad
|
autocmd Filetype tex inoremap <localleader>q \qquad
|
||||||
autocmd Filetype tex inoremap <localleader>r \rightarrow
|
autocmd Filetype tex inoremap <localleader>r \rightarrow
|
||||||
autocmd Filetype tex inoremap <localleader>R \Rightarrow
|
autocmd Filetype tex inoremap <localleader>R \Rightarrow
|
||||||
|
|||||||
@@ -48,6 +48,9 @@ ctltd "sudo systemctl status dhcpcd"
|
|||||||
ctlr "sudo systemctl restart"
|
ctlr "sudo systemctl restart"
|
||||||
# ]]] systemctl #
|
# ]]] systemctl #
|
||||||
|
|
||||||
|
ct "crontab"
|
||||||
|
cte "crontab -e"
|
||||||
|
|
||||||
wm "sudo wifi-menu"
|
wm "sudo wifi-menu"
|
||||||
|
|
||||||
# mounting [[[ #
|
# mounting [[[ #
|
||||||
@@ -95,7 +98,7 @@ so "xset dpms force off"
|
|||||||
sd "systemctl poweroff"
|
sd "systemctl poweroff"
|
||||||
rb "systemctl reboot"
|
rb "systemctl reboot"
|
||||||
lo "i3-msg exit"
|
lo "i3-msg exit"
|
||||||
x "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE"
|
xm "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE"
|
||||||
X "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE"
|
X "xmodmap ~/.Xmodmap && xset r rate $XSET_DELAY $XSET_RATE"
|
||||||
{{ if eq .chezmoi.fullHostname "x1-carbon" }}
|
{{ if eq .chezmoi.fullHostname "x1-carbon" }}
|
||||||
xl "xmodmap ~/.Xmodmap-laptop && xset r rate $XSET_DELAY $XSET_RATE"
|
xl "xmodmap ~/.Xmodmap-laptop && xset r rate $XSET_DELAY $XSET_RATE"
|
||||||
@@ -144,7 +147,7 @@ yaq "yay -Qi"
|
|||||||
# remove
|
# remove
|
||||||
yar "yay -Rns"
|
yar "yay -Rns"
|
||||||
# sync
|
# sync
|
||||||
yaud "yay -Sy"
|
yau "yay -Sy"
|
||||||
# sync and download
|
# sync and download
|
||||||
yadl "yay -Syuw --answerclean=None --answerdiff=None --answeredit=None"
|
yadl "yay -Syuw --answerclean=None --answerdiff=None --answeredit=None"
|
||||||
# sync and update
|
# sync and update
|
||||||
@@ -157,7 +160,8 @@ xya "yay -Qqne > ~/{{ .chezmoi.os }}-config/txt/{{ .chezmoi.fullHostname }}-pkgs
|
|||||||
|
|
||||||
py "python"
|
py "python"
|
||||||
pyt "python -m unittest"
|
pyt "python -m unittest"
|
||||||
pipi "sudo pip install"
|
pipi "pip install"
|
||||||
|
spipi "sudo pip install"
|
||||||
|
|
||||||
# internet
|
# internet
|
||||||
pg "ping -c 3 -W 1 8.8.8.8"
|
pg "ping -c 3 -W 1 8.8.8.8"
|
||||||
@@ -329,7 +333,7 @@ gsts "git stash show stash@\{0\} -p"
|
|||||||
gclear "git stash clear"
|
gclear "git stash clear"
|
||||||
|
|
||||||
gpl "git pull --rebase"
|
gpl "git pull --rebase"
|
||||||
grb "git rebase -"
|
grb "git rebase -i"
|
||||||
grba "git rebase --abort"
|
grba "git rebase --abort"
|
||||||
grbc "git rebase --continue"
|
grbc "git rebase --continue"
|
||||||
|
|
||||||
@@ -397,7 +401,7 @@ upip "pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xa
|
|||||||
ureq "pip freeze > requirements.txt"
|
ureq "pip freeze > requirements.txt"
|
||||||
|
|
||||||
# show last history scan
|
# show last history scan
|
||||||
hlg "cat $spv_dir/src/api/management/commands/update-history.log | tail -n 1"
|
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
|
# scan cron log for hs cmd
|
||||||
@@ -410,6 +414,9 @@ snw "spotify-now -i '%artist - %title'"
|
|||||||
# ]]] spotify-lib-vis #
|
# ]]] spotify-lib-vis #
|
||||||
|
|
||||||
shc "shellcheck"
|
shc "shellcheck"
|
||||||
|
tll "tllocalmgr"
|
||||||
|
tli "tllocalmgr install"
|
||||||
|
# tlh "tllocalmgr texhash"
|
||||||
pdl "pdflatex"
|
pdl "pdflatex"
|
||||||
tcl "tex-clean"
|
tcl "tex-clean"
|
||||||
|
|
||||||
@@ -472,6 +479,9 @@ gpsb "git push bitbucket"
|
|||||||
|
|
||||||
# ]]] ada-mario #
|
# ]]] ada-mario #
|
||||||
|
|
||||||
|
sac "source ../../bin/activate.fish"
|
||||||
|
dea "deactivate"
|
||||||
|
|
||||||
# ]]] coding projs #
|
# ]]] coding projs #
|
||||||
|
|
||||||
# school [[[ #
|
# school [[[ #
|
||||||
@@ -483,7 +493,7 @@ ssc "ssh mokkar@teach.cs.utoronto.ca"
|
|||||||
jc "javac -d out *.java"
|
jc "javac -d out *.java"
|
||||||
jr "java -cp \"$CLASSPATH:out\""
|
jr "java -cp \"$CLASSPATH:out\""
|
||||||
|
|
||||||
wl1 "watson log --all --project=263 --tag=a1"
|
wl2 "watson log --all --project=263 --tag=a2"
|
||||||
wr1 "watson report --all --project=263 --tag=a1"
|
wr2 "watson report --all --project=263 --tag=a2"
|
||||||
|
|
||||||
# ]]] school #
|
# ]]] school #
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
# 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
|
||||||
@@ -24,29 +25,33 @@ tm /tmp
|
|||||||
|
|
||||||
# cdn [[[ #
|
# cdn [[[ #
|
||||||
|
|
||||||
|
cn ~/coding
|
||||||
|
ib ~/linux-config/dot_config/i3blocks/scripts
|
||||||
|
ra ~/linux-config/dot_config/ranger
|
||||||
|
sr ~/linux-config/scripts
|
||||||
|
swa ~/.local/share/nvim/swap
|
||||||
|
tx ~/linux-config/txt
|
||||||
|
wd ~/.config/watson
|
||||||
|
|
||||||
|
{{ if eq .chezmoi.fullHostname "nzxt" }}
|
||||||
b1 ~/coding/mf-site/themes/base16
|
b1 ~/coding/mf-site/themes/base16
|
||||||
2d ~/coding/godot-demos/2d-plat
|
2d ~/coding/godot-demos/2d-plat
|
||||||
ad ~/coding/ada-mario
|
ad ~/coding/ada-mario
|
||||||
ads ~/coding/ada-mario/scripts
|
ads ~/coding/ada-mario/scripts
|
||||||
adP ~/Pictures/ada-mario
|
adP ~/Pictures/ada-mario
|
||||||
cn ~/coding
|
|
||||||
ft ~/coding/face-tracker
|
ft ~/coding/face-tracker
|
||||||
ib ~/linux-config/dot_config/i3blocks/scripts
|
|
||||||
j ~/Documents/journal
|
j ~/Documents/journal
|
||||||
lh ~/Documents/listening-history
|
lh ~/Documents/listening-history
|
||||||
mmd ~/coding/move-mouse-with-head
|
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
|
||||||
ra ~/linux-config/dot_config/ranger
|
|
||||||
sr ~/linux-config/scripts
|
|
||||||
snp ~/.vim/plugged/vim-snippets/UltiSnips
|
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
|
||||||
swa ~/.local/share/nvim/swap
|
tb ~/coding/trapbot/src/trapbot
|
||||||
tx ~/linux-config/txt
|
|
||||||
wd ~/.config/watson
|
|
||||||
wo ~/Documents/workout-logs/11
|
wo ~/Documents/workout-logs/11
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
# ]]] cdn #
|
# ]]] cdn #
|
||||||
|
|
||||||
@@ -57,6 +62,7 @@ lt ~/school/latex-notes
|
|||||||
|
|
||||||
6 ~/school/263
|
6 ~/school/263
|
||||||
62 ~/school/263/a2
|
62 ~/school/263/a2
|
||||||
|
624 ~/school/263/a2/q4
|
||||||
62t ~/school/latex-notes/263/a2
|
62t ~/school/latex-notes/263/a2
|
||||||
|
|
||||||
al1 ~/school/algorithms/w1-union-find
|
al1 ~/school/algorithms/w1-union-find
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ case $2 in
|
|||||||
;;
|
;;
|
||||||
full )
|
full )
|
||||||
sudo rsync -PraAX --exclude-from="$exclude_dirs_list_full" / "$backup_dest/full"
|
sudo rsync -PraAX --exclude-from="$exclude_dirs_list_full" / "$backup_dest/full"
|
||||||
sudo rsync -PraAX /home "$backup_dest/full/home"
|
# sudo rsync -PraAX /home "$backup_dest/full"
|
||||||
# echo rsync -PraAX --exclude-from="$exclude_dirs_list_full" / "$backup_dest/full"
|
# echo rsync -PraAX --exclude-from="$exclude_dirs_list_full" / "$backup_dest/full"
|
||||||
# echo rsync -PraAX /home "$backup_dest/full/home"
|
# echo rsync -PraAX /home "$backup_dest/full/home"
|
||||||
esac
|
esac
|
||||||
|
|||||||
@@ -3,10 +3,15 @@
|
|||||||
/home/kevin/.ACEStream
|
/home/kevin/.ACEStream
|
||||||
/home/kevin/.android
|
/home/kevin/.android
|
||||||
/home/kevin/.AndroidStudio3.3
|
/home/kevin/.AndroidStudio3.3
|
||||||
|
/home/kevin/.config/chromium
|
||||||
|
/home/kevin/.config/discord
|
||||||
|
/home/kevin/.config/Slack
|
||||||
|
/home/kevin/.local/share/godot/templates
|
||||||
/home/kevin/Android
|
/home/kevin/Android
|
||||||
/home/kevin/coding/opencv
|
/home/kevin/coding/archived/opencv
|
||||||
/lost+found
|
/lost+found
|
||||||
/mnt
|
/mnt
|
||||||
|
/opt
|
||||||
/proc
|
/proc
|
||||||
/run
|
/run
|
||||||
/sys
|
/sys
|
||||||
|
|||||||
@@ -3,9 +3,9 @@ acestream-player
|
|||||||
android-studio
|
android-studio
|
||||||
aurvote
|
aurvote
|
||||||
bear
|
bear
|
||||||
chezmoi
|
|
||||||
chromium-widevine
|
chromium-widevine
|
||||||
cliqz-bin
|
cliqz-bin
|
||||||
|
compton-tryone-git
|
||||||
curseradio-git
|
curseradio-git
|
||||||
discord
|
discord
|
||||||
dragon-drag-and-drop-git
|
dragon-drag-and-drop-git
|
||||||
@@ -41,23 +41,32 @@ spotify-now-git
|
|||||||
st
|
st
|
||||||
steamos-xpad-dkms
|
steamos-xpad-dkms
|
||||||
systemd-numlockontty
|
systemd-numlockontty
|
||||||
|
texlive-local-adjustbox
|
||||||
texlive-local-algorithmicx
|
texlive-local-algorithmicx
|
||||||
texlive-local-algorithms
|
texlive-local-algorithms
|
||||||
texlive-local-biblatex
|
texlive-local-biblatex
|
||||||
texlive-local-biblatex-apa
|
texlive-local-biblatex-apa
|
||||||
|
texlive-local-collectbox
|
||||||
texlive-local-csquotes
|
texlive-local-csquotes
|
||||||
|
texlive-local-elocalloc
|
||||||
texlive-local-enumitem
|
texlive-local-enumitem
|
||||||
|
texlive-local-environ
|
||||||
|
texlive-local-forest
|
||||||
texlive-local-ifmtarg
|
texlive-local-ifmtarg
|
||||||
|
texlive-local-inlinedef
|
||||||
texlive-local-logreq
|
texlive-local-logreq
|
||||||
texlive-local-multirow
|
texlive-local-multirow
|
||||||
texlive-local-numprint
|
texlive-local-numprint
|
||||||
|
texlive-local-pgfopts
|
||||||
texlive-local-pgfplots
|
texlive-local-pgfplots
|
||||||
texlive-local-siunitx
|
texlive-local-siunitx
|
||||||
|
texlive-local-tikz-qtree
|
||||||
texlive-local-tkz-base
|
texlive-local-tkz-base
|
||||||
texlive-local-tkz-euclide
|
texlive-local-tkz-euclide
|
||||||
|
texlive-local-trimspaces
|
||||||
|
texlive-local-was
|
||||||
texlive-local-xifthen
|
texlive-local-xifthen
|
||||||
texlive-localmanager-git
|
texlive-localmanager-git
|
||||||
tor-browser
|
|
||||||
trizen
|
trizen
|
||||||
ttf-emojione
|
ttf-emojione
|
||||||
vidir
|
vidir
|
||||||
|
|||||||
@@ -21,9 +21,9 @@ cloc
|
|||||||
cmake
|
cmake
|
||||||
cmatrix
|
cmatrix
|
||||||
colordiff
|
colordiff
|
||||||
compton
|
|
||||||
coreutils
|
coreutils
|
||||||
cowsay
|
cowsay
|
||||||
|
cronie
|
||||||
cryptsetup
|
cryptsetup
|
||||||
device-mapper
|
device-mapper
|
||||||
dhcpcd
|
dhcpcd
|
||||||
@@ -55,6 +55,7 @@ gettext
|
|||||||
gimp
|
gimp
|
||||||
git
|
git
|
||||||
glibc
|
glibc
|
||||||
|
gradle
|
||||||
grep
|
grep
|
||||||
grub
|
grub
|
||||||
gzip
|
gzip
|
||||||
@@ -68,9 +69,12 @@ imv
|
|||||||
imwheel
|
imwheel
|
||||||
inetutils
|
inetutils
|
||||||
iniparser
|
iniparser
|
||||||
|
intellij-idea-community-edition
|
||||||
iproute2
|
iproute2
|
||||||
iputils
|
iputils
|
||||||
jfsutils
|
jfsutils
|
||||||
|
jp2a
|
||||||
|
junit
|
||||||
less
|
less
|
||||||
lib32-nvidia-utils
|
lib32-nvidia-utils
|
||||||
licenses
|
licenses
|
||||||
@@ -102,6 +106,7 @@ ntp
|
|||||||
numlockx
|
numlockx
|
||||||
nvidia-dkms
|
nvidia-dkms
|
||||||
nvidia-settings
|
nvidia-settings
|
||||||
|
openshot
|
||||||
openssh
|
openssh
|
||||||
os-prober
|
os-prober
|
||||||
pacman
|
pacman
|
||||||
@@ -135,6 +140,7 @@ ripgrep
|
|||||||
rsync
|
rsync
|
||||||
s-nail
|
s-nail
|
||||||
scrot
|
scrot
|
||||||
|
sdcv
|
||||||
sed
|
sed
|
||||||
shadow
|
shadow
|
||||||
shellcheck
|
shellcheck
|
||||||
@@ -174,6 +180,7 @@ valgrind
|
|||||||
vi
|
vi
|
||||||
vim
|
vim
|
||||||
virtualbox
|
virtualbox
|
||||||
|
vlc
|
||||||
vtk
|
vtk
|
||||||
w3m
|
w3m
|
||||||
which
|
which
|
||||||
|
|||||||
Reference in New Issue
Block a user