Compare commits
No commits in common. "0659d6ed3a6cea715053106c581c2da45821ccc3" and "14fe788e31756d8cbdb43ed7351d8536d0b15991" have entirely different histories.
0659d6ed3a
...
14fe788e31
@ -1,19 +0,0 @@
|
|||||||
bash
|
|
||||||
coreutils
|
|
||||||
dockutil
|
|
||||||
duti
|
|
||||||
fastfetch
|
|
||||||
git
|
|
||||||
gnu-sed
|
|
||||||
htop
|
|
||||||
imagemagick
|
|
||||||
ipcalc
|
|
||||||
neovim
|
|
||||||
newsboat
|
|
||||||
parallel
|
|
||||||
ripgrep
|
|
||||||
rsync
|
|
||||||
tmux
|
|
||||||
tree
|
|
||||||
wget
|
|
||||||
zsh
|
|
@ -1,38 +0,0 @@
|
|||||||
alfred
|
|
||||||
chatterino
|
|
||||||
dbeaver-community
|
|
||||||
displaylink
|
|
||||||
docker
|
|
||||||
firefox@nightly
|
|
||||||
font-hack-nerd-font
|
|
||||||
gimp
|
|
||||||
hiddenbar
|
|
||||||
iterm2
|
|
||||||
jordanbaird-ice
|
|
||||||
karabiner-elements
|
|
||||||
keepassxc
|
|
||||||
macfuse
|
|
||||||
megasync
|
|
||||||
microsoft-auto-update
|
|
||||||
microsoft-teams
|
|
||||||
mongodb-compass
|
|
||||||
mpv
|
|
||||||
mysides
|
|
||||||
obsidian
|
|
||||||
platypus
|
|
||||||
qbittorrent
|
|
||||||
qview
|
|
||||||
scroll-reverser
|
|
||||||
signal
|
|
||||||
skype
|
|
||||||
spotify
|
|
||||||
stats
|
|
||||||
telegram
|
|
||||||
the-unarchiver
|
|
||||||
transfer
|
|
||||||
twingate
|
|
||||||
vlc
|
|
||||||
winbox
|
|
||||||
wine-crossover
|
|
||||||
wireshark
|
|
||||||
zed@preview
|
|
@ -12,7 +12,7 @@ endif
|
|||||||
""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""
|
||||||
" Default settings nvim
|
" Default settings nvim
|
||||||
""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""
|
||||||
let g:python3_host_prog = expand('/opt/homebrew/bin/python3.13')
|
let g:python3_host_prog = expand('/opt/homebrew/bin/python3.12')
|
||||||
let g:loaded_python_provider = 0
|
let g:loaded_python_provider = 0
|
||||||
let g:python_host_prog = ''
|
let g:python_host_prog = ''
|
||||||
set autoindent
|
set autoindent
|
||||||
@ -668,7 +668,7 @@ autocmd BufWritePre *.tfvars lua vim.lsp.buf.format()
|
|||||||
|
|
||||||
" Markdown
|
" Markdown
|
||||||
autocmd BufRead,BufNewFile *.md setlocal spell spelllang=en_us
|
autocmd BufRead,BufNewFile *.md setlocal spell spelllang=en_us
|
||||||
autocmd BufWritePre *.md silent! undojoin | Neoformat mdformat
|
autocmd BufWritePre *.md silent! undojoin | Neoformat
|
||||||
|
|
||||||
" Automatically deletes all trailing whitespace and newlines at end of file on save.
|
" Automatically deletes all trailing whitespace and newlines at end of file on save.
|
||||||
autocmd BufWritePre * %s/\s\+$//e
|
autocmd BufWritePre * %s/\s\+$//e
|
||||||
|
@ -31,7 +31,6 @@
|
|||||||
exclude-file = !git update-index --assume-unchanged
|
exclude-file = !git update-index --assume-unchanged
|
||||||
c = commit --author='Marcin Woźniak <y0rune@aol.com> -s'
|
c = commit --author='Marcin Woźniak <y0rune@aol.com> -s'
|
||||||
cw = commit --author='Marcin Woźniak <marcin.wozniak@wundermanthompson.com> -s'
|
cw = commit --author='Marcin Woźniak <marcin.wozniak@wundermanthompson.com> -s'
|
||||||
retag = "!f() { if [ -z \"$1\" ]; then echo \"No version provided. Skipping git push.\"; else git tag --delete $1 2>/dev/null; git tag -a $1 -m \"Version $1\"; git push --tags -f; git push -f; fi; }; f"
|
|
||||||
|
|
||||||
[url "git@github.com:"]
|
[url "git@github.com:"]
|
||||||
insteadOf = "https://github.com/"
|
insteadOf = "https://github.com/"
|
||||||
|
@ -96,7 +96,7 @@ function install_neovim_module_for_python() {
|
|||||||
$pip install pynvim neovim imps $PIPEXTPRE
|
$pip install pynvim neovim imps $PIPEXTPRE
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_node() {
|
function install_node(){
|
||||||
if command_exists npm; then
|
if command_exists npm; then
|
||||||
timestamp "Node has been found"
|
timestamp "Node has been found"
|
||||||
else
|
else
|
||||||
@ -282,21 +282,16 @@ function install_spotifydl() {
|
|||||||
$pip install spotdl $PIPEXTPRE
|
$pip install spotdl $PIPEXTPRE
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_fzf() {
|
function update() {
|
||||||
# Install fzf
|
if [ -d $CONFIG/fzf ]; then
|
||||||
FOLDER="$CONFIG/fzf"
|
FOLDER="$CONFIG/fzf"
|
||||||
mkdir -p $FOLDER
|
|
||||||
|
|
||||||
if [ -d $FOLDER ]; then
|
|
||||||
cd $CONFIG || err "Folder $CONFIG has been NOT found"
|
|
||||||
git clone https://github.com/junegunn/fzf.git $FOLDER && timestamp "Cloning the FZF"
|
|
||||||
cd $FOLDER || err "Folder $FOLDER has been NOT found"
|
cd $FOLDER || err "Folder $FOLDER has been NOT found"
|
||||||
git pull -q && timestamp "Pulled the $FOLDER configuration"
|
git pull -q && timestamp "Pulling the $FOLDER configuration"
|
||||||
make install
|
else
|
||||||
|
FOLDER="$CONFIG/fzf"
|
||||||
|
git clone https://github.com/junegunn/fzf.git $FOLDER && timestamp "Cloning the FZF"
|
||||||
|
git pull -q && timestamp "Pulling the $FOLDER configuration"
|
||||||
fi
|
fi
|
||||||
}
|
|
||||||
|
|
||||||
function install_zsh_addons() {
|
|
||||||
|
|
||||||
if [ ! -d $ZSHFOLDER/aws ]; then
|
if [ ! -d $ZSHFOLDER/aws ]; then
|
||||||
curl -s https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/aws/aws.plugin.zsh \
|
curl -s https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/plugins/aws/aws.plugin.zsh \
|
||||||
@ -422,6 +417,7 @@ function install_tss_client() {
|
|||||||
ln -s $TSSFOLDER/tss $TSSLINK
|
ln -s $TSSFOLDER/tss $TSSLINK
|
||||||
chmod +x $TSSLINK
|
chmod +x $TSSLINK
|
||||||
fi
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_taplo() {
|
function install_taplo() {
|
||||||
@ -429,61 +425,11 @@ function install_taplo() {
|
|||||||
$install taplo
|
$install taplo
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_precommit() {
|
function install_precommit(){
|
||||||
# Install pre-commit
|
# Install pre-commit
|
||||||
$pip install pre-commit $PIPEXTPRE
|
$pip install pre-commit $PIPEXTPRE
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_streamlink() {
|
|
||||||
# Install streamlink
|
|
||||||
$pip install streamlink $PIPEXTPRE
|
|
||||||
}
|
|
||||||
|
|
||||||
function install_brew_programs() {
|
|
||||||
# Install brew programs
|
|
||||||
INSTALLED_PROGRAMS=$(brew list)
|
|
||||||
while IFS='' read -r line; do LIST_OF_PROGRAMS+=("$line"); done < <(cat "$HOME"/.brew_programs)
|
|
||||||
while IFS='' read -r line; do LIST_OF_PROGRAMS_CASK+=("$line"); done < <(cat "$HOME"/.brew_programs_cask)
|
|
||||||
|
|
||||||
for i in "${LIST_OF_PROGRAMS[@]}"; do
|
|
||||||
if [[ ! " ${INSTALLED_PROGRAMS[*]} " =~ ${i} ]]; then
|
|
||||||
brew install $i --force
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
for i in "${LIST_OF_PROGRAMS_CASK[@]}"; do
|
|
||||||
if [[ ! " ${INSTALLED_PROGRAMS[*]} " =~ ${i} ]]; then
|
|
||||||
brew install $i --cask --force
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
xattr -r -d com.apple.quarantine /Applications/Spotify.app
|
|
||||||
xattr -r -d com.apple.quarantine /Applications/Stats.app
|
|
||||||
|
|
||||||
xattr -r -d com.apple.quarantine /opt/homebrew/bin/mpv /Applications/mpv.app
|
|
||||||
duti -s io.mpv avi all
|
|
||||||
duti -s io.mpv mkv all
|
|
||||||
duti -s io.mpv mp4 all
|
|
||||||
duti -s io.mpv ts all
|
|
||||||
|
|
||||||
xattr -r -d com.apple.quarantine /Applications/qView.app
|
|
||||||
duti -s com.interversehq.qView public.jpeg all
|
|
||||||
duti -s com.interversehq.qView public.png all
|
|
||||||
duti -s com.interversehq.qView com.compuserve.gif all
|
|
||||||
duti -s com.interversehq.qView public.tiff all
|
|
||||||
|
|
||||||
xattr -r -d com.apple.quarantine /Applications/chatterino.app
|
|
||||||
|
|
||||||
brew cleanup --prune=all
|
|
||||||
}
|
|
||||||
|
|
||||||
function install_winbox_old() {
|
|
||||||
curl -o /tmp/winbox64.exe \
|
|
||||||
"$(curl --silent https://mikrotik.com/download | grep -o 'https:\/\/download.*winbox64.exe')"
|
|
||||||
mv -v /tmp/winbox64.exe ~/Applications/winbox.exe
|
|
||||||
xattr -cr ~/Applications/winbox.exe
|
|
||||||
}
|
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
command_start update_pip
|
command_start update_pip
|
||||||
command_start install_neovim_module_for_python
|
command_start install_neovim_module_for_python
|
||||||
@ -518,11 +464,7 @@ function main() {
|
|||||||
command_start install_tss_client
|
command_start install_tss_client
|
||||||
command_start install_taplo
|
command_start install_taplo
|
||||||
command_start install_precommit
|
command_start install_precommit
|
||||||
command_start install_streamlink
|
command_start update
|
||||||
command_start install_fzf
|
|
||||||
command_start install_winbox_old
|
|
||||||
command_start install_zsh_addons
|
|
||||||
command_start install_brew_programs
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main
|
main
|
||||||
|
@ -32,10 +32,10 @@ spotdl --user-auth --keep-alive \
|
|||||||
--yt-dlp-args no-check-certificates
|
--yt-dlp-args no-check-certificates
|
||||||
|
|
||||||
# Sync to Jellyfin
|
# Sync to Jellyfin
|
||||||
rsync -h --progress --recursive --ignore-existing \
|
rsync -h --progress --recursive \
|
||||||
$FOLDER_DUB/* docker-de:/mnt/HC_Volume_34966154/jellifin/media/music/Dub
|
$FOLDER_DUB/* docker-de:/mnt/HC_Volume_34966154/jellifin/media/music/Dub
|
||||||
|
|
||||||
rsync -h --progress --recursive --ignore-existing \
|
rsync -h --progress --recursive \
|
||||||
$FOLDER_FAV/* docker-de:/mnt/HC_Volume_34966154/jellifin/media/music/Fav
|
$FOLDER_FAV/* docker-de:/mnt/HC_Volume_34966154/jellifin/media/music/Fav
|
||||||
|
|
||||||
# Generate playlist
|
# Generate playlist
|
||||||
|
2
.zshrc
2
.zshrc
@ -77,7 +77,6 @@ export PATH=$HOME/go/bin:$PATH
|
|||||||
export PATH=$HOME/golang/bin:$PATH
|
export PATH=$HOME/golang/bin:$PATH
|
||||||
export PATH=$HOME/.local/bin:$PATH
|
export PATH=$HOME/.local/bin:$PATH
|
||||||
export PATH=$HOME/node_modules/.bin:$PATH
|
export PATH=$HOME/node_modules/.bin:$PATH
|
||||||
export PATH=$CONFIG/fzf/bin:$PATH
|
|
||||||
export GOPATH=$HOME/golang
|
export GOPATH=$HOME/golang
|
||||||
export PATH=$PATH:$HOME/.gem/ruby/2.6.0/bin
|
export PATH=$PATH:$HOME/.gem/ruby/2.6.0/bin
|
||||||
export PATH=$PATH:$HOME/.cargo/bin
|
export PATH=$PATH:$HOME/.cargo/bin
|
||||||
@ -116,7 +115,6 @@ alias feh="feh --edit --scale-down"
|
|||||||
alias graphic-card="glxinfo|egrep 'OpenGL vendor|OpenGL renderer'"
|
alias graphic-card="glxinfo|egrep 'OpenGL vendor|OpenGL renderer'"
|
||||||
alias mylaptop-components="inxi -Fxz"
|
alias mylaptop-components="inxi -Fxz"
|
||||||
alias update_time="sudo ntpdate -b -u vega.cbk.poznan.pl"
|
alias update_time="sudo ntpdate -b -u vega.cbk.poznan.pl"
|
||||||
alias dn='LC_TIME=C /bin/date "+%Y%m%d%H%M%S"'
|
|
||||||
|
|
||||||
# Alias and Export for Mac
|
# Alias and Export for Mac
|
||||||
if [[ "$(uname)" == "Darwin" ]]; then
|
if [[ "$(uname)" == "Darwin" ]]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user