This commit is contained in:
Jeff Lance 2019-03-31 10:05:21 +02:00
parent 9647cfe93b
commit 7a700d9768
9 changed files with 81 additions and 3 deletions

View File

@ -369,6 +369,7 @@ ACTIONS=cddb,read,encode,tag,move,clean,getalbumart,playlist
# It can be defined as a singletrack flac file, but since it might change from # It can be defined as a singletrack flac file, but since it might change from
# file to file it makes little sense to define it here. # file to file it makes little sense to define it here.
#CDROM=/dev/cdrom #CDROM=/dev/cdrom
CDROM=/dev/sr0
# If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d" # If we are using the IDE bus, we need CDPARANOIACDROMBUS defined as "d"
# If we are using the ide-scsi emulation layer, we need to define a "g" # If we are using the ide-scsi emulation layer, we need to define a "g"
#CDPARANOIACDROMBUS="d" #CDPARANOIACDROMBUS="d"
@ -403,7 +404,7 @@ OUTPUTTYPE=flac
OUTPUTFORMAT='${ARTISTFILE}/${YEAR} - ${ALBUMFILE}/${TRACKNUM} - ${ARTISTFILE} - ${ALBUMFILE} - ${TRACKFILE}' OUTPUTFORMAT='${ARTISTFILE}/${YEAR} - ${ALBUMFILE}/${TRACKNUM} - ${ARTISTFILE} - ${ALBUMFILE} - ${TRACKFILE}'
# Like OUTPUTFORMAT but for Various Artists discs. # Like OUTPUTFORMAT but for Various Artists discs.
VAOUTPUTFORMAT='Various - ${ARTISTFILE}/${YEAR} - ${ALBUMFILE}/${TRACKNUM} - ${ARTISTFILE} - ${ALBUMFILE} - ${TRACKFILE}' VAOUTPUTFORMAT='Various Artists/${YEAR} - ${ALBUMFILE}/${TRACKNUM} - ${ARTISTFILE} - ${ALBUMFILE} - ${TRACKFILE}'
# Like OUTPUTFORMAT and VAOUTPUTFORMAT but for the ONEFILE rips. # Like OUTPUTFORMAT and VAOUTPUTFORMAT but for the ONEFILE rips.
ONETRACKOUTPUTFORMAT=$OUTPUTFORMAT ONETRACKOUTPUTFORMAT=$OUTPUTFORMAT

36
confs/lgogdownloader.cfg Normal file
View File

@ -0,0 +1,36 @@
automatic-xml-creation = false
cache-valid = 2880
chunk-size = 10
curl-verbose = false
directory = /home/jeff/Téléchargements/jeux/
dlc-list = https://raw.githubusercontent.com/Sude-/lgogdownloader-lists/master/game_has_dlc.txt
exclude = covers
include = all
insecure = false
language = fr
limit-rate = 0
lowspeed-rate = 200
lowspeed-timeout = 30
no-color = false
no-duplicate-handling = false
no-remote-xml = false
no-subdirectories = false
no-unicode = false
platform = linux
progress-interval = 100
retries = 3
save-changelogs = false
save-serials = false
secret = 7af9c1e88972ed65a9f7859616d9c0a837856140
subdir-dlc = dlc/%dlcname%
subdir-extras = extras
subdir-game = %gamename%
subdir-installers =
subdir-language-packs = languagepacks
subdir-patches = patches
threads = 4
timeout = 10
token = 8e643606d2b3747a5f7221e7f0b58f4a614c84e7
use-cache = false
verbose = false
wait = 0

View File

@ -55,7 +55,7 @@ zeroconf = Mopidy MPD server on $hostname
default_playlist_scheme = m3u default_playlist_scheme = m3u
[http] [http]
enabled = false enabled = true
#hostname = 127.0.0.1 #hostname = 127.0.0.1
#port = 6680 #port = 6680
#static_dir = #static_dir =

View File

@ -0,0 +1,4 @@
- link:
~/.config/lgogdownloader/config.cfg:
create: true
path: confs/lgogdownloader.cfg

@ -1 +1 @@
Subproject commit 3320658f30e0556bae0844629a265ae71f807cc1 Subproject commit 9509fd6a9193e32e5c2d460786253ba0e98fd741

View File

@ -7,6 +7,16 @@
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Custom
"
"
" NERDTree
"
" Trigger configuration
map <f2> :NERDTreeToggle<CR>
" "
" UltiSnips " UltiSnips
" "

View File

@ -57,3 +57,6 @@ hash -d dot="$HOME/Dotfiles"
alias ec="emacsclient -t" alias ec="emacsclient -t"
alias emacs="emacsclient-oneframe.sh" alias emacs="emacsclient-oneframe.sh"
alias ltxmk="latexmk $1 && latexmk -c $1" alias ltxmk="latexmk $1 && latexmk -c $1"
# Other
alias open="xdg-open $1"

View File

@ -12,5 +12,12 @@ fi
# set PATH so it includes miniconda bin dir if it exists # set PATH so it includes miniconda bin dir if it exists
path=(~/miniconda3/bin $path[@]) path=(~/miniconda3/bin $path[@])
# set PATH for nvm
export NVM_DIR="$HOME/nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# environment variables # environment variables
export EDITOR=nano export EDITOR=nano
export XDG_CURRENT_DESKTOP=
# export DESKTOP_SESSION=

View File

@ -98,3 +98,20 @@ export LANG=fr_FR.UTF-8
# Example aliases # Example aliases
# alias zshconfig="mate ~/.zshrc" # alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh" # alias ohmyzsh="mate ~/.oh-my-zsh"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/jeff/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/jeff/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/jeff/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/jeff/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<