Small tweaks
This commit is contained in:
parent
e3de990378
commit
114c2a3725
3 changed files with 22 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
remove=false
|
remove=false
|
||||||
|
|
||||||
# default to https plugins
|
# default to https plugins
|
||||||
ssh=false
|
ssh=true
|
||||||
|
|
||||||
# Cd to public html foder
|
# Cd to public html foder
|
||||||
cd ${PWD%/public_html*}/public_html
|
cd ${PWD%/public_html*}/public_html
|
||||||
|
@ -42,6 +42,10 @@ while test $# -gt 0; do
|
||||||
ssh=true
|
ssh=true
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
--no-ssh)
|
||||||
|
ssh=false
|
||||||
|
shift
|
||||||
|
;;
|
||||||
aquarius-blocks|blocks)
|
aquarius-blocks|blocks)
|
||||||
if [ "$remove" = true ]; then
|
if [ "$remove" = true ]; then
|
||||||
npm remove wp-content/plugins/aquarius-blocks
|
npm remove wp-content/plugins/aquarius-blocks
|
||||||
|
@ -112,6 +116,20 @@ while test $# -gt 0; do
|
||||||
fi
|
fi
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
aquarius-projects|projects)
|
||||||
|
if [ "$remove" = true ]; then
|
||||||
|
npm remove wp-content/plugins/aquarius-slider
|
||||||
|
git-delete-submodule "wp-content/plugins/aquarius-projects"
|
||||||
|
else
|
||||||
|
if [ "$ssh" = true ]; then
|
||||||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-projects.git wp-content/plugins/aquarius-projects
|
||||||
|
else
|
||||||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-projects.git wp-content/plugins/aquarius-projects
|
||||||
|
fi
|
||||||
|
npm install --save wp-content/plugins/aquarius-projects
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
;;
|
||||||
aquarius-slider|slider)
|
aquarius-slider|slider)
|
||||||
if [ "$remove" = true ]; then
|
if [ "$remove" = true ]; then
|
||||||
npm remove wp-content/plugins/aquarius-slider
|
npm remove wp-content/plugins/aquarius-slider
|
||||||
|
|
|
@ -164,8 +164,8 @@ bindsym $mod+control+l move workspace to output right
|
||||||
|
|
||||||
|
|
||||||
#assign programs to workspaces
|
#assign programs to workspaces
|
||||||
assign [class="chromium"] $workspace1
|
#assign [class="chromium"] $workspace1
|
||||||
assign [class="skypeforlinux"] $workspace10
|
#assign [class="skypeforlinux"] $workspace10
|
||||||
|
|
||||||
#make applications open in floating mode
|
#make applications open in floating mode
|
||||||
for_window [class="Galculator"] floating enable
|
for_window [class="Galculator"] floating enable
|
||||||
|
|
|
@ -37,6 +37,7 @@ function my_dir(){
|
||||||
|
|
||||||
if [[ $(tput cols) -lt 100 ]]; then
|
if [[ $(tput cols) -lt 100 ]]; then
|
||||||
current_path=$(echo $current_path | sed -r -e "s/wpc\/themes\//\//")
|
current_path=$(echo $current_path | sed -r -e "s/wpc\/themes\//\//")
|
||||||
|
current_path=$(echo $current_path | sed -r -e "s/wpc\/plugins\//\//")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
elif [[ -e "$ph/bin/magento" ]]; then #If magento
|
elif [[ -e "$ph/bin/magento" ]]; then #If magento
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue