mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-03 21:53:26 +01:00
d9cc57dc10
This commit puts all the KDE stuff together in one directory. There are a lot of extra packages that I may remove in the future, but this works just fine for now.
22 lines
852 B
Bash
22 lines
852 B
Bash
#!/bin/sh
|
|
#
|
|
# There is a `kde-applications` group package, although here we
|
|
# hand pick the ones that we want to use.
|
|
#
|
|
# Note that kcalc (the basic calculator) isn't needed since all
|
|
# common calculator commands can be accomplished with krunner
|
|
# (alt+f2). There is also kalgebra which works great.
|
|
#
|
|
# https://www.archlinux.org/groups/x86_64/kde-applications
|
|
|
|
set -xe
|
|
|
|
sudo pacman -S kalgebra # A great 2D and 3D graph calculator for offline use
|
|
sudo pacman -S kalzium # Periodic table AND many useful calculator tools
|
|
sudo pacman -S ktouch # Typing practice
|
|
sudo pacman -S kmplot # Fast 2D plot with option to save
|
|
sudo pacman -S rocs # Graph theory IDE
|
|
sudo pacman -S step # Physics simulator
|
|
sudo pacman -S kwordquiz # A very good flash card program
|
|
sudo pacman -S parley # Vocabulary trainer
|