aboutsummaryrefslogtreecommitdiff
path: root/Makefile.m4
diff options
context:
space:
mode:
authorjakobst1n <jakob.stendahl@outlook.com>2024-09-19 10:01:54 +0200
committerjakobst1n <jakob.stendahl@outlook.com>2024-09-19 10:01:54 +0200
commite51ac2890e5196bdb7956a2665437b659eed8812 (patch)
tree1ca22ace55d542d63eadead720a4fbf8ecfe09b9 /Makefile.m4
parentba3a4ea25b451c10cd372b81c9168ce038f69d1c (diff)
downloaddotfiles-testbranch.tar.gz
dotfiles-testbranch.zip
Do a bunch of random thingstestbranch
Diffstat (limited to 'Makefile.m4')
-rw-r--r--Makefile.m47
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.m4 b/Makefile.m4
index 1fd7dc4..e3aa34b 100644
--- a/Makefile.m4
+++ b/Makefile.m4
@@ -219,9 +219,6 @@ m4_ifelse(DT_TLP, `yes', `tlp',) m4_dnl
m4_dnl
m4_ifelse(DT_SWAY, `yes', `sway swayidle physlock blueman network-manager-gnome wob wlogout wofi brightnessctl clipman xwayland seahorse fcitx5',) m4_dnl
m4_dnl
-m4_ifelse(DT_QTILE, `yes', `python3-cffi python3-cairocffi pango pango-devel python3-dbus-next',) m4_dnl qtile core
-m4_ifelse(DT_QTILE, `yes', `python3_xcffib xsecurelock',) m4_dnl qtile x11
-m4_ifelse(DT_QTILE, `yes', `wlroots python3-wlroots python3-pywayland python3-xkbcommon xwayland',) m4_dnl qtile wayland
install_packages:
@@ -283,13 +280,13 @@ m4_ifelse(DT_QTILE, `yes', `qtile qtile_extras',) m4_dnl qtile core
install_pip_packages:
@missing_packages=""; \
for pkg in $(PIP_DEPENDENCIES); do \
- if [ "$($PIP list | grep -sw "$$pkg" | wc -l)" = "0" ]; then \
+ if [ "$(pip list | grep -sw "$$pkg" | wc -l)" = "0" ]; then \
missing_packages="$$missing_packages $$pkg"; \
fi; \
done; \
if [ -n "$$missing_packages" ]; then \
echo "Installing missing packages: $$missing_packages"; \
- sudo $PIP $PIP_FLAGS install $$missing_packages; \
+ sudo pip $PIP_FLAGS install $$missing_packages; \
fi
# Global rust packages