Compare commits

...

5 Commits

Author SHA1 Message Date
Fierelier 23b66737a2 Add mod: packages-proprietary-licenses (Part 1) 2023-08-23 11:21:25 +02:00
Fierelier 8ded32e7eb Update .gitignore 2023-08-23 11:19:52 +02:00
Fierelier 482b5d2c4b Add back noninteractive Debian frontend 2023-08-23 11:19:40 +02:00
Fierelier 485b901342 Use xss-lock instead of xautolock 2023-08-23 11:19:10 +02:00
Fierelier 7033086b0e Add mod: setnet 2023-08-23 11:18:57 +02:00
11 changed files with 36 additions and 27 deletions

9
.gitignore vendored
View File

@ -1,5 +1,4 @@
*.iso
*.img
*.qcow*
windvn-*/
output/
/*.iso
/*.img
/windvn-*/
/output/

View File

@ -1,13 +0,0 @@
[Desktop Entry]
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=Lock screen on standby
Comment=
Exec=wdvn-lock
OnlyShowIn=XFCE;
RunHook=4
StartupNotify=false
Terminal=false
Hidden=false

View File

@ -4,7 +4,7 @@ Version=0.9.4
Type=Application
Name=lockscreen
Comment=
Exec=xautolock -time 15 -corners 0-00 -locker wdvn-lock
Exec=bash -c 'xset s 900 5; XSECURELOCK_BLANK_DPMS_STATE="off" XSECURELOCK_SHOW_DATETIME=1 XSECURELOCK_DATETIME_FORMAT="%%A - %%d.%%m.%%Y, %%H:%%M:%%S" XSECURELOCK_DISCARD_FIRST_KEYPRESS=0 XSECURELOCK_BLANK_TIMEOUT=5 XSECURELOCK_AUTH_TIMEOUT=20 xss-lock -n /usr/lib/xsecurelock/dimmer -l -- xsecurelock'
OnlyShowIn=XFCE;
RunHook=0
StartupNotify=false

View File

@ -50,7 +50,7 @@
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
<property name="override" type="bool" value="true"/>
<property name="&lt;Super&gt;l" type="string" value="wdvn-lock"/>
<property name="&lt;Super&gt;l" type="string" value="xset s activate"/>
<property name="&lt;Super&gt;x" type="string" value="exo-open --launch TerminalEmulator"/>
<property name="&lt;Alt&gt;F1" type="string" value="xfce4-popup-whiskermenu"/>
</property>

View File

@ -3,7 +3,7 @@
<channel name="xfce4-session" version="1.0">
<property name="general" type="empty">
<property name="FailsafeSessionName" type="empty"/>
<property name="LockCommand" type="string" value="wdvn-lock"/>
<property name="LockCommand" type="string" value="xset s activate"/>
<property name="SessionName" type="string" value="Default"/>
<property name="SaveOnExit" type="bool" value="false"/>
</property>

View File

@ -1,2 +0,0 @@
#!/usr/bin/env bash
XSECURELOCK_BLANK_DPMS_STATE="off" XSECURELOCK_SHOW_DATETIME=1 XSECURELOCK_DATETIME_FORMAT="%A - %d.%m.%Y, %H:%M:%S" XSECURELOCK_DISCARD_FIRST_KEYPRESS=0 XSECURELOCK_BLANK_TIMEOUT=5 XSECURELOCK_AUTH_TIMEOUT=20 xsecurelock

View File

@ -1,2 +1,2 @@
#!/bin/bash
export WDVN_PACKAGES_DL="$WDVN_PACKAGES_DL xinit xorg xfce4 xfce4-*-plugin xfce4-power-manager gvfs gvfs-backends gvfs-fuse unifont scrot xclip netsurf-gtk xautolock xsecurelock qt5-style-plugins alsa-utils network-manager-gnome xfce4-terminal mousepad synaptic catfish galculator celluloid gpicview xpdf unrar-free engrampa blueman xscreensaver- lightdm-"
export WDVN_PACKAGES_DL="$WDVN_PACKAGES_DL xinit xorg xfce4 xfce4-*-plugin xfce4-power-manager gvfs gvfs-backends gvfs-fuse unifont scrot xclip netsurf-gtk x11-xserver-utils xss-lock xsecurelock qt5-style-plugins alsa-utils network-manager-gnome xfce4-terminal mousepad synaptic catfish galculator celluloid gpicview xpdf unrar-free engrampa blueman xscreensaver- lightdm-"

View File

@ -1,8 +1,5 @@
#!/bin/bash
set -e
cat << EOF | debconf-set-selections
firmware-ipw2x00 firmware-ipw2x00/license/accepted boolean true
EOF
apt-get --error-on=any -y update
apt-get -y upgrade
apt-get -y install $WDVN_PACKAGES_INTERACTIVE

16
mods/setnet/data/chroot Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
command -v wget >/dev/null
WGET_INSTALL="$?"
set -e
if [ "$WGET_INSTALL" = "1" ]; then
apt-get -y install wget
fi
wget "https://pkgmaster.devuan.org/devuan/pool/main/s/setnet/setnet_0.4.0-1_all.deb"
apt-get -y install "./setnet_0.4.0-1_all.deb"
rm "./setnet_0.4.0-1_all.deb"
if [ "$WGET_INSTALL" = "1" ]; then
apt-get -y remove --purge --auto-remove wget
fi

View File

@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=setnet.sh
Comment=Configure Networking (LAN/WiFi)
Exec=x-terminal-emulator -e "sudo setnet.sh"
Icon=preferences-system-network
Path=
Terminal=false
StartupNotify=false
Categories=Settings;HardwareSettings;

1
shell
View File

@ -9,4 +9,5 @@ export WDVN_PID="$BASHPID"
export PATH="$(dirname "$(realpath -s "$BASH_SOURCE")")/path:$PATH"
source "wdvn-env-i386"
export WDVN_FULLNAME=
export DEBIAN_FRONTEND="noninteractive"
export PS1="\[\033[0;35m\]\$(wdvn-name)\[\033[0m\]:\[\033[0;37m\]\$(basename -- \$PWD)\[\033[0m\]> "