Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
d3b867d9
Commit
d3b867d9
authored
Dec 02, 2012
by
Robby Russell
Browse files
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
parents
ab13d075
badc3eb6
Changes
6
Hide whitespace changes
Inline
Side-by-side
plugins/archlinux/archlinux.plugin.zsh
View file @
d3b867d9
...
@@ -11,7 +11,7 @@ if [[ -x `which yaourt` ]]; then
...
@@ -11,7 +11,7 @@ if [[ -x `which yaourt` ]]; then
alias
yaupg
=
'yaourt -Syu'
# Synchronize with repositories before upgrading packages that are out of date on the local system.
alias
yaupg
=
'yaourt -Syu'
# Synchronize with repositories before upgrading packages that are out of date on the local system.
alias
yasu
=
'yaourt --sucre'
# Same as yaupg, but without confirmation
alias
yasu
=
'yaourt --sucre'
# Same as yaupg, but without confirmation
alias
yain
=
'yaourt -S'
# Install specific package(s) from the repositories
alias
yain
=
'yaourt -S'
# Install specific package(s) from the repositories
alias
yains
=
'yaourt -U'
# Install specific package not from the repositories but from a file
alias
yains
=
'yaourt -U'
# Install specific package not from the repositories but from a file
alias
yare
=
'yaourt -R'
# Remove the specified package(s), retaining its configuration(s) and required dependencies
alias
yare
=
'yaourt -R'
# Remove the specified package(s), retaining its configuration(s) and required dependencies
alias
yarem
=
'yaourt -Rns'
# Remove the specified package(s), its configuration(s) and unneeded dependencies
alias
yarem
=
'yaourt -Rns'
# Remove the specified package(s), its configuration(s) and unneeded dependencies
alias
yarep
=
'yaourt -Si'
# Display information about a given package in the repositories
alias
yarep
=
'yaourt -Si'
# Display information about a given package in the repositories
...
@@ -35,7 +35,7 @@ fi
...
@@ -35,7 +35,7 @@ fi
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips
alias
pacupg
=
'sudo pacman -Syu'
# Synchronize with repositories before upgrading packages that are out of date on the local system.
alias
pacupg
=
'sudo pacman -Syu'
# Synchronize with repositories before upgrading packages that are out of date on the local system.
alias
pacin
=
'sudo pacman -S'
# Install specific package(s) from the repositories
alias
pacin
=
'sudo pacman -S'
# Install specific package(s) from the repositories
alias
pacins
=
'sudo pacman -U'
# Install specific package not from the repositories but from a file
alias
pacins
=
'sudo pacman -U'
# Install specific package not from the repositories but from a file
alias
pacre
=
'sudo pacman -R'
# Remove the specified package(s), retaining its configuration(s) and required dependencies
alias
pacre
=
'sudo pacman -R'
# Remove the specified package(s), retaining its configuration(s) and required dependencies
alias
pacrem
=
'sudo pacman -Rns'
# Remove the specified package(s), its configuration(s) and unneeded dependencies
alias
pacrem
=
'sudo pacman -Rns'
# Remove the specified package(s), its configuration(s) and unneeded dependencies
alias
pacrep
=
'pacman -Si'
# Display information about a given package in the repositories
alias
pacrep
=
'pacman -Si'
# Display information about a given package in the repositories
...
@@ -75,3 +75,19 @@ pacdisowned() {
...
@@ -75,3 +75,19 @@ pacdisowned() {
comm
-23
"
$fs
"
"
$db
"
comm
-23
"
$fs
"
"
$db
"
}
}
pacmanallkeys
()
{
# Get all keys for developers and trusted users
curl https://www.archlinux.org/
{
developers,trustedusers
}
/ |
awk
-F
\"
'(/pgp.mit.edu/) {sub(/.*search=0x/,"");print $1}'
|
xargs
sudo
pacman-key
--recv-keys
}
pacmansignkeys
()
{
for
key
in
$*
;
do
sudo
pacman-key
--recv-keys
$key
sudo
pacman-key
--lsign-key
$key
printf
'trust\n3\n'
|
sudo
gpg
--homedir
/etc/pacman.d/gnupg
\
--no-permission-warning
--command-fd
0
--edit-key
$key
done
}
plugins/battery/battery.plugin.zsh
View file @
d3b867d9
if
[[
$(
acpi 2&>/dev/null |
grep
-c
'^Battery.*Discharging'
)
-gt
0
]]
;
then
###########################################
function
battery_pct_remaining
()
{
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
}
# Battery plugin for oh-my-zsh #
function
battery_time_remaining
()
{
echo
$(
acpi |
cut
-f3
-d
','
)
}
# Original Author: Peter hoeg (peterhoeg) #
function
battery_pct_prompt
()
{
# Email: peter@speartail.com #
b
=
$(
battery_pct_remaining
)
###########################################
if
[
$b
-gt
50
]
;
then
# Author: Sean Jones (neuralsandwich) #
color
=
'green'
# Email: neuralsandwich@gmail.com #
elif
[
$b
-gt
20
]
;
then
# Modified to add support for Apple Mac #
color
=
'yellow'
###########################################
if
[[
$(
uname
)
-eq
"Darwin"
]]
;
then
function
battery_pct_remaining
()
{
if
[[
$(
ioreg
-rc
AppleSmartBattery |
grep
-c
'^.*"ExternalConnected"\ =\ No'
)
-eq
1
]]
;
then
typeset
-F
maxcapacity
=
$(
ioreg
-rc
"AppleSmartBattery"
|
grep
'^.*"MaxCapacity"\ =\ '
|
sed
-e
's/^.*"MaxCapacity"\ =\ //'
)
typeset
-F
currentcapacity
=
$(
ioreg
-rc
"AppleSmartBattery"
|
grep
'^.*"CurrentCapacity"\ =\ '
|
sed
-e
's/^.*CurrentCapacity"\ =\ //'
)
integer
i
=
$((
(
currentcapacity/maxcapacity
)
*
100
))
echo
$i
else
else
color
=
'red'
echo
"External Power"
fi
fi
echo
"%{
$fg
[
$color
]%}[
$(
battery_pct_remaining
)
%%]%{
$reset_color
%}"
}
}
else
error_msg
=
'no battery'
function
battery_time_remaining
()
{
function
battery_pct_remaining
()
{
echo
$error_msg
}
if
[[
$(
ioreg
-rc
AppleSmartBattery |
grep
-c
'^.*"ExternalConnected"\ =\ No'
)
-eq
1
]]
;
then
function
battery_time_remaining
()
{
echo
$error_msg
}
timeremaining
=
$(
ioreg
-rc
"AppleSmartBattery"
|
grep
'^.*"AvgTimeToEmpty"\ =\ '
|
sed
-e
's/^.*"AvgTimeToEmpty"\ =\ //'
)
function
battery_pct_prompt
()
{
echo
''
}
echo
"~
$((
timeremaining
/
60
))
:
$((
timeremaining
%
60
))
"
else
echo
"∞"
fi
}
function
battery_pct_prompt
()
{
if
[[
$(
ioreg
-rc
AppleSmartBattery |
grep
-c
'^.*"ExternalConnected"\ =\ No'
)
-eq
1
]]
;
then
b
=
$(
battery_pct_remaining
)
if
[
$b
-gt
50
]
;
then
color
=
'green'
elif
[
$b
-gt
20
]
;
then
color
=
'yellow'
else
color
=
'red'
fi
echo
"%{
$fg
[
$color
]%}[
$(
battery_pct_remaining
)
%%]%{
$reset_color
%}"
else
echo
""
fi
}
elif
[[
$(
uname
)
-eq
"Linux"
]]
;
then
if
[[
$(
acpi 2&>/dev/null |
grep
-c
'^Battery.*Discharging'
)
-gt
0
]]
;
then
function
battery_pct_remaining
()
{
echo
"
$(
acpi |
cut
-f2
-d
','
|
tr
-cd
'[:digit:]'
)
"
}
function
battery_time_remaining
()
{
echo
$(
acpi |
cut
-f3
-d
','
)
}
function
battery_pct_prompt
()
{
b
=
$(
battery_pct_remaining
)
if
[
$b
-gt
50
]
;
then
color
=
'green'
elif
[
$b
-gt
20
]
;
then
color
=
'yellow'
else
color
=
'red'
fi
echo
"%{
$fg
[
$color
]%}[
$(
battery_pct_remaining
)
%%]%{
$reset_color
%}"
}
else
error_msg
=
'no battery'
function
battery_pct_remaining
()
{
echo
$error_msg
}
function
battery_time_remaining
()
{
echo
$error_msg
}
function
battery_pct_prompt
()
{
echo
''
}
fi
fi
fi
plugins/rsync/rsync.plugin.zsh
0 → 100644
View file @
d3b867d9
alias
rsync-copy
=
"rsync -av --progress -h"
alias
rsync-move
=
"rsync -av --progress -h --remove-source-files"
alias
rsync-update
=
"rsync -avu --progress -h"
alias
rsync-synchronize
=
"rsync -avu --delete --progress -h"
plugins/vagrant/_vagrant
View file @
d3b867d9
...
@@ -46,6 +46,11 @@ __box_list ()
...
@@ -46,6 +46,11 @@ __box_list ()
_wanted application expl 'command' compadd $(command ls -1 $HOME/.vagrant/boxes 2>/dev/null| sed -e 's/ /\\ /g')
_wanted application expl 'command' compadd $(command ls -1 $HOME/.vagrant/boxes 2>/dev/null| sed -e 's/ /\\ /g')
}
}
__vm_list ()
{
_wanted application expl 'command' compadd $(command grep Vagrantfile -oe '^[^#]*\.vm\.define *:\([a-zA-Z0-9]\+\)' 2>/dev/null | cut -d: -f2)
}
__vagrant-box ()
__vagrant-box ()
{
{
local curcontext="$curcontext" state line
local curcontext="$curcontext" state line
...
@@ -99,6 +104,8 @@ case $state in
...
@@ -99,6 +104,8 @@ case $state in
(box)
(box)
__vagrant-box
__vagrant-box
;;
;;
(up|provision|package|destroy|reload|ssh|halt|resume|status)
_arguments ':feature:__vm_list'
esac
esac
;;
;;
esac
esac
themes/candy-kingdom.zsh-theme
0 → 100644
View file @
d3b867d9
# neuralsanwich.zsh-theme
#
# Author: Sean Jones
# URL: http://www.neuralsandwich.com
# Repo:
# Direct link:
# Create:
# Modified:
if [ "x$OH_MY_ZSH_HG" = "x" ]; then
OH_MY_ZSH_HG="hg"
fi
function hg_prompt_info {
$OH_MY_ZSH_HG prompt --angle-brackets "\
< on %{$fg[magenta]%}<branch>%{$reset_color%}>\
< at %{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\
%{$fg[green]%}<status|modified|unknown><update>%{$reset_color%}<
patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null
}
function box_name {
[ -f ~/.box-name ] && cat ~/.box-name || hostname -s
}
PROMPT='
%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}$(box_name)%{$reset_color%}:%{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)
%(?,,%{${fg_bold[white]}%}[%?]%{$reset_color%} )$ '
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[magenta]%}branch: "
ZSH_THEME_GIT_PROMPT_CLEAN=""
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[red]%}?"
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[orange]%}!"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})"
local return_status="%{$fg[red]%}%(?..✘)%{$reset_color%}"
RPROMPT='${return_status}$(battery_time_remaining) $(battery_pct_prompt)%{$reset_color%}'
themes/gentoo.zsh-theme
View file @
d3b867d9
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%#%{$reset_color%} '
function prompt_char {
if [ $UID -eq 0 ]; then echo "#"; else echo $; fi
}
PROMPT='%(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m %{$fg_bold[blue]%}%(!.%1~.%~) $(git_prompt_info)%_$(prompt_char)%{$reset_color%} '
ZSH_THEME_GIT_PROMPT_PREFIX="("
ZSH_THEME_GIT_PROMPT_PREFIX="("
ZSH_THEME_GIT_PROMPT_SUFFIX=") "
ZSH_THEME_GIT_PROMPT_SUFFIX=") "
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment