parent
41e8b938f5
commit
2bde8b6aed
@ -0,0 +1,26 @@
|
||||
#!/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}
|
Loading…
Reference in new issue