mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 05:13:11 +01:00
f5fcf8962d
Although learning about package management for rpm-based distributions was a fun experience, it's not realistic to maintain long-term. In this case, it may be easier to simply install packages on a case-by-case basis, making use of Ansible for anything else.
23 lines
476 B
Makefile
23 lines
476 B
Makefile
install=sudo dnf install --assumeyes
|
|
copr=sudo dnf copr enable --assumeyes
|
|
|
|
.PHONY: all
|
|
all: rice kitty wal
|
|
|
|
.PHONY: rice
|
|
rice:
|
|
@${install} pop-gtk-theme pop-icon-theme breeze-cursor-theme
|
|
@../gnome/.config/gnome/extensions.sh
|
|
@../gnome/.config/gnome/antialiasing.sh
|
|
@../gnome/.config/gnome/pop-gtk-theme.sh
|
|
@../gnome/.config/gnome/breeze-cursor-theme.sh
|
|
|
|
.PHONY: kitty
|
|
kitty:
|
|
@${copr} gagbo/kitty-latest
|
|
@${install} kitty
|
|
|
|
.PHONY: wal
|
|
wal:
|
|
@pip3 install --user pywal
|