Skip to content

Commit

Permalink
Added Foliate to the package list and added a 'note' bash function.
Browse files Browse the repository at this point in the history
  • Loading branch information
argosatcore committed Jun 10, 2021
1 parent f8e844f commit b40a4bc
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 21 deletions.
2 changes: 0 additions & 2 deletions .bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,11 @@
alias c='clear'
alias configheader='toilet -f pagga'
alias fp='ps aux | fzf'
alias note='nvim Desktop/Notes/Notes.txt'

#Apt:
alias aptdate='sudo apt update'
alias aptgradable='apt list --upgradable'
alias aptgrade='sudo apt upgrade'
alias lookapt='apt search'
alias throwapt='sudo apt remove'
alias capture='sudo apt install'
alias debcount='apt-cache search "" | wc -l'
Expand Down
9 changes: 8 additions & 1 deletion .bash_functions
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@
}


# ------Pull up quick notes on random topics:
note() {
touch ~/Desktop/Notes/"$1"
nvim ~/Desktop/Notes/"$1"
}


# ------Use fzf as a file opener:
fo() {
file="$(fdfind -t f -H | fzf --reverse --preview="head -$LINES {}" --bind="space:toggle-preview" --preview-window=wrap:hidden)"
Expand Down Expand Up @@ -39,7 +46,7 @@

# -----Fuzzy find packages with Apt:
lookapt() {
apt-cache pkgnames | fzf --multi --cycle --reverse --preview "apt-cache show {1}" --preview-window=:57%:wrap:hidden --bind=space:toggle-preview
apt-cache pkgnames | fzf --multi --cycle --reverse --preview "apt-cache show {1}" --preview-window=:99%:wrap:hidden --bind=space:toggle-preview
}

# ------Clean system:
Expand Down
Binary file modified .config/dconf/user
Binary file not shown.
Binary file modified .config/libreoffice/4/user/pack/registrymodifications.pack
Binary file not shown.
36 changes: 20 additions & 16 deletions .config/libreoffice/4/user/registrymodifications.xcu

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions .vim/.netrwhist
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhistcnt =1
let g:netrw_dirhistcnt =2
let g:netrw_dirhist_2='/home/argos/Desktop/Notes'
let g:netrw_dirhist_1='/home/argos/.config'
let g:netrw_dirhist_0='/home/argos/.config/foot'
let g:netrw_dirhist_9='/home/argos/.config'
Expand All @@ -9,4 +10,3 @@ let g:netrw_dirhist_6='/home/argos/.config'
let g:netrw_dirhist_5='/home/argos/.config/wlogout'
let g:netrw_dirhist_4='/home/argos/.config/gtk-3.0'
let g:netrw_dirhist_3='/home/argos/.config/wlogout'
let g:netrw_dirhist_2='/home/argos/.config/gtk-3.0'
3 changes: 3 additions & 0 deletions Debstrap/waystrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ echo 'Installing Zotero...'
echo ' '
flatpak install flathub org.zotero.Zotero
echo ' '
echo 'Installing Foliate...'
flatpak install flathub com.github.johnfactotum.Foliate
echo ' '
echo 'Capturing dotfiles...'
echo ' '
git clone git@github.com:argosatcore/Deb_Dots.git
Expand Down

0 comments on commit b40a4bc

Please sign in to comment.