fedora bashrc updates
parent
7365189f0e
commit
a4263419b2
|
@ -0,0 +1,15 @@
|
|||
[user]
|
||||
name = CrimsonTome
|
||||
email = crimsontome427@gmail.com
|
||||
[author]
|
||||
name = Matt Clark
|
||||
email = 4matt2clark7@gmail.com
|
||||
[url "git@github.com:"]
|
||||
insteadOf = https://github.com/
|
||||
[url "git@github.com:"]
|
||||
insteadOf = https://github.com/
|
||||
[url "ssh://git@github.com:"]
|
||||
insteadOf = https://github.com/
|
||||
|
||||
[pull]
|
||||
rebase = true
|
|
@ -28,10 +28,10 @@ unset rc
|
|||
|
||||
|
||||
|
||||
PS1=$"\w\n💻"$(tput blink)"-> "$(tput sgr0)
|
||||
PS1=$"\w\n`whoami`💻`hostname`"$(tput blink)"-> "$(tput sgr0)
|
||||
|
||||
|
||||
alias ls='ls -Al --color=auto'
|
||||
alias ls='ls -Alh --color=auto'
|
||||
alias di='sudo dnf install'
|
||||
alias dud='sudo dnf update -y'
|
||||
alias ds='dnf search'
|
||||
|
@ -191,6 +191,11 @@ gittimemachine() {
|
|||
git reset HEAD@{$index}
|
||||
# magic time machine
|
||||
}
|
||||
gitcloneorg() {
|
||||
read -p "Enter org name: " name
|
||||
GHORG={$name}; curl "https://api.github.com/orgs/$GHORG/repos?per_page=1000" | grep -o 'git@[^"]*' | xargs -L1 git clone
|
||||
|
||||
}
|
||||
|
||||
#PF_INFO="ascii title os host kernel uptime shell wm de"
|
||||
#PF_ASCII="fedora" pfetch|lolcat #displays sysem info on bash startup
|
||||
|
|
Loading…
Reference in New Issue