2018-08-31 22:02:48 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# After all these years, Xfce is still one of the best desktop
|
|
|
|
# environments. Although the defaults are bland, you can customize
|
|
|
|
# it to look however you want.
|
|
|
|
#
|
|
|
|
# Alternatively install the `xfce4-goodies` package if you want
|
|
|
|
# everything instead of the select few applications I choose here.
|
|
|
|
#
|
|
|
|
# Note that Xfce doesn't exactly handle HiDPI well, so you might want
|
|
|
|
# to use bspwm or Plasma instead.
|
|
|
|
#
|
|
|
|
# mousepad: basic text editor
|
|
|
|
# parole: basic media player
|
|
|
|
# ristretto: basic image viewer
|
|
|
|
#
|
|
|
|
# https://wiki.archlinux.org/index.php/Xfce
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S mousepad
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S parole
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S ristretto
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4-mpc-plugin
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4-notifyd
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4-pulseaudio-plugin
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4-screenshooter
|
2018-08-31 22:02:48 +02:00
|
|
|
|
2018-09-08 07:55:24 +02:00
|
|
|
sudo pacman -S xfce4-taskmanager
|