fix: makefile and gitignore
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
pkgs/
|
||||
*-temp.scss
|
||||
|
3
Makefile
3
Makefile
@@ -5,9 +5,12 @@ LOG_SUCCESS=$(shell date +"%H:%M:%S") \e[0;32mSUCCESS\e[0m
|
||||
|
||||
.DEFAULT_GOAL := install
|
||||
ROOT_DIR=$(shell git rev-parse --show-toplevel)
|
||||
|
||||
dest=$(ROOT_DIR)/pkgs
|
||||
quiet=false
|
||||
|
||||
export ROOT_DIR
|
||||
|
||||
install:
|
||||
@echo -e "$(LOG_INFO) Under dev 👷🛑..."
|
||||
|
||||
|
@@ -7,12 +7,13 @@ quiet=$2
|
||||
quiet="-q"
|
||||
} || quiet=""
|
||||
|
||||
./install.sh --dest ${dest} --theme all --size compact --color dark
|
||||
|
||||
${ROOT_DIR}/scripts/install.sh --dest ${dest} --theme all --size compact --color dark
|
||||
|
||||
cd "${dest}" || exit 1
|
||||
|
||||
for file in *; do
|
||||
echo -e " + \e[0;32mPackaging ${file}\e[0m"
|
||||
# zip -r ${quiet} ${file}.zip ${file}
|
||||
# rm -r "${file}"
|
||||
zip -r ${quiet} ${file}.zip ${file}
|
||||
rm -r "${file}"
|
||||
done
|
||||
|
@@ -1,26 +0,0 @@
|
||||
// transparent opacity
|
||||
$opacity: 'default';
|
||||
|
||||
// Theme primary color
|
||||
$theme: 'default';
|
||||
|
||||
// Theme size
|
||||
$compact: 'true';
|
||||
|
||||
// Theme translucent
|
||||
$translucent: 'false';
|
||||
|
||||
// Panel translucent opacity
|
||||
$panel_opacity: 1.0;
|
||||
|
||||
// Blackness style
|
||||
$blackness: 'false';
|
||||
|
||||
// Theme color type : default/nord/blackness
|
||||
$color_type: 'default';
|
||||
|
||||
// Windows outline style
|
||||
$rimless: 'false';
|
||||
|
||||
// Windows button style : mac/normal
|
||||
$window_button: 'mac';
|
Reference in New Issue
Block a user