mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-01 20:55:51 +01:00
0f7f51e81c
This commit adds sudo where needed for the majority of pacman commands. It also removes zsh, urxvt, and renpy since we don't use those anymore.
21 lines
591 B
Bash
21 lines
591 B
Bash
#!/bin/sh
|
|
#
|
|
# Krita is the standard painting program. It has excellent
|
|
# support for KDE and supports HiDPI out of the box.
|
|
#
|
|
# Krita also works quite well as an image editor.
|
|
#
|
|
# You *could* use GIMP if you wanted to, but even with the HiDPI
|
|
# patch in 2.10, you still have to change a lot of settings in
|
|
# order for it to look semi-decent. Additionally, it requires GTK2
|
|
# as a dependency and you get none of the KDE features with it.
|
|
#
|
|
# In other words, it's much better to learn Krita than try to
|
|
# install GIMP in its current state.
|
|
#
|
|
# https://krita.org
|
|
|
|
set -xe
|
|
|
|
sudo pacman -S krita
|