-
Notifications
You must be signed in to change notification settings - Fork 5
/
PKGBUILD
64 lines (58 loc) · 2.28 KB
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Maintainer: Aditya Shakya <[email protected]>
pkgname=archcraft-fluxbox
pkgver=4.0
pkgrel=5
pkgdesc="Fluxbox Configurations for Archcraft"
arch=('any')
url="https://github.com/archcraft-os/archcraft-fluxbox"
license=('GPL3')
depends=('fluxbox' 'hsetroot' 'xsettingsd' 'acpi' 'networkmanager'
'pulsemixer' 'light' 'polybar' 'rofi' 'dunst'
)
optdepends=('alacritty: default terminal emulator'
'thunar: default file manager'
'geany: default text editor'
'firefox: default web browser'
'viewnior: default image viewer'
'betterlockscreen: default lockscreen'
'ksuperkey: allows you to open the application launcher using the Super key'
'networkmanager-dmenu-git: control NetworkManager via rofi'
'mpd: server-side application for playing music, used in statusbars and scripts'
'mpc: minimalist command line interface to MPD'
'ffmpeg: complete solution to record, convert and stream audio and video, used in screenrecord scripts'
'maim: utility to take a screenshot, used in screenshot scripts'
'xclip: command line interface to the X11 clipboard'
'xcolor: lightweight color picker for X11'
'xfce4-power-manager: power manager'
'xorg-xsetroot: fix cursor theming, set root background'
'yad: display graphical dialogs from shell scripts'
'wmname: utility to set the name of your window manager'
)
options=(!strip !emptydirs)
install="${pkgname}.install"
prepare() {
cp -af ../files/. "$srcdir"
}
package() {
local _wmdir="$pkgdir"/etc/skel/.fluxbox
mkdir -p "$_wmdir"
# Copy fluxbox config files
cp -r "$srcdir"/alacritty "$_wmdir"
cp -r "$srcdir"/backgrounds "$_wmdir"
cp -r "$srcdir"/scripts "$_wmdir"
cp -r "$srcdir"/styles "$_wmdir"
cp -r "$srcdir"/theme "$_wmdir"
chmod +x "$_wmdir"/scripts/*
chmod +x "$_wmdir"/theme/polybar.sh
chmod +x "$_wmdir"/theme/polybar/launch.sh
chmod +x "$_wmdir"/theme/polybar/scripts/bluetooth.sh
install -Dm 644 apps "$_wmdir"/apps
install -Dm 644 init "$_wmdir"/init
install -Dm 644 keys "$_wmdir"/keys
install -Dm 644 menu "$_wmdir"/menu
install -Dm 644 windowmenu "$_wmdir"/windowmenu
install -Dm 644 dunstrc "$_wmdir"/dunstrc
install -Dm 644 picom.conf "$_wmdir"/picom.conf
install -Dm 644 xsettingsd "$_wmdir"/xsettingsd
install -Dm 755 startup "$_wmdir"/startup
}