2025-02-18 22:47:07 +01:00
2025-02-18 22:47:07 +01:00
2024-01-21 13:29:39 +01:00
2024-01-23 17:56:48 +01:00
2024-01-16 10:23:44 +01:00

Script for Build Debian Live

Get default bash pref

 set +o history # disable history

alias curl="curl -s"
export CHROOT="https://git.netdldata.net/lionel/debianlive/raw/branch/master/config/includes.chroot"

curl "$CHROOT/etc/skel/.bashrc" > "$HOME/.bashrc"
curl "$CHROOT/etc/skel/.vimrc" > "$HOME/.vimrc"
curl "$CHROOT/etc/skel/.inputrc" > "$HOME/.inputrc"

set -o history # enable history

Get default dconf pref

 set +o history # disable history

alias curl="curl -s"
export CHROOT="https://git.netdldata.net/lionel/debianlive/raw/branch/master/config/includes.chroot"

dconf load / <<<$(curl ""$CHROOT/usr/local/share/preferences.dconf")

set -o history # enable history

Get default remmina pref

 set +o history # disable history

alias curl="curl -s"
export CHROOT="https://git.netdldata.net/lionel/debianlive/raw/branch/master/config/includes.chroot"

mkdir -p "$HOME/.config/remmina"
curl "$CHROOT/etc/skel/.config/remmina/remmina.pref" > "$HOME/.config/remmina/remmina.pref"

mkdir -p "$HOME/.local/share/remmina/"
curl "$CHROOT/etc/skel/.local/share/remmina/group_rdp_xorg_xorg-lan.remmina" > "$HOME/.local/share/remmina/group_rdp_xorg_xorg-lan.remmina"

set -o history # enable history

Get default x2go pref

 set +o history # disable history

alias curl="curl -s"
export CHROOT="https://git.netdldata.net/lionel/debianlive/raw/branch/master/config/includes.chroot"

mkdir -p "$HOME/.x2goclient"
curl "$CHROOT/etc/skel/.x2goclient/sessions" > "$HOME/.x2goclient/sessions"
curl "$CHROOT/etc/skel/.x2goclient/settings" > "$HOME/.x2goclient/settings"

set -o history # enable history
Description
No description provided
Readme 78 MiB
Languages
JavaScript 95.7%
CSS 2.9%
HTML 1.1%
Shell 0.3%