again.
This commit is contained in:
30
.config/shell/aliases
Normal file
30
.config/shell/aliases
Normal file
@@ -0,0 +1,30 @@
|
||||
alias rh='cd ~'
|
||||
alias cl='clear'
|
||||
alias lg='ls -lg'
|
||||
alias lsl='ls -l -h'
|
||||
alias cd..='cd ..'
|
||||
alias sc='sc-im'
|
||||
alias w3d='w3m duckduckgo.com'
|
||||
alias neo='neofetch'
|
||||
alias rb='reboot'
|
||||
alias sdn='shutdown now'
|
||||
|
||||
alias psi='sudo pacman -S'
|
||||
alias pss='sudo pacman -Ss'
|
||||
alias psy='sudo pacman -Sy'
|
||||
alias psu='sudo pacman -Syu'
|
||||
alias pr='sudo pacman -R'
|
||||
alias ys='yay -S'
|
||||
alias yss='yay -Ss'
|
||||
alias ysu='yay -Syu'
|
||||
alias yr='yay -R'
|
||||
|
||||
alias ub='source ~/.bashrc'
|
||||
|
||||
|
||||
|
||||
alias mmus='sudo mount -t cifs -o username=nobody,password="",noperm //192.168.1.79/mushare $HOME/mnt/mushare'
|
||||
alias dump='sudo mount -t cifs -o username=nobody,password="",noperm //192.168.1.79/dump $HOME/mnt/dump'
|
||||
alias movies='sudo mount -t cifs -o username=nobody,password="",noperm //192.168.1.79/movies $HOME/mnt/movies'
|
||||
|
||||
alias forgot='less $HOME/.config/shell/aliases'
|
||||
104
.config/shell/profile
Normal file
104
.config/shell/profile
Normal file
@@ -0,0 +1,104 @@
|
||||
#
|
||||
# This file is the replacement for '~/.bash_profile'. It is an attempt to
|
||||
# make one agnostic and coherent env profile that will work across multiple
|
||||
# system set-up's.
|
||||
#
|
||||
|
||||
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||
|
||||
#add '~/.local/bin' to path
|
||||
[[ -d $HOME/.local/bin ]] && export PATH=$HOME/.local/bin:$PATH
|
||||
|
||||
#default progz
|
||||
export TERMINAL="terminator"
|
||||
export BROWSER="brave"
|
||||
export EDITOR="vim"
|
||||
|
||||
#~/ sorting
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
export XDG_DATA_HOME="$HOME/.local/share"
|
||||
export XDG_CACHE_HOME="$HOME/.cache"
|
||||
export LESSHISTFILE="-"
|
||||
export XINITRC="${XDG_CONFIG_HOME:-$HOME/.config}/x11/xinitrc"
|
||||
|
||||
# This is the list for lf icons:
|
||||
export LF_ICONS="di=📁:\
|
||||
fi=📃:\
|
||||
tw=🤝:\
|
||||
ow=📂:\
|
||||
ln=⛓:\
|
||||
or=❌:\
|
||||
ex=🎯:\
|
||||
*.txt=✍:\
|
||||
*.mom=✍:\
|
||||
*.me=✍:\
|
||||
*.ms=✍:\
|
||||
*.png=🖼:\
|
||||
*.webp=🖼:\
|
||||
*.ico=🖼:\
|
||||
*.jpg=📸:\
|
||||
*.jpe=📸:\
|
||||
*.jpeg=📸:\
|
||||
*.gif=🖼:\
|
||||
*.svg=🗺:\
|
||||
*.tif=🖼:\
|
||||
*.tiff=🖼:\
|
||||
*.xcf=🖌:\
|
||||
*.html=🌎:\
|
||||
*.xml=📰:\
|
||||
*.gpg=🔒:\
|
||||
*.css=🎨:\
|
||||
*.pdf=📚:\
|
||||
*.djvu=📚:\
|
||||
*.epub=📚:\
|
||||
*.csv=📓:\
|
||||
*.xlsx=📓:\
|
||||
*.tex=📜:\
|
||||
*.md=📘:\
|
||||
*.r=📊:\
|
||||
*.R=📊:\
|
||||
*.rmd=📊:\
|
||||
*.Rmd=📊:\
|
||||
*.m=📊:\
|
||||
*.mp3=🎵:\
|
||||
*.opus=🎵:\
|
||||
*.ogg=🎵:\
|
||||
*.m4a=🎵:\
|
||||
*.flac=🎼:\
|
||||
*.wav=🎼:\
|
||||
*.mkv=🎥:\
|
||||
*.mp4=🎥:\
|
||||
*.webm=🎥:\
|
||||
*.mpeg=🎥:\
|
||||
*.avi=🎥:\
|
||||
*.mov=🎥:\
|
||||
*.mpg=🎥:\
|
||||
*.wmv=🎥:\
|
||||
*.m4b=🎥:\
|
||||
*.flv=🎥:\
|
||||
*.zip=📦:\
|
||||
*.rar=📦:\
|
||||
*.7z=📦:\
|
||||
*.tar.gz=📦:\
|
||||
*.z64=🎮:\
|
||||
*.v64=🎮:\
|
||||
*.n64=🎮:\
|
||||
*.gba=🎮:\
|
||||
*.nes=🎮:\
|
||||
*.gdi=🎮:\
|
||||
*.1=ℹ:\
|
||||
*.nfo=ℹ:\
|
||||
*.info=ℹ:\
|
||||
*.log=📙:\
|
||||
*.iso=📀:\
|
||||
*.img=📀:\
|
||||
*.bib=🎓:\
|
||||
*.ged=👪:\
|
||||
*.part=💔:\
|
||||
*.torrent=🔽:\
|
||||
*.jar=♨:\
|
||||
*.java=♨:\
|
||||
"
|
||||
|
||||
#start the desktop
|
||||
exec startx "$XINITRC"
|
||||
Reference in New Issue
Block a user