Franziska Kunsmann
c073599f6f
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
49 lines
1.1 KiB
Python
49 lines
1.1 KiB
Python
assert node.os == 'arch'
|
|
|
|
defaults = {
|
|
'pacman': {
|
|
'packages': {
|
|
# fonts
|
|
'fontconfig': {},
|
|
'ttf-dejavu': {
|
|
'needed_by': {
|
|
'pkg_pacman:sddm',
|
|
},
|
|
},
|
|
|
|
# login management
|
|
'sddm': {},
|
|
|
|
# networking
|
|
'netctl': {},
|
|
'rfkill': {},
|
|
'wpa_supplicant': {},
|
|
'wpa_actiond': {},
|
|
|
|
# shell and other gui stuff
|
|
'fish': {},
|
|
'kitty': {},
|
|
'light': {},
|
|
'redshift': {},
|
|
'rofi': {},
|
|
|
|
# sound
|
|
'pavucontrol': {},
|
|
'pulseaudio': {},
|
|
'pulseaudio-zeroconf': {},
|
|
|
|
# window management
|
|
'i3-wm': {},
|
|
'i3lock': {},
|
|
'xss-lock': {},
|
|
|
|
# Xorg
|
|
'xf86-input-libinput': {},
|
|
'xorg-server': {},
|
|
'xorg-setxkbmap': {},
|
|
'xorg-xev': {},
|
|
'xorg-xinput': {},
|
|
'xorg-xset': {},
|
|
},
|
|
},
|
|
}
|