commit
This commit is contained in:
parent
662ea60ee0
commit
355722517f
@ -13,3 +13,4 @@ run setxkbmap -layout "fr,us"
|
|||||||
run keepassxc
|
run keepassxc
|
||||||
run aarchup
|
run aarchup
|
||||||
run redshift-gtk
|
run redshift-gtk
|
||||||
|
run pulseaudio -start
|
||||||
|
@ -29,7 +29,7 @@ local redutil = require("redflat.util")
|
|||||||
-- Initialize tables and vars for module
|
-- Initialize tables and vars for module
|
||||||
-----------------------------------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------------------------------
|
||||||
local pulse = { widgets = {}, mt = {} }
|
local pulse = { widgets = {}, mt = {} }
|
||||||
pulse.startup_time = 4
|
pulse.startup_time = 10
|
||||||
|
|
||||||
-- Generate default theme vars
|
-- Generate default theme vars
|
||||||
-----------------------------------------------------------------------------------------------------------------------
|
-----------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
The MIT License (MIT)
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2009-2019 Robby Russell and contributors
|
Copyright (c) 2009-2019 Robby Russell and contributors (https://github.com/robbyrussell/oh-my-zsh/contributors)
|
||||||
See the full list at https://github.com/robbyrussell/oh-my-zsh/contributors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -12,11 +12,21 @@ function git_prompt_info() {
|
|||||||
function parse_git_dirty() {
|
function parse_git_dirty() {
|
||||||
local STATUS
|
local STATUS
|
||||||
local -a FLAGS
|
local -a FLAGS
|
||||||
FLAGS=('--porcelain' '--ignore-submodules=dirty')
|
FLAGS=('--porcelain')
|
||||||
if [[ "$(command git config --get oh-my-zsh.hide-dirty)" != "1" ]]; then
|
if [[ "$(command git config --get oh-my-zsh.hide-dirty)" != "1" ]]; then
|
||||||
if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" == "true" ]]; then
|
if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" == "true" ]]; then
|
||||||
FLAGS+='--untracked-files=no'
|
FLAGS+='--untracked-files=no'
|
||||||
fi
|
fi
|
||||||
|
case "$GIT_STATUS_IGNORE_SUBMODULES" in
|
||||||
|
git)
|
||||||
|
# let git decide (this respects per-repo config in .gitmodules)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
# if unset: ignore dirty submodules
|
||||||
|
# other values are passed to --ignore-submodules
|
||||||
|
FLAGS+="--ignore-submodules=${GIT_STATUS_IGNORE_SUBMODULES:-dirty}"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1)
|
STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1)
|
||||||
fi
|
fi
|
||||||
if [[ -n $STATUS ]]; then
|
if [[ -n $STATUS ]]; then
|
||||||
|
@ -20,7 +20,8 @@ _emacsfun()
|
|||||||
# tempfile. (first argument will be `--no-wait` passed in by the plugin.zsh)
|
# tempfile. (first argument will be `--no-wait` passed in by the plugin.zsh)
|
||||||
if [ "$#" -ge "2" -a "$2" = "-" ]
|
if [ "$#" -ge "2" -a "$2" = "-" ]
|
||||||
then
|
then
|
||||||
tempfile="$(mktemp emacs-stdin-$USER.XXXXXXX --tmpdir)"
|
tempfile="$(mktemp --tmpdir emacs-stdin-$USER.XXXXXXX 2>/dev/null \
|
||||||
|
|| mktemp -t emacs-stdin-$USER)" # support BSD mktemp
|
||||||
cat - > "$tempfile"
|
cat - > "$tempfile"
|
||||||
_emacsfun --no-wait $tempfile
|
_emacsfun --no-wait $tempfile
|
||||||
else
|
else
|
||||||
|
@ -6,7 +6,7 @@ declare -A opt_args
|
|||||||
|
|
||||||
declare -a target_list
|
declare -a target_list
|
||||||
target_list=("${(@f)$(fab -l 2>/dev/null | awk '{
|
target_list=("${(@f)$(fab -l 2>/dev/null | awk '{
|
||||||
if (NF == 0 || NR == 1) return
|
if (NF == 0 || NR == 1) next
|
||||||
if (NF < 2) print $1
|
if (NF < 2) print $1
|
||||||
else {
|
else {
|
||||||
docstring=substr($0, index($0,$2))
|
docstring=substr($0, index($0,$2))
|
||||||
|
@ -267,6 +267,8 @@ function listMavenCompletions {
|
|||||||
stage:copy
|
stage:copy
|
||||||
# toolchain
|
# toolchain
|
||||||
toolchain:toolchain
|
toolchain:toolchain
|
||||||
|
#liberty
|
||||||
|
liberty:clean-server liberty:compile-jsp liberty:configure-arquillian liberty:create-server liberty:debug liberty:debug-server liberty:deploy liberty:dev liberty:display-url liberty:dump-server liberty:install-apps liberty:install-feature liberty:install-server liberty:java-dump-server liberty:package-server liberty:run liberty:run-server liberty:server-status liberty:start liberty:start-server liberty:status liberty:stop liberty:stop-server liberty:test-start-server liberty:test-stop-server liberty:undeploy liberty:uninstall-feature
|
||||||
|
|
||||||
# options
|
# options
|
||||||
"-Dmaven.test.skip=true" -DskipTests -DskipITs -Dmaven.surefire.debug -DenableCiProfile "-Dpmd.skip=true" "-Dcheckstyle.skip=true" "-Dtycho.mode=maven" "-Dmaven.test.failure.ignore=true" "-DgroupId=" "-DartifactId=" "-Dversion=" "-Dpackaging=jar" "-Dfile="
|
"-Dmaven.test.skip=true" -DskipTests -DskipITs -Dmaven.surefire.debug -DenableCiProfile "-Dpmd.skip=true" "-Dcheckstyle.skip=true" "-Dtycho.mode=maven" "-Dmaven.test.failure.ignore=true" "-DgroupId=" "-DartifactId=" "-Dversion=" "-Dpackaging=jar" "-Dfile="
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
# Find python file
|
# Find python file
|
||||||
alias pyfind='find . -name "*.py"'
|
alias pyfind='find . -name "*.py"'
|
||||||
|
|
||||||
# Remove python compiled byte-code and mypy cache in either current directory or in a
|
# Remove python compiled byte-code and mypy/pytest cache in either the current
|
||||||
# list of specified directories
|
# directory or in a list of specified directories (including sub directories).
|
||||||
function pyclean() {
|
function pyclean() {
|
||||||
ZSH_PYCLEAN_PLACES=${*:-'.'}
|
ZSH_PYCLEAN_PLACES=${*:-'.'}
|
||||||
find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
|
find ${ZSH_PYCLEAN_PLACES} -type f -name "*.py[co]" -delete
|
||||||
find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete
|
find ${ZSH_PYCLEAN_PLACES} -type d -name "__pycache__" -delete
|
||||||
find ${ZSH_PYCLEAN_PLACES} -type d -name ".mypy_cache" -delete
|
find ${ZSH_PYCLEAN_PLACES} -depth -type d -name ".mypy_cache" -exec rm -r "{}" +
|
||||||
|
find ${ZSH_PYCLEAN_PLACES} -depth -type d -name ".pytest_cache" -exec rm -r "{}" +
|
||||||
}
|
}
|
||||||
|
|
||||||
# Grep among .py files
|
# Grep among .py files
|
||||||
|
Loading…
Reference in New Issue
Block a user