You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
612 B
27 lines
612 B
#!/bin/bash
|
|
olddir=$(pwd)
|
|
dir=$(mktemp -d)
|
|
cd ${dir}
|
|
filename="mickeos.cfg"
|
|
echo 'Section: misc
|
|
Priority: optional
|
|
Homepage: smolnet.org
|
|
Standards-Version: 3.9.2
|
|
|
|
Package: mickeos
|
|
Version: 10
|
|
Maintainer: Micke Nordin <hej@mic.ke>
|
|
Depends: i3
|
|
Recommends: lxqt
|
|
Provides: xfwm4,audacious,audacious-plugins,audacious-plugins-data,lxqt-panel,lxqt-panel-l10n,qterminal,qterminal-l10n,qtermwidget5-data,smplayer,smplayer-l10n,smplayer-themes,smtube
|
|
|
|
Description: Fake it till you make it
|
|
' > ${filename}
|
|
|
|
equivs-build ${filename}
|
|
sudo dpkg -i *.deb
|
|
cp *.deb ~/
|
|
sudo apt -y install lxqt kitty
|
|
cd ${olddir}
|
|
rm -r ${dir}
|