From 81aa7cd3aa7b9f188b0674c7c01cb99dae6738ff Mon Sep 17 00:00:00 2001 From: Dominik Date: Thu, 6 Nov 2025 01:25:20 +0100 Subject: [PATCH] Deleted old files --- home/.Xresources | 9 ------ home/.zshrc | 79 ------------------------------------------------ 2 files changed, 88 deletions(-) delete mode 100644 home/.Xresources delete mode 100644 home/.zshrc diff --git a/home/.Xresources b/home/.Xresources deleted file mode 100644 index 9a43f7c..0000000 --- a/home/.Xresources +++ /dev/null @@ -1,9 +0,0 @@ -Xft.dpi: 144 -Xft.autohint: 0 -Xft.lcdfilter: lcddefault -Xft.hintstyle: hintslight -Xft.hinting: 1 -Xft.antialias: 1 -Xft.rgba: rgb -Xcursor.theme: Adwaita -Xcursor.size: 24 diff --git a/home/.zshrc b/home/.zshrc deleted file mode 100644 index ed80ba8..0000000 --- a/home/.zshrc +++ /dev/null @@ -1,79 +0,0 @@ -# Oh my zsh -export ZSH="$HOME/.oh-my-zsh" -ZSH_THEME="eastwood" -HIST_STAMPS="dd.mm.yyyy" -plugins=(git sudo) -source $ZSH/oh-my-zsh.sh - -# -- Linux Specific -- - -if [[ -z $DISPLAY ]] && [[ $(tty) == /dev/tty1 ]]; then - startx -fi - - - -# -- Local Setup --- - -# Preferred editor for local and remote sessions -if [[ -n $SSH_CONNECTION ]]; then - export EDITOR='nvim' - else - export EDITOR='nvim' - fi - - -# -- Env Paths --- - -# go -#export PATH=/usr/local/go/bin:$PATH - -# pyenv -#export PYENV_ROOT="$HOME/.pyenv" -#export PATH="$PYENV_ROOT/bin:$PATH" -#eval "$(pyenv init --path)" -#eval "$(pyenv init -)" - -# pipx -#export PATH="$PATH:/Users/agres/.local/bin" -#export PATH="$HOME/.local/bin:$PATH" -# pipx Linux -export PATH="$HOME/.local/bin:$PATH" - - -# bun -#[ -s "/Users/agres/.bun/_bun" ] && source "/Users/agres/.bun/_bun" -#export BUN_INSTALL="$HOME/.bun" -#export PATH="$BUN_INSTALL/bin:$PATH" - -# -- Customization -- - -# Alais: ls to run tree (without any flags) -unalias ls 2>/dev/null -ls() { - if [[ $# -eq 0 ]]; then - tree -L 1 - else - command ls -G "$@" - fi -} - -# Alias: list all modified and new files in current directory -alias lsgit='git status --porcelain | cut -c 4- | xargs ls -l' - -# Alias: wifi to print qr code in terminal from file (device adjustable) -alias wifi='cat /Users/agres/Projects/python_lang/wifi_qr/wifi_password.txt | qr --asci' - -# Alias: connect and disconnect bluetooth headphones -#alias airpods-connect='bluetoothctl --controller 6C:2F:80:E0:88:8B connect 80:95:3A:DC:8E:41' -alias airpods-connect='echo -e "select 12:34:56:78:9A:BC\nconnect 80:95:3A:DC:8E:41" | bluetoothctl >> /dev/null' -#alias airpods-disconnect='bluetoothctl --controller 6C:2F:80:E0:88:8B disconnect 80:95:3A:DC:8E:41' -alias airpods-disconnect='echo -e "select 12:34:56:78:9A:BC\ndisconnect 80:95:3A:DC:8E:41" | bluetoothctl >> /dev/null' -alias airpods='echo -e "select 12:34:56:78:9A:BC\ninfo 80:95:3A:DC:8E:41" | bluetoothctl | grep "Connected: "' - -# Alias: avoid nano -alias nano=nvim - -# Alias quick mount network smdb drive -alias md0='sudo mount --mkdir -t cifs //192.168.0.200/MD0 /mnt/md0 -o username=agres' -