Add/update dotfiles

This commit is contained in:
Santiago Lo Coco 2021-12-26 20:08:07 -03:00
parent c802b56865
commit 17b28a6870
3 changed files with 332 additions and 1 deletions

7
dotfiles/.gtk-bookmarks Normal file
View File

@ -0,0 +1,7 @@
file:///home/slococo/ITBA ITBA
file:///home/slococo/Desktop Desktop
file:///home/slococo/Downloads Downloads
file:///home/slococo/Documents Documents
file:///home/slococo/Pictures Pictures
file:///home/slococo/Videos Videos
file:///mnt mnt

316
dotfiles/.octave_packages Normal file
View File

@ -0,0 +1,316 @@
# Created by Octave 6.4.0, Sun Nov 07 09:39:07 2021 -03 <slococo@archLinux>
# name: local_packages
# type: cell
# rows: 1
# columns: 2
# name: <cell-element>
# type: scalar struct
# ndims: 2
1 1
# length: 17
# name: name
# type: sq_string
# elements: 1
# length: 2
io
# name: version
# type: sq_string
# elements: 1
# length: 5
2.6.3
# name: date
# type: sq_string
# elements: 1
# length: 10
2020-11-02
# name: author
# type: sq_string
# elements: 1
# length: 15
various authors
# name: maintainer
# type: sq_string
# elements: 1
# length: 41
Philip Nienhuis <prnienhuis@users.sf.net>
# name: title
# type: sq_string
# elements: 1
# length: 12
Input/Output
# name: description
# type: sq_string
# elements: 1
# length: 33
Input/Output in external formats.
# name: categories
# type: sq_string
# elements: 1
# length: 2
IO
# name: problems
# type: sq_string
# elements: 1
# length: 118
Default initial Java memory probably too small, increase with java.opts (see documentation). UNO support experimental.
# name: depends
# type: cell
# rows: 1
# columns: 1
# name: <cell-element>
# type: scalar struct
# ndims: 2
1 1
# length: 3
# name: package
# type: sq_string
# elements: 1
# length: 6
octave
# name: operator
# type: sq_string
# elements: 1
# length: 2
>=
# name: version
# type: sq_string
# elements: 1
# length: 5
4.2.0
# name: suggested
# type: sq_string
# elements: 1
# length: 36
windows (>= 1.2.1); Java JRE (> 1.8)
# name: autoload
# type: sq_string
# elements: 1
# length: 2
no
# name: license
# type: sq_string
# elements: 1
# length: 22
GPLv3+, simplified BSD
# name: url
# type: sq_string
# elements: 1
# length: 20
http://octave.sf.net
# name: dir
# type: sq_string
# elements: 1
# length: 29
/home/slococo/octave/io-2.6.3
# name: archprefix
# type: sq_string
# elements: 1
# length: 29
/home/slococo/octave/io-2.6.3
# name: loaded
# type: bool
0
# name: <cell-element>
# type: scalar struct
# ndims: 2
1 1
# length: 13
# name: name
# type: sq_string
# elements: 1
# length: 10
statistics
# name: version
# type: sq_string
# elements: 1
# length: 5
1.4.2
# name: date
# type: sq_string
# elements: 1
# length: 10
2020-03-23
# name: author
# type: sq_string
# elements: 1
# length: 15
various authors
# name: maintainer
# type: sq_string
# elements: 1
# length: 47
Octave-Forge community <maintainers@octave.org>
# name: title
# type: sq_string
# elements: 1
# length: 10
Statistics
# name: description
# type: sq_string
# elements: 1
# length: 43
Additional statistics functions for Octave.
# name: categories
# type: sq_string
# elements: 1
# length: 10
Statistics
# name: depends
# type: cell
# rows: 1
# columns: 2
# name: <cell-element>
# type: scalar struct
# ndims: 2
1 1
# length: 3
# name: package
# type: sq_string
# elements: 1
# length: 6
octave
# name: operator
# type: sq_string
# elements: 1
# length: 2
>=
# name: version
# type: sq_string
# elements: 1
# length: 5
4.0.0
# name: <cell-element>
# type: scalar struct
# ndims: 2
1 1
# length: 3
# name: package
# type: sq_string
# elements: 1
# length: 2
io
# name: operator
# type: sq_string
# elements: 1
# length: 2
>=
# name: version
# type: sq_string
# elements: 1
# length: 6
1.0.18
# name: license
# type: sq_string
# elements: 1
# length: 21
GPLv3+, public domain
# name: url
# type: sq_string
# elements: 1
# length: 20
http://octave.sf.net
# name: dir
# type: sq_string
# elements: 1
# length: 37
/home/slococo/octave/statistics-1.4.2
# name: archprefix
# type: sq_string
# elements: 1
# length: 37
/home/slococo/octave/statistics-1.4.2

View File

@ -20,7 +20,15 @@ alias gp='git pull'
alias gpsh='git push'
alias gss='git status -s'
# Undo commit (https://stackoverflow.com/questions/2845731/how-to-uncommit-my-last-commit-in-git)
alias gundo='git reset --soft HEAD^'
alias gundo='git reset --soft HEAD~1'
alias gck='git checkout'
gamp() {
git add .
local var="$@"
git commit -m "$var"
git push
}
alias exiftcl='exiftool -all='
alias exift='exiftool'