fix: makefile and gitignore

This commit is contained in:
Pocco81
2022-01-12 13:16:03 -05:00
parent b9c6920bca
commit 92cb249ab9
4 changed files with 8 additions and 29 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
pkgs/ pkgs/
*-temp.scss

View File

@@ -5,9 +5,12 @@ LOG_SUCCESS=$(shell date +"%H:%M:%S") \e[0;32mSUCCESS\e[0m
.DEFAULT_GOAL := install .DEFAULT_GOAL := install
ROOT_DIR=$(shell git rev-parse --show-toplevel) ROOT_DIR=$(shell git rev-parse --show-toplevel)
dest=$(ROOT_DIR)/pkgs dest=$(ROOT_DIR)/pkgs
quiet=false quiet=false
export ROOT_DIR
install: install:
@echo -e "$(LOG_INFO) Under dev 👷🛑..." @echo -e "$(LOG_INFO) Under dev 👷🛑..."

View File

@@ -7,12 +7,13 @@ quiet=$2
quiet="-q" quiet="-q"
} || quiet="" } || 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 cd "${dest}" || exit 1
for file in *; do for file in *; do
echo -e " + \e[0;32mPackaging ${file}\e[0m" echo -e " + \e[0;32mPackaging ${file}\e[0m"
# zip -r ${quiet} ${file}.zip ${file} zip -r ${quiet} ${file}.zip ${file}
# rm -r "${file}" rm -r "${file}"
done done

View File

@@ -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';