Guest User

Untitled

a guest
Mar 22nd, 2024
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. alias bgit='/bin/git --git-dir=$HOME/kiste/.void-setup/dotfiles.git --work-tree=$HOME'
  2. alias cat='bat'
  3. alias kernellist='vkpurge list'
  4. alias kernelsearch='xbps-query --regex -Rs "^linux[0-9.]+-[0-9._]+"'
  5. alias kernelwipe='sudo vkpurge rm $(vkpurge list | sort -Vr | tail -n +2)'
  6. alias ll='eza -l -F -T -L2 --no-time --git --icons --group-directories-first'
  7. alias ls='eza -l -F --no-time --no-user --no-permissions --git --icons --group-directories-first'
  8. alias me='echo "${USER}@$(hostname)"'
  9. alias micro='micro -ruler=off -colorscheme torsten'
  10. alias neofetch='neofetch --uptime_shorthand '\''tiny'\'' --cpu_temp '\''C'\'''
  11. alias wgit='/bin/git --git-dir=$HOME/kiste/.void-setup/wallpapers.git --work-tree=$HOME/kiste/pics/wallpaper'
  12. alias xdeb='xdeb -Sde'
  13. alias xterm='xterm -fn ""-xos4-*-medium-r-normal-*-14-*-*-*-*-*-*-*""'
  14.  
  15. [[ -f /etc/doas.conf ]] && alias sudo='doas'
  16.  
  17. function free(){
  18. noti=$(/bin/free -hm | awk '/Speicher/ { print $3 " / " $2}')
  19. /bin/free -hm
  20. #notify-send "$noti"
  21. }
  22.  
  23. function o(){
  24. if [ -z "$1" ]; then
  25. xdg-open "$(find . | rofi -dmenu -i -theme torsten-o.rasi)"
  26. else
  27. xdg-open "$1"
  28. fi
  29. }
  30.  
  31. function age(){
  32. echo $(\ls -alct --time-style=full-iso / | tail -1 | awk '{print $6}')
  33. }
  34.  
  35. function cl() {
  36. clear && colorscript -e panes && ufetch
  37. }
  38.  
  39.  
Advertisement
Add Comment
Please, Sign In to add comment