Wrote script to clean up LaTeX build files
Used Shellcheck to change all my scripts to bash and lint them. Exported my scripts to $PATH. Fixed my liked Arch packages.
This commit is contained in:
@@ -39,7 +39,7 @@ function gpdf() {
|
|||||||
# for finding files by name
|
# for finding files by name
|
||||||
function rf() { find . -name '$1' ; }
|
function rf() { find . -name '$1' ; }
|
||||||
# find text inside files
|
# find text inside files
|
||||||
function rg() { grep -nr $1 * ; }
|
function rg() { grep -nr $1 ; }
|
||||||
function cpd() { cp -avr $1 $2 ; }
|
function cpd() { cp -avr $1 $2 ; }
|
||||||
alias pk="pkill -f"
|
alias pk="pkill -f"
|
||||||
|
|
||||||
@@ -122,7 +122,7 @@ alias vlh="alsamixer -c 2"
|
|||||||
# alias aptu="sudo apt upgrade"
|
# alias aptu="sudo apt upgrade"
|
||||||
alias pc="sudo pacman -S"
|
alias pc="sudo pacman -S"
|
||||||
alias pcr="sudo pacman -Rs"
|
alias pcr="sudo pacman -Rs"
|
||||||
alias spc="pacman -Qqe > ~/linux-config/txt/pacman-pkgs/pacman-pkgs.txt"
|
alias xpc="pacman -Qqe > ~/linux-config/txt/pacman-pkgs/nzxt-pkgs.txt"
|
||||||
# alias tri="trizen -S --noconfirm"
|
# alias tri="trizen -S --noconfirm"
|
||||||
alias tri="trizen -S"
|
alias tri="trizen -S"
|
||||||
|
|
||||||
@@ -342,11 +342,14 @@ alias hs="$spv_dir/src/update-history.sh && hlg"
|
|||||||
# function svm() { mv $1 ~/.local/share/Steam/steamapps/common/Stardew\ Valley/Mods ; }
|
# function svm() { mv $1 ~/.local/share/Steam/steamapps/common/Stardew\ Valley/Mods ; }
|
||||||
# # }}}
|
# # }}}
|
||||||
|
|
||||||
|
alias shc="cs && shellcheck"
|
||||||
|
|
||||||
# }}} coding projs #
|
# }}} coding projs #
|
||||||
|
|
||||||
# school {{{ #
|
# school {{{ #
|
||||||
|
|
||||||
alias pdl="pdflatex"
|
alias pdl="pdflatex"
|
||||||
|
alias tcl="texclear"
|
||||||
|
|
||||||
# 343
|
# 343
|
||||||
alias ij="sudo ~/Downloads/idea/bin/idea.sh $silent"
|
alias ij="sudo ~/Downloads/idea/bin/idea.sh $silent"
|
||||||
|
|||||||
@@ -458,8 +458,8 @@ font pango:Hack 11
|
|||||||
# }}} mod key/font #
|
# }}} mod key/font #
|
||||||
|
|
||||||
# media keys {{{ #
|
# media keys {{{ #
|
||||||
bindsym $mod+d exec ~/linux-config/scripts/change-sink.sh dac
|
bindsym $mod+d exec ~/linux-config/scripts/change-sink dac
|
||||||
bindsym $mod+o exec ~/linux-config/scripts/change-sink.sh line-out
|
bindsym $mod+o exec ~/linux-config/scripts/change-sink line-out
|
||||||
|
|
||||||
bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -c 0 sset Master 3+
|
bindsym XF86AudioRaiseVolume exec --no-startup-id amixer -c 0 sset Master 3+
|
||||||
bindsym XF86AudioLowerVolume exec --no-startup-id amixer -c 0 sset Master 3-
|
bindsym XF86AudioLowerVolume exec --no-startup-id amixer -c 0 sset Master 3-
|
||||||
|
|||||||
@@ -37,12 +37,17 @@ autocmd Filetype css,htmldjango,html,tex,txt,markdown set tabstop=2 shiftwidth=2
|
|||||||
autocmd BufNewFile,BufRead *.md set filetype=markdown
|
autocmd BufNewFile,BufRead *.md set filetype=markdown
|
||||||
autocmd Filetype markdown set textwidth=0
|
autocmd Filetype markdown set textwidth=0
|
||||||
|
|
||||||
autocmd BufWritePost key_*.txt !bash ~/linux-config/scripts/shortcuts.sh
|
autocmd BufWritePost key_*.txt !sync-shortcuts
|
||||||
" auto-reload vimrc when saved
|
autocmd VimLeave *.tex !texclear %
|
||||||
augroup myvimrc
|
|
||||||
au!
|
" " auto-reload vimrc {{{ "
|
||||||
au BufWritePost .vimrc,_vimrc,vimrc,.gvimrc,_gvimrc,gvimrc so $MYVIMRC | if has('gui_running') | so $MYGVIMRC | endif
|
|
||||||
augroup END
|
" augroup myvimrc
|
||||||
|
" au!
|
||||||
|
" au BufWritePost .vimrc,_vimrc,vimrc,.gvimrc,_gvimrc,gvimrc so $MYVIMRC | if has('gui_running') | so $MYGVIMRC | endif
|
||||||
|
" augroup END
|
||||||
|
|
||||||
|
" " }}} auto-reload vimrc "
|
||||||
|
|
||||||
" }}} commands for file types "
|
" }}} commands for file types "
|
||||||
|
|
||||||
@@ -76,14 +81,17 @@ Plug 'xolox/vim-misc'
|
|||||||
Plug '907th/vim-auto-save'
|
Plug '907th/vim-auto-save'
|
||||||
let g:auto_save = 1
|
let g:auto_save = 1
|
||||||
|
|
||||||
" compile LaTeX PDF while writing the file
|
|
||||||
" Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
|
|
||||||
|
|
||||||
" provides various functionality for writing LaTeX in Vim
|
" provides various functionality for writing LaTeX in Vim
|
||||||
Plug 'lervag/vimtex'
|
Plug 'lervag/vimtex'
|
||||||
au BufWritePost *.tex silent call Tex_RunLaTeX()
|
au BufWritePost *.tex silent call Tex_RunLaTeX()
|
||||||
au BufWritePost *.tex silent !pkill -USR1 xdvi.bin
|
au BufWritePost *.tex silent !pkill -USR1 xdvi.bin
|
||||||
let g:vimtex_view_general_viewer = 'zathura'
|
let g:vimtex_view_general_viewer = 'zathura'
|
||||||
|
let g:vimtex_quickfix_latexlog = {
|
||||||
|
\ 'overfull' : 0,
|
||||||
|
\ 'underfull' : 0,
|
||||||
|
\ 'global' : 0,
|
||||||
|
\ 'unused' : 0,
|
||||||
|
\}
|
||||||
|
|
||||||
" auto-completion for various languages
|
" auto-completion for various languages
|
||||||
Plug 'Valloric/YouCompleteMe'
|
Plug 'Valloric/YouCompleteMe'
|
||||||
@@ -159,6 +167,7 @@ map <F6> :make -C ~/Documents/resume cv<CR>
|
|||||||
map <F7> :AutoSaveToggle<CR>
|
map <F7> :AutoSaveToggle<CR>
|
||||||
" map <F9> :LLPStartPreview<CR>
|
" map <F9> :LLPStartPreview<CR>
|
||||||
map <F9> :VimtexCompile<CR>:VimtexView<CR>
|
map <F9> :VimtexCompile<CR>:VimtexView<CR>
|
||||||
|
" map <F9> :VimtexCompile<CR>
|
||||||
nnoremap <F10> :set paste<CR>"+p:set nopaste<CR>
|
nnoremap <F10> :set paste<CR>"+p:set nopaste<CR>
|
||||||
" }}} function keys "
|
" }}} function keys "
|
||||||
|
|
||||||
@@ -221,7 +230,7 @@ nnoremap <leader>rv :source $MYVIMRC<CR>
|
|||||||
" replace in entire file
|
" replace in entire file
|
||||||
nnoremap <leader>R q:i%s///g<ESC>2F/i
|
nnoremap <leader>R q:i%s///g<ESC>2F/i
|
||||||
" sort lines
|
" sort lines
|
||||||
nnoremap <leader>s q:i.,.+sort<ESC>Fsi
|
nnoremap <leader>so q:i.,.+sort<ESC>Fsi
|
||||||
" set syntax to shell (for dotfiles)
|
" set syntax to shell (for dotfiles)
|
||||||
nnoremap <leader>sh :set syn=sh<CR>
|
nnoremap <leader>sh :set syn=sh<CR>
|
||||||
" format current line
|
" format current line
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# pywal
|
# pywal
|
||||||
export PATH="${PATH}:${HOME}/.local/bin/"
|
export PATH="${PATH}:${HOME}/.local/bin/:${HOME}/linux-config/scripts"
|
||||||
(cat ~/.cache/wal/sequences &)
|
(cat ~/.cache/wal/sequences &)
|
||||||
|
|
||||||
# keyboard delay/rate
|
# keyboard delay/rate
|
||||||
|
|||||||
@@ -4,9 +4,8 @@
|
|||||||
backup_dest=/run/media/kevin/pc-backup/backups/nzxt
|
backup_dest=/run/media/kevin/pc-backup/backups/nzxt
|
||||||
|
|
||||||
# Labels for backup name
|
# Labels for backup name
|
||||||
PC=${HOST}
|
|
||||||
distro=arch
|
distro=arch
|
||||||
datetime=$(date "+%m.%d-%H.%M")
|
datetime=$(date "+%m.%d-%H.%M")
|
||||||
backupfile="$backup_dest/$datetime-$distro.tar.gz"
|
backupfile="$backup_dest/$datetime-$distro.tar.gz"
|
||||||
|
|
||||||
sudo tar -czpvf $backupfile --exclude=/lost+found --exclude=/mnt --exclude=/proc --exclude=/run --exclude=/sys /
|
sudo tar -czpvf "$backupfile" --exclude=/lost+found --exclude=/mnt --exclude=/proc --exclude=/run --exclude=/sys /
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#Device name variable
|
#Device name variable
|
||||||
if [ $1 = "dac" ]; then
|
if [ "$1" = "dac" ]; then
|
||||||
devicename="alsa_output.usb-FiiO_DigiHug_USB_Audio-01.analog-stereo"
|
devicename="alsa_output.usb-FiiO_DigiHug_USB_Audio-01.analog-stereo"
|
||||||
elif [ $1 = "line-out" ]; then
|
elif [ "$1" = "line-out" ]; then
|
||||||
devicename="alsa_output.pci-0000_00_14.2.analog-stereo"
|
devicename="alsa_output.pci-0000_00_14.2.analog-stereo"
|
||||||
fi
|
fi
|
||||||
echo "$devicename"
|
echo "$devicename"
|
||||||
|
|
||||||
#change the default sink
|
#change the default sink
|
||||||
pacmd "set-default-sink "$devicename""
|
pacmd "set-default-sink $devicename"
|
||||||
|
|
||||||
#move all inputs to the new sink
|
#move all inputs to the new sink
|
||||||
for app in $(pacmd list-sink-inputs | sed -n -e 's/index:[[:space:]]\([[:digit:]]\)/\1/p');
|
for app in $(pacmd list-sink-inputs | sed -n -e 's/index:[[:space:]]\([[:digit:]]\)/\1/p');
|
||||||
do
|
do
|
||||||
pacmd "move-sink-input $app "$devicename""
|
pacmd "move-sink-input $app $devicename"
|
||||||
done
|
done
|
||||||
@@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
sudo pacman -Sy --needed - < ../txt/pacman-pkgs/pacman-pkgs.txt
|
# to-do: fix shellscript error?
|
||||||
sudo trizen -Sy --needed - < ../txt/pacman-pkgs/aur-pkgs.txt
|
pacman -Sy --needed - < ../txt/pacman-pkgs/pacman-pkgs.txt
|
||||||
|
trizen -Sy --needed - < ../txt/pacman-pkgs/aur-pkgs.txt
|
||||||
|
# sudo pacman -Sy --needed - < ../txt/pacman-pkgs/pacman-pkgs.txt
|
||||||
|
# sudo trizen -Sy --needed - < ../txt/pacman-pkgs/aur-pkgs.txt
|
||||||
|
|||||||
40
scripts/texclear
Executable file
40
scripts/texclear
Executable file
@@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Delete TeX build files when exiting from Vim or call on directory/directly to
|
||||||
|
# remove from there.
|
||||||
|
|
||||||
|
ext_list="/home/kevin/linux-config/txt/tex-build-files.txt"
|
||||||
|
raw_exts="$(tr '\n' '|' < $ext_list)"
|
||||||
|
exts="(${raw_exts::-1})"
|
||||||
|
echo "$exts"
|
||||||
|
find_flags=(-maxdepth 1 -type f -regextype gnu-awk -regex)
|
||||||
|
|
||||||
|
remove_build_files () {
|
||||||
|
regex=$2
|
||||||
|
# echo find "$1" "${find_flags[@]}" "$regex" -delete -print
|
||||||
|
eval find "$1" "${find_flags[@]}" "$regex" -delete -print
|
||||||
|
}
|
||||||
|
|
||||||
|
# when less than one argument, remove build files in current dir
|
||||||
|
if [[ "$#" -lt 1 ]]; then
|
||||||
|
regex=(\"^.*\\."$exts"$\")
|
||||||
|
remove_build_files . "${regex[0]}"
|
||||||
|
else
|
||||||
|
case "$1" in
|
||||||
|
# if tex file, remove only build files for that file
|
||||||
|
*.tex)
|
||||||
|
file=$(readlink -f "$1")
|
||||||
|
dir=$(dirname "$file")
|
||||||
|
base="${file%.*}"
|
||||||
|
regex=(\"^"$base"\\."$exts"$\")
|
||||||
|
remove_build_files "$dir" "${regex[0]}" ;;
|
||||||
|
# remove all build files in directory if given valid one
|
||||||
|
*)
|
||||||
|
if [[ -d "$1" ]]; then
|
||||||
|
regex=(\"^.*\\."$exts"$\")
|
||||||
|
remove_build_files "$1" "${regex[0]}"
|
||||||
|
else
|
||||||
|
printf "Give .tex file or directory as argument.\\n"
|
||||||
|
fi ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
@@ -1,33 +1,15 @@
|
|||||||
#!/bin/zsh
|
#!/bin/bash
|
||||||
|
|
||||||
setup_marble=false
|
|
||||||
|
|
||||||
linux_config_dir=/home/kevin/linux-config
|
linux_config_dir=/home/kevin/linux-config
|
||||||
dot_dir=$linux_config_dir/dotfiles
|
dot_dir=$linux_config_dir/dotfiles
|
||||||
pc=$(hostname)
|
|
||||||
|
|
||||||
# Get directory variables from script.
|
# Get directory variables from script.
|
||||||
# List of dotfiles I want to link to system.
|
# List of dotfiles I want to link to system.
|
||||||
dotfiles=(bashrc gitconfig inputrc imwheelrc vimrc Xmodmap Xresources zshrc)
|
dotfiles=(bashrc inputrc imwheelrc vimrc Xmodmap Xresources zshrc)
|
||||||
cd $dot_dir
|
cd $dot_dir || exit
|
||||||
for dotfile in $dotfiles; do
|
for dotfile in "${dotfiles[@]}"; do
|
||||||
# Remove system dotfile.
|
# Remove system dotfile.
|
||||||
rm ~/."$dotfile"
|
rm ~/."$dotfile"
|
||||||
# Link dotfile in repository to system dotfile.
|
# Link dotfile in repository to system dotfile.
|
||||||
cp "$dot_dir"/"$dotfile" ~/."$dotfile"
|
cp "$dot_dir"/"$dotfile" ~/."$dotfile"
|
||||||
done
|
done
|
||||||
|
|
||||||
# marble mouse {{{ #
|
|
||||||
|
|
||||||
if [[ "$setup_marble" = true ]]; then
|
|
||||||
config_file_name="10-evdev.conf"
|
|
||||||
sys_layout_file="/etc/X11/xorg.conf.d/$config_file_name"
|
|
||||||
config_dir="$linux_config_dir/x/marble-mouse"
|
|
||||||
|
|
||||||
# Remove system file.
|
|
||||||
sudo rm -rf "$sys_layout_file"
|
|
||||||
# Link config file in repository to system config location.
|
|
||||||
sudo cp "$config_dir"/"$config_file_name" "$sys_layout_file"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# }}} marble mouse #
|
|
||||||
|
|||||||
38
setup.sh
38
setup.sh
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/zsh
|
#!/bin/bash
|
||||||
|
|
||||||
setup_marble=true
|
# setup_marble=true
|
||||||
|
|
||||||
# vars {{{ #
|
# vars {{{ #
|
||||||
|
|
||||||
@@ -8,7 +8,6 @@ linux_config_dir=/home/kevin/linux-config
|
|||||||
dot_dir=$linux_config_dir/dotfiles
|
dot_dir=$linux_config_dir/dotfiles
|
||||||
config_dir=$linux_config_dir/configs
|
config_dir=$linux_config_dir/configs
|
||||||
sys_config_dir=~/.config
|
sys_config_dir=~/.config
|
||||||
pc=$(hostname)
|
|
||||||
|
|
||||||
# }}} vars #
|
# }}} vars #
|
||||||
|
|
||||||
@@ -19,8 +18,8 @@ pc=$(hostname)
|
|||||||
# Get directory variables from script.
|
# Get directory variables from script.
|
||||||
# List of dotfiles I want to link to system.
|
# List of dotfiles I want to link to system.
|
||||||
dotfiles=(bashrc gitconfig inputrc imwheelrc vimrc xinitrc Xmodmap Xresources zshrc)
|
dotfiles=(bashrc gitconfig inputrc imwheelrc vimrc xinitrc Xmodmap Xresources zshrc)
|
||||||
cd $dot_dir
|
cd $dot_dir || exit
|
||||||
for dotfile in $dotfiles; do
|
for dotfile in "${dotfiles[@]}"; do
|
||||||
# Remove system dotfile.
|
# Remove system dotfile.
|
||||||
rm ~/."$dotfile"
|
rm ~/."$dotfile"
|
||||||
# Link dotfile in repository to system dotfile.
|
# Link dotfile in repository to system dotfile.
|
||||||
@@ -43,30 +42,29 @@ ln -s "$dot_dir"/nvim "$orig_file" && echo "Setup Neovim config."
|
|||||||
|
|
||||||
# configs {{{ #
|
# configs {{{ #
|
||||||
|
|
||||||
cd $linux_config_dir
|
cd $linux_config_dir || exit
|
||||||
# List of config dirs in system config dir that I want to link to.
|
# List of config dirs in system config dir that I want to link to.
|
||||||
config_dirs=(neofetch i3 i3blocks sam-i3blocks ranger)
|
config_dirs=(neofetch i3 i3blocks sam-i3blocks ranger)
|
||||||
# config_dirs=(neofetch i3 i3blocks ranger)
|
for cur_dir in "${config_dirs[@]}"; do
|
||||||
for cur_dir in $config_dirs; do
|
|
||||||
# Remove system file.
|
# Remove system file.
|
||||||
rm -rf "$sys_config_dir"/"$cur_dir"
|
rm -rf ${sys_config_dir:?}/"$cur_dir"
|
||||||
# Link config file in repository to system config location.
|
# Link config file in repository to system config location.
|
||||||
ln -s "$config_dir"/"$cur_dir" "$sys_config_dir"/"$cur_dir" && echo "Linked $cur_dir config."
|
ln -s "$config_dir"/"$cur_dir" "$sys_config_dir"/"$cur_dir" && echo "Linked $cur_dir config."
|
||||||
done
|
done
|
||||||
|
|
||||||
# }}} configs #
|
# }}} configs #
|
||||||
|
|
||||||
# marble mouse {{{ #
|
# # marble mouse {{{ #
|
||||||
|
|
||||||
if [[ "$setup_marble" = true ]]; then
|
# if [[ "$setup_marble" = true ]]; then
|
||||||
config_file_name="10-evdev.conf"
|
# config_file_name="10-evdev.conf"
|
||||||
sys_layout_file="/etc/X11/xorg.conf.d/$config_file_name"
|
# sys_layout_file="/etc/X11/xorg.conf.d/$config_file_name"
|
||||||
config_dir="$linux_config_dir/x/marble-mouse"
|
# config_dir="$linux_config_dir/x/marble-mouse"
|
||||||
|
|
||||||
# Remove system file.
|
# # Remove system file.
|
||||||
sudo rm -rf "$sys_layout_file"
|
# sudo rm -rf "$sys_layout_file"
|
||||||
# Link config file in repository to system config location.
|
# # Link config file in repository to system config location.
|
||||||
sudo ln -s "$config_dir"/"$config_file_name" "$sys_layout_file" && echo "Setup Marble mouse config."
|
# sudo ln -s "$config_dir"/"$config_file_name" "$sys_layout_file" && echo "Setup Marble mouse config."
|
||||||
fi
|
# fi
|
||||||
|
|
||||||
# }}} marble mouse #
|
# # }}} marble mouse #
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
discord
|
||||||
|
texlive-localmanager-git
|
||||||
gscreenshot
|
gscreenshot
|
||||||
rxvt-unicode-pixbuf
|
rxvt-unicode-pixbuf
|
||||||
Hack NF
|
Hack NF
|
||||||
|
|||||||
@@ -8,16 +8,21 @@ broadcom-wl
|
|||||||
bzip2
|
bzip2
|
||||||
chromium
|
chromium
|
||||||
chromium-widevine
|
chromium-widevine
|
||||||
|
cloc
|
||||||
cmake
|
cmake
|
||||||
|
cmatrix
|
||||||
colordiff
|
colordiff
|
||||||
|
compton
|
||||||
coreutils
|
coreutils
|
||||||
cryptsetup
|
cryptsetup
|
||||||
device-mapper
|
device-mapper
|
||||||
dhcpcd
|
dhcpcd
|
||||||
dialog
|
dialog
|
||||||
diffutils
|
diffutils
|
||||||
|
discord
|
||||||
dmenu
|
dmenu
|
||||||
e2fsprogs
|
e2fsprogs
|
||||||
|
evince
|
||||||
fakeroot
|
fakeroot
|
||||||
feh
|
feh
|
||||||
file
|
file
|
||||||
@@ -36,7 +41,7 @@ grep
|
|||||||
grub
|
grub
|
||||||
gscreenshot
|
gscreenshot
|
||||||
gzip
|
gzip
|
||||||
htop
|
htop-vim-git
|
||||||
i3-gaps
|
i3-gaps
|
||||||
i3blocks
|
i3blocks
|
||||||
i3status
|
i3status
|
||||||
@@ -70,7 +75,9 @@ nvidia
|
|||||||
pacman
|
pacman
|
||||||
patch
|
patch
|
||||||
pciutils
|
pciutils
|
||||||
|
pdfgrep
|
||||||
perl
|
perl
|
||||||
|
pipes.sh
|
||||||
pkgconf
|
pkgconf
|
||||||
procps-ng
|
procps-ng
|
||||||
psmisc
|
psmisc
|
||||||
@@ -79,6 +86,7 @@ python-dbus
|
|||||||
python-pip
|
python-pip
|
||||||
python-pywal
|
python-pywal
|
||||||
python-setuptools
|
python-setuptools
|
||||||
|
qdirstat
|
||||||
ranger
|
ranger
|
||||||
redshift
|
redshift
|
||||||
reiserfsprogs
|
reiserfsprogs
|
||||||
@@ -86,16 +94,28 @@ rxvt-unicode-pixbuf
|
|||||||
s-nail
|
s-nail
|
||||||
sed
|
sed
|
||||||
shadow
|
shadow
|
||||||
|
shellcheck
|
||||||
spotify
|
spotify
|
||||||
st
|
st
|
||||||
sudo
|
sudo
|
||||||
sysfsutils
|
sysfsutils
|
||||||
sysstat
|
sysstat
|
||||||
|
systemd-numlockontty
|
||||||
systemd-sysvcompat
|
systemd-sysvcompat
|
||||||
tar
|
tar
|
||||||
texinfo
|
texinfo
|
||||||
|
texlive-core
|
||||||
|
texlive-local-algorithmicx
|
||||||
|
texlive-local-algorithms
|
||||||
|
texlive-local-enumitem
|
||||||
|
texlive-local-hyperref
|
||||||
|
texlive-local-numprint
|
||||||
|
texlive-local-pgfplots
|
||||||
|
texlive-local-tkz-base
|
||||||
|
texlive-local-tkz-euclide
|
||||||
|
texlive-localmanager-git
|
||||||
|
trizen
|
||||||
ttf-dejavu
|
ttf-dejavu
|
||||||
udiskie
|
|
||||||
udisks2
|
udisks2
|
||||||
unzip
|
unzip
|
||||||
usbutils
|
usbutils
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
alsa-utils
|
alsa-utils
|
||||||
autoconf
|
|
||||||
automake
|
automake
|
||||||
bash
|
|
||||||
bc
|
bc
|
||||||
bison
|
|
||||||
broadcom-wl
|
broadcom-wl
|
||||||
bzip2
|
|
||||||
chromium
|
chromium
|
||||||
chromium-widevine
|
chromium-widevine
|
||||||
cloc
|
cloc
|
||||||
@@ -13,159 +9,65 @@ cmake
|
|||||||
cmatrix
|
cmatrix
|
||||||
colordiff
|
colordiff
|
||||||
compton
|
compton
|
||||||
coreutils
|
|
||||||
cryptsetup
|
|
||||||
device-mapper
|
|
||||||
dhcpcd
|
dhcpcd
|
||||||
dialog
|
dialog
|
||||||
diffutils
|
diffutils
|
||||||
discord
|
|
||||||
dmenu
|
dmenu
|
||||||
e2fsprogs
|
|
||||||
evince
|
evince
|
||||||
fakeroot
|
fakeroot
|
||||||
feh
|
feh
|
||||||
file
|
|
||||||
filesystem
|
|
||||||
findutils
|
findutils
|
||||||
flex
|
|
||||||
fzf
|
fzf
|
||||||
gawk
|
|
||||||
gcc
|
|
||||||
gcc-libs
|
|
||||||
gdb
|
|
||||||
gettext
|
|
||||||
git
|
git
|
||||||
glibc
|
|
||||||
grep
|
grep
|
||||||
grub
|
grub
|
||||||
gscreenshot
|
|
||||||
gzip
|
|
||||||
htop-vim-git
|
htop-vim-git
|
||||||
i3-gaps
|
i3-gaps
|
||||||
i3blocks
|
i3blocks
|
||||||
i3status
|
i3status
|
||||||
imwheel
|
imwheel
|
||||||
inetutils
|
|
||||||
iniparser
|
|
||||||
iproute2
|
|
||||||
iputils
|
|
||||||
jfsutils
|
|
||||||
less
|
less
|
||||||
lib32-nvidia-utils
|
|
||||||
licenses
|
|
||||||
linux
|
linux
|
||||||
linux-firmware
|
linux-firmware
|
||||||
linux-headers
|
linux-headers
|
||||||
logrotate
|
|
||||||
lolcat
|
lolcat
|
||||||
lsof
|
lsof
|
||||||
lvm2
|
|
||||||
make
|
make
|
||||||
man-db
|
|
||||||
man-pages
|
|
||||||
mdadm
|
|
||||||
nano
|
|
||||||
neofetch
|
neofetch
|
||||||
neovim
|
neovim
|
||||||
netctl
|
netctl
|
||||||
noto-fonts
|
noto-fonts
|
||||||
ntfs-3g
|
ntfs-3g
|
||||||
nvidia
|
|
||||||
pacman
|
pacman
|
||||||
patch
|
|
||||||
pciutils
|
|
||||||
pdfgrep
|
pdfgrep
|
||||||
perl
|
perl
|
||||||
pipes.sh
|
pipes.sh
|
||||||
pkgconf
|
|
||||||
procps-ng
|
|
||||||
psmisc
|
|
||||||
pulseaudio
|
pulseaudio
|
||||||
python-dbus
|
python-dbus
|
||||||
python-pip
|
python-pip
|
||||||
python-pywal
|
python-pywal
|
||||||
python-setuptools
|
python-setuptools
|
||||||
|
qdirstat
|
||||||
ranger
|
ranger
|
||||||
redshift
|
redshift
|
||||||
reiserfsprogs
|
|
||||||
rxvt-unicode-pixbuf
|
rxvt-unicode-pixbuf
|
||||||
s-nail
|
|
||||||
sed
|
sed
|
||||||
shadow
|
shellcheck
|
||||||
spotify
|
spotify
|
||||||
st
|
st
|
||||||
sudo
|
sudo
|
||||||
sysfsutils
|
|
||||||
sysstat
|
|
||||||
systemd-numlockontty
|
systemd-numlockontty
|
||||||
systemd-sysvcompat
|
|
||||||
tar
|
tar
|
||||||
texinfo
|
texinfo
|
||||||
|
texlive-core
|
||||||
trizen
|
trizen
|
||||||
ttf-dejavu
|
ttf-dejavu
|
||||||
udisks2
|
udisks2
|
||||||
unzip
|
unzip
|
||||||
usbutils
|
|
||||||
util-linux
|
|
||||||
vi
|
vi
|
||||||
w3m
|
w3m
|
||||||
which
|
|
||||||
wireless_tools
|
wireless_tools
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
xclip
|
xclip
|
||||||
xf86-input-evdev
|
|
||||||
xf86-input-keyboard
|
|
||||||
xf86-input-mouse
|
|
||||||
xf86-input-synaptics
|
|
||||||
xf86-input-vmmouse
|
|
||||||
xf86-input-void
|
|
||||||
xf86-video-amdgpu
|
|
||||||
xf86-video-ati
|
|
||||||
xf86-video-dummy
|
|
||||||
xf86-video-fbdev
|
|
||||||
xf86-video-intel
|
|
||||||
xf86-video-nouveau
|
|
||||||
xf86-video-openchrome
|
|
||||||
xf86-video-qxl
|
|
||||||
xf86-video-vesa
|
|
||||||
xf86-video-vmware
|
|
||||||
xf86-video-voodoo
|
|
||||||
xfsprogs
|
|
||||||
xorg-bdftopcf
|
|
||||||
xorg-iceauth
|
|
||||||
xorg-luit
|
|
||||||
xorg-mkfontdir
|
|
||||||
xorg-mkfontscale
|
|
||||||
xorg-server
|
|
||||||
xorg-sessreg
|
|
||||||
xorg-smproxy
|
|
||||||
xorg-x11perf
|
|
||||||
xorg-xbacklight
|
|
||||||
xorg-xcmsdb
|
|
||||||
xorg-xcursorgen
|
|
||||||
xorg-xdpyinfo
|
|
||||||
xorg-xdriinfo
|
|
||||||
xorg-xev
|
|
||||||
xorg-xgamma
|
|
||||||
xorg-xhost
|
|
||||||
xorg-xinit
|
|
||||||
xorg-xinput
|
|
||||||
xorg-xkbevd
|
|
||||||
xorg-xkbutils
|
|
||||||
xorg-xkill
|
|
||||||
xorg-xlsatoms
|
|
||||||
xorg-xlsclients
|
|
||||||
xorg-xpr
|
|
||||||
xorg-xprop
|
|
||||||
xorg-xrandr
|
|
||||||
xorg-xrefresh
|
|
||||||
xorg-xset
|
|
||||||
xorg-xsetroot
|
|
||||||
xorg-xvinfo
|
|
||||||
xorg-xwd
|
|
||||||
xorg-xwininfo
|
|
||||||
xorg-xwud
|
|
||||||
zathura
|
zathura
|
||||||
zathura-pdf-poppler
|
|
||||||
zsh
|
zsh
|
||||||
|
|||||||
23
txt/tex-build-files.txt
Normal file
23
txt/tex-build-files.txt
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
4tc
|
||||||
|
aux
|
||||||
|
bak
|
||||||
|
bbl
|
||||||
|
bcf
|
||||||
|
blg
|
||||||
|
fdb_latexmk
|
||||||
|
fls
|
||||||
|
lof
|
||||||
|
log
|
||||||
|
nav
|
||||||
|
out
|
||||||
|
pyc
|
||||||
|
pyo
|
||||||
|
run\\.xml
|
||||||
|
snm
|
||||||
|
swp
|
||||||
|
synctex\\(busy\\)
|
||||||
|
synctex\\.gz
|
||||||
|
tmp
|
||||||
|
toc
|
||||||
|
vrb
|
||||||
|
xref
|
||||||
Reference in New Issue
Block a user