Work on stuff
This commit is contained in:
parent
39e4b9c99a
commit
1c1cd99c20
2 changed files with 35 additions and 0 deletions
3
bin/cups
Executable file
3
bin/cups
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/sh
|
||||
echo $(whoami)
|
||||
#systemctl start org.cups.cupsd.service
|
|
@ -78,6 +78,38 @@ function theme() {
|
|||
fi
|
||||
}
|
||||
|
||||
#Takes you to the js folder child theme
|
||||
function js() {
|
||||
public_html=${PWD%/public_html*}/public_html
|
||||
if [ -d $public_html ]; then
|
||||
theme=$public_html/wp-content/themes
|
||||
if [ -d $theme ]; then
|
||||
child=$(ls -d $theme/*/ | grep -v "$theme\/theme-aquarius" | grep -v "$theme\/aquarius" | grep -v "$theme\/twenty*" | grep -v "$theme\/barelycorporate" -m 1)
|
||||
cdlc $child/js/
|
||||
else
|
||||
echo " Can't find theme folder "
|
||||
fi
|
||||
else
|
||||
echo " Can't find public_html folder."
|
||||
fi
|
||||
}
|
||||
|
||||
#Takes you to the css folder child theme
|
||||
function css() {
|
||||
public_html=${PWD%/public_html*}/public_html
|
||||
if [ -d $public_html ]; then
|
||||
theme=$public_html/wp-content/themes
|
||||
if [ -d $theme ]; then
|
||||
child=$(ls -d $theme/*/ | grep -v "$theme\/theme-aquarius" | grep -v "$theme\/aquarius" | grep -v "$theme\/twenty*" | grep -v "$theme\/barelycorporate" -m 1)
|
||||
cdlc $child/css/
|
||||
else
|
||||
echo " Can't find theme folder "
|
||||
fi
|
||||
else
|
||||
echo " Can't find public_html folder."
|
||||
fi
|
||||
}
|
||||
|
||||
#Takes you to the plugin directory
|
||||
function plugins() {
|
||||
public_html=${PWD%/public_html*}/public_html
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue