mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 09:47:57 +02:00
Add 60x scripts
This commit is contained in:
parent
fe4db5a94b
commit
6c026b935b
23
sh/601-texlive
Normal file
23
sh/601-texlive
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# `texlive-most` is a meta package that has everything we need.
|
||||||
|
# Before we'd pick and choose which packages to install, but this
|
||||||
|
# doesn't really matter in the long term and having "most" of
|
||||||
|
# texlive is good enough anyway.
|
||||||
|
#
|
||||||
|
# `minted` is used for syntax highlighting support. This is useful
|
||||||
|
# when writing code blocks with La(TeX)
|
||||||
|
#
|
||||||
|
# `texstudio` is a nice IDE for some projects. If your project is
|
||||||
|
# relatively small and you're using KDE, feel free to include it.
|
||||||
|
# HiDPI is supported out of the box.
|
||||||
|
#
|
||||||
|
# https://wiki.archlinux.org/index.php/TeX_Live
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
pacman -S texlive-most
|
||||||
|
|
||||||
|
pacman -S minted
|
||||||
|
|
||||||
|
pacman -S texstudio
|
9
sh/602-renpy
Normal file
9
sh/602-renpy
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Ren'Py is the standard visual novel engine.
|
||||||
|
#
|
||||||
|
# https://renpy.org/
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
pacman -S renpy
|
9
sh/603-godot
Normal file
9
sh/603-godot
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Godot is the standard game engine.
|
||||||
|
#
|
||||||
|
# https://wiki.archlinux.org/index.php/Godot_Engine
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
yay -S godot
|
14
sh/604-libreoffice
Normal file
14
sh/604-libreoffice
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# As cool as it is to write your papers in a *vim terminal*,
|
||||||
|
# sometimes the basics just work, and that's all you need to
|
||||||
|
# get stuff done.
|
||||||
|
#
|
||||||
|
# LibreOffice has improved a lot over the years. It also works
|
||||||
|
# great with KDE. Give it a try.
|
||||||
|
#
|
||||||
|
# https://wiki.archlinux.org/index.php/Libreoffice
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
pacman -S libreoffice-fresh
|
12
sh/605-virtualbox
Normal file
12
sh/605-virtualbox
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# VirtualBox lets you run virtual machines inside of your Arch
|
||||||
|
# Linux installation. It works really well with KDE since the
|
||||||
|
# interface uses Qt. This also means that HiDPI support is
|
||||||
|
# easily achieved.
|
||||||
|
#
|
||||||
|
# https://wiki.archlinux.org/index.php/VirtualBox
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
pacman -S virtualbox virtualbox-host-modules-arch
|
10
sh/606-krita
Normal file
10
sh/606-krita
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Krita is the standard painting program. It has excellent
|
||||||
|
# support for KDE and supports HiDPI out of the box.
|
||||||
|
#
|
||||||
|
# https://krita.org
|
||||||
|
|
||||||
|
set -xe
|
||||||
|
|
||||||
|
pacman -S krita
|
Loading…
x
Reference in New Issue
Block a user