* Added HW-Sensors alias and keyboard shortcut * Added new packages to packages.both (from 2016.06 archiso update) * Disabled gputests for i686 builds * Errors would cause an incomplete line to be left in the log causing a false-positive * HW-Diags will no longer upload results if the Ticket# starts with '0' * Added chmod flags to the rsync upload * Initial work to add custom-repos * Open GUI progs without entering a password (e.g. GParted) * The wallpaper should now be loaded from the UFD. * Still need to move scripts or add a "settings" file * mount-all-volumes now shows the mount-points while mounting (like running manually) * photorec-sort 7z archive testing is currently stalling, disabled for now
33 lines
1.3 KiB
Bash
33 lines
1.3 KiB
Bash
#!/bin/zsh
|
|
alias 7z0='7z a -t7z -mx=0'
|
|
alias 7z1='7z a -t7z -mx=1'
|
|
alias 7z3='7z a -t7z -mx=3'
|
|
alias 7z5='7z a -t7z -mx=5'
|
|
alias 7z7='7z a -t7z -mx=7'
|
|
alias 7z9='7z a -t7z -mx=9'
|
|
alias diff='colordiff' -ur
|
|
alias du='du -sch --apparent-size'
|
|
alias fix-perms='find -type d -exec chmod 755 "{}" \; && find -type f -exec chmod 644 "{}" \;'
|
|
alias less='less -S'
|
|
alias mkdir='mkdir -p'
|
|
alias mount='sudo mount'
|
|
alias mv='mv -nv'
|
|
alias photorec="sudo photorec"
|
|
alias photorec-sort="sudo photorec-sort"
|
|
alias q1='clear && sudo ls -1'
|
|
alias q1a='clear && sudo ls -1A'
|
|
alias q='clear && sudo ls -lh'
|
|
alias qa='clear && sudo ls -lAh'
|
|
alias qs='clear && sudo ls'
|
|
alias qsa='clear && sudo ls -A'
|
|
alias rm='rm -v'
|
|
alias rmdirs='find -depth -mindepth 1 -type d -exec rmdir "{}" --ignore-fail-on-non-empty \;'
|
|
alias rs='rsync -avhPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
|
alias rsz='rsync -avhzPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
|
alias sdu='sudo du -sch --apparent-size'
|
|
alias srmdirs='find -depth -mindepth 1 -type d -exec sudo rmdir "{}" --ignore-fail-on-non-empty \;'
|
|
alias srs='sudo rsync -avhPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
|
alias srsz='sudo rsync -avhzPS --stats --exclude-from="$HOME/.rsync_exclusions"'
|
|
alias testdisk="sudo testdisk"
|
|
alias umount='sudo umount'
|
|
alias unmount='sudo umount'
|