diff --git a/home/live/.Xdefaults b/home/live/.Xdefaults
deleted file mode 100644
index abdc96a..0000000
--- a/home/live/.Xdefaults
+++ /dev/null
@@ -1,30 +0,0 @@
-! xscreensaver ---------------------------------------------------------------
-
-!font settings
-xscreensaver.Dialog.headingFont: -*-dina-bold-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.Dialog.bodyFont: -*-dina-medium-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.Dialog.labelFont: -*-dina-medium-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.Dialog.unameFont: -*-dina-medium-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.Dialog.buttonFont: -*-dina-bold-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.Dialog.dateFont: -*-dina-medium-r-*-*-10-*-*-*-*-*-*-*
-xscreensaver.passwd.passwdFont: -*-dina-bold-r-*-*-10-*-*-*-*-*-*-*
-!general dialog box (affects main hostname, username, password text)
-xscreensaver.Dialog.foreground: #EDEDED
-xscreensaver.Dialog.background: #202020
-xscreensaver.Dialog.topShadowColor: #202024
-xscreensaver.Dialog.bottomShadowColor: #202024
-xscreensaver.Dialog.Button.foreground: #EDEDFF
-xscreensaver.Dialog.Button.background: #444
-!username/password input box and date text colour
-xscreensaver.Dialog.text.foreground: #EDEDFF
-xscreensaver.Dialog.text.background: #444
-xscreensaver.Dialog.internalBorderWidth:24
-xscreensaver.Dialog.borderWidth: 0
-xscreensaver.Dialog.shadowThickness: 2
-!timeout bar (background is actually determined by Dialog.text.background)
-xscreensaver.passwd.thermometer.foreground: #A9B7C4
-xscreensaver.passwd.thermometer.background: #202020
-xscreensaver.passwd.thermometer.width: 8
-!datestamp format--see the strftime(3) manual page for details
-xscreensaver.dateFormat: %I:%M%P %a %b %d, %Y
-
diff --git a/home/live/.bashrc b/home/live/.bashrc
deleted file mode 100644
index b488fcc..0000000
--- a/home/live/.bashrc
+++ /dev/null
@@ -1,117 +0,0 @@
-# ~/.bashrc: executed by bash(1) for non-login shells.
-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
-# for examples
-
-# If not running interactively, don't do anything
-case $- in
- *i*) ;;
- *) return;;
-esac
-
-# don't put duplicate lines or lines starting with space in the history.
-# See bash(1) for more options
-HISTCONTROL=ignoreboth
-
-# append to the history file, don't overwrite it
-shopt -s histappend
-
-# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
-HISTSIZE=1000
-HISTFILESIZE=2000
-
-# check the window size after each command and, if necessary,
-# update the values of LINES and COLUMNS.
-shopt -s checkwinsize
-
-# If set, the pattern "**" used in a pathname expansion context will
-# match all files and zero or more directories and subdirectories.
-#shopt -s globstar
-
-# make less more friendly for non-text input files, see lesspipe(1)
-[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
-
-# set variable identifying the chroot you work in (used in the prompt below)
-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
- debian_chroot=$(cat /etc/debian_chroot)
-fi
-
-# set a fancy prompt (non-color, unless we know we "want" color)
-case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
-esac
-
-# uncomment for a colored prompt, if the terminal has the capability; turned
-# off by default to not distract the user: the focus in a terminal window
-# should be on the output of commands, not on the prompt
-#force_color_prompt=yes
-
-if [ -n "$force_color_prompt" ]; then
- if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
- # We have color support; assume it's compliant with Ecma-48
- # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
- # a case would tend to support setf rather than setaf.)
- color_prompt=yes
- else
- color_prompt=
- fi
-fi
-
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
-unset color_prompt force_color_prompt
-
-# If this is an xterm set the title to user@host:dir
-case "$TERM" in
-xterm*|rxvt*)
- PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
- ;;
-*)
- ;;
-esac
-
-# enable color support of ls and also add handy aliases
-if [ -x /usr/bin/dircolors ]; then
- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
- alias ls='ls --color=auto'
- #alias dir='dir --color=auto'
- #alias vdir='vdir --color=auto'
-
- alias grep='grep --color=auto'
- alias fgrep='fgrep --color=auto'
- alias egrep='egrep --color=auto'
-fi
-
-# colored GCC warnings and errors
-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
-
-# some more ls aliases
-alias ll='ls -alF'
-alias la='ls -A'
-alias l='ls -CF'
-
-# Add an "alert" alias for long running commands. Use like so:
-# sleep 10; alert
-alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
-
-# Alias definitions.
-# You may want to put all your additions into a separate file like
-# ~/.bash_aliases, instead of adding them here directly.
-# See /usr/share/doc/bash-doc/examples in the bash-doc package.
-
-if [ -f ~/.bash_aliases ]; then
- . ~/.bash_aliases
-fi
-
-# enable programmable completion features (you don't need to enable
-# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
-# sources /etc/bash.bashrc).
-if ! shopt -oq posix; then
- if [ -f /usr/share/bash-completion/bash_completion ]; then
- . /usr/share/bash-completion/bash_completion
- elif [ -f /etc/bash_completion ]; then
- . /etc/bash_completion
- fi
-fi
diff --git a/home/live/.config/Trolltech.conf b/home/live/.config/Trolltech.conf
deleted file mode 100644
index ebabedd..0000000
--- a/home/live/.config/Trolltech.conf
+++ /dev/null
@@ -1,5 +0,0 @@
-[Qt]
-font="Noto Sans,9,-1,5,50,0,0,0,0,0"
-style=GTK+
-doubleClickInterval=400
-cursorFlashTime=1200
diff --git a/home/live/.config/dconf/user b/home/live/.config/dconf/user
deleted file mode 100644
index ca3b6d4..0000000
Binary files a/home/live/.config/dconf/user and /dev/null differ
diff --git a/home/live/.config/user-dirs.dirs b/home/live/.config/user-dirs.dirs
deleted file mode 100644
index 7f9a959..0000000
--- a/home/live/.config/user-dirs.dirs
+++ /dev/null
@@ -1,15 +0,0 @@
-# This file is written by xdg-user-dirs-update
-# If you want to change or add directories, just edit the line you're
-# interested in. All local changes will be retained on the next run.
-# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
-# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
-# absolute path. No other format is supported.
-#
-XDG_DESKTOP_DIR="$HOME/Desktop"
-XDG_DOWNLOAD_DIR="$HOME/Downloads"
-XDG_TEMPLATES_DIR="$HOME/Templates"
-XDG_PUBLICSHARE_DIR="$HOME/Public"
-XDG_DOCUMENTS_DIR="$HOME/Documents"
-XDG_MUSIC_DIR="$HOME/Music"
-XDG_PICTURES_DIR="$HOME/Pictures"
-XDG_VIDEOS_DIR="$HOME/Videos"
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-1048x809.rc b/home/live/.config/xfce4/desktop/icons.screen0-1048x809.rc
deleted file mode 100644
index 1f12d3c..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-1048x809.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[/home/user/Desktop/22.png]
-row=1
-col=0
-
-[/home/user/Desktop/24.png]
-row=2
-col=0
-
-[/home/user/Desktop/16.png]
-row=0
-col=0
-
-[/home/user/Desktop/32.png]
-row=3
-col=0
-
-[/home/user/Desktop/48.png]
-row=4
-col=0
-
-[/home/user/Desktop/64.png]
-row=0
-col=1
-
-[/home/user/Desktop/chrome-gbbalmjehbfiadnjnbgnndkhefcejgic-Default.desktop]
-row=2
-col=1
-
-[/home/user/Desktop/128.png]
-row=1
-col=1
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-1048x814.rc b/home/live/.config/xfce4/desktop/icons.screen0-1048x814.rc
deleted file mode 100644
index c7049f3..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-1048x814.rc
+++ /dev/null
@@ -1,31 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[/home/user/Desktop/64.png]
-row=0
-col=1
-
-[/home/user/Desktop/32.png]
-row=3
-col=0
-
-[/home/user/Desktop/16.png]
-row=0
-col=0
-
-[/home/user/Desktop/22.png]
-row=1
-col=0
-
-[/home/user/Desktop/48.png]
-row=4
-col=0
-
-[/home/user/Desktop/128.png]
-row=1
-col=1
-
-[/home/user/Desktop/24.png]
-row=2
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-1156x849.rc b/home/live/.config/xfce4/desktop/icons.screen0-1156x849.rc
deleted file mode 100644
index 147fc70..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-1156x849.rc
+++ /dev/null
@@ -1,11 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[/home/user/Desktop/mount_fs.sh]
-row=1
-col=0
-
-[2018-01-08-14-41-11-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-1249x679.rc b/home/live/.config/xfce4/desktop/icons.screen0-1249x679.rc
deleted file mode 100644
index 147fc70..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-1249x679.rc
+++ /dev/null
@@ -1,11 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[/home/user/Desktop/mount_fs.sh]
-row=1
-col=0
-
-[2018-01-08-14-41-11-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-1561x959.rc b/home/live/.config/xfce4/desktop/icons.screen0-1561x959.rc
deleted file mode 100644
index a87813d..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-1561x959.rc
+++ /dev/null
@@ -1,7 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-2203x1133.rc b/home/live/.config/xfce4/desktop/icons.screen0-2203x1133.rc
deleted file mode 100644
index 9943512..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-2203x1133.rc
+++ /dev/null
@@ -1,19 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
-[Корзина]
-row=1
-col=0
-
-[/]
-row=2
-col=0
-
-[/home/user]
-row=3
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-2203x1231.rc b/home/live/.config/xfce4/desktop/icons.screen0-2203x1231.rc
deleted file mode 100644
index a87813d..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-2203x1231.rc
+++ /dev/null
@@ -1,7 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-2203x1239.rc b/home/live/.config/xfce4/desktop/icons.screen0-2203x1239.rc
deleted file mode 100644
index 03e8607..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-2203x1239.rc
+++ /dev/null
@@ -1,7 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2018-01-08-14-41-11-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-2203x1246.rc b/home/live/.config/xfce4/desktop/icons.screen0-2203x1246.rc
deleted file mode 100644
index 9943512..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-2203x1246.rc
+++ /dev/null
@@ -1,19 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
-[Корзина]
-row=1
-col=0
-
-[/]
-row=2
-col=0
-
-[/home/user]
-row=3
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-2203x1247.rc b/home/live/.config/xfce4/desktop/icons.screen0-2203x1247.rc
deleted file mode 100644
index 9943512..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-2203x1247.rc
+++ /dev/null
@@ -1,19 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
-[Корзина]
-row=1
-col=0
-
-[/]
-row=2
-col=0
-
-[/home/user]
-row=3
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-784x551.rc b/home/live/.config/xfce4/desktop/icons.screen0-784x551.rc
deleted file mode 100644
index 147fc70..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-784x551.rc
+++ /dev/null
@@ -1,11 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[/home/user/Desktop/mount_fs.sh]
-row=1
-col=0
-
-[2018-01-08-14-41-11-00]
-row=0
-col=0
-
diff --git a/home/live/.config/xfce4/desktop/icons.screen0-784x559.rc b/home/live/.config/xfce4/desktop/icons.screen0-784x559.rc
deleted file mode 100644
index 9943512..0000000
--- a/home/live/.config/xfce4/desktop/icons.screen0-784x559.rc
+++ /dev/null
@@ -1,19 +0,0 @@
-[xfdesktop-version-4.10.3+-rcfile_format]
-4.10.3+=true
-
-[2020-08-03-08-53-04-00]
-row=0
-col=0
-
-[Корзина]
-row=1
-col=0
-
-[/]
-row=2
-col=0
-
-[/home/user]
-row=3
-col=0
-
diff --git a/home/live/.config/xfce4/helpers.rc b/home/live/.config/xfce4/helpers.rc
deleted file mode 100644
index fc0f325..0000000
--- a/home/live/.config/xfce4/helpers.rc
+++ /dev/null
@@ -1 +0,0 @@
-WebBrowser=google-chrome
\ No newline at end of file
diff --git a/home/live/.config/xfce4/panel/launcher-19/16093657651.desktop b/home/live/.config/xfce4/panel/launcher-19/16093657651.desktop
deleted file mode 100644
index 19e8d6c..0000000
--- a/home/live/.config/xfce4/panel/launcher-19/16093657651.desktop
+++ /dev/null
@@ -1,15 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Exec=exo-open --launch FileManager %u
-Icon=system-file-manager
-StartupNotify=true
-Terminal=false
-Categories=Utility;X-XFCE;X-Xfce-Toplevel;
-OnlyShowIn=XFCE;
-X-XFCE-MimeType=inode/directory;x-scheme-handler/trash;
-Name=File Manager
-Name[ru]=Файловый менеджер
-Comment=Browse the file system
-Comment[ru]=Просмотреть файловую систему
-X-XFCE-Source=file:///usr/share/applications/exo-file-manager.desktop
diff --git a/home/live/.config/xfce4/panel/launcher-23/16093659533.desktop b/home/live/.config/xfce4/panel/launcher-23/16093659533.desktop
deleted file mode 100644
index 0298d34..0000000
--- a/home/live/.config/xfce4/panel/launcher-23/16093659533.desktop
+++ /dev/null
@@ -1,16 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Exec=exo-open --launch WebBrowser %u
-Icon=web-browser
-StartupNotify=true
-Terminal=false
-Categories=Network;X-XFCE;X-Xfce-Toplevel;
-OnlyShowIn=XFCE;
-X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https;
-Name=Web Browser
-Name[ru]=Веб-браузер
-Comment=Browse the web
-Comment[ru]=Смотреть в Интернете
-X-XFCE-Source=file:///usr/share/applications/exo-web-browser.desktop
-Path=
diff --git a/home/live/.config/xfce4/panel/launcher-24/16093659584.desktop b/home/live/.config/xfce4/panel/launcher-24/16093659584.desktop
deleted file mode 100644
index 2034e66..0000000
--- a/home/live/.config/xfce4/panel/launcher-24/16093659584.desktop
+++ /dev/null
@@ -1,14 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Exec=exo-open --launch TerminalEmulator
-Icon=utilities-terminal
-StartupNotify=true
-Terminal=false
-Categories=Utility;X-XFCE;X-Xfce-Toplevel;
-OnlyShowIn=XFCE;
-Name=Terminal Emulator
-Name[ru]=Эмулятор терминала
-Comment=Use the command line
-Comment[ru]=Использовать командную строку
-X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop
diff --git a/home/live/.config/xfce4/panel/whiskermenu-1.rc b/home/live/.config/xfce4/panel/whiskermenu-1.rc
deleted file mode 100644
index b80c96c..0000000
--- a/home/live/.config/xfce4/panel/whiskermenu-1.rc
+++ /dev/null
@@ -1,68 +0,0 @@
-favorites=RDWebAccess.desktop,RDWebClient.desktop,org.remmina.Remmina.desktop,ctsg.desktop,ctskeyimportg.desktop,ubiquity.desktop
-recent=
-button-title=Applications Menu
-button-icon=xubuntu-logo-menu
-button-single-row=false
-show-button-title=false
-show-button-icon=true
-launcher-show-name=true
-launcher-show-description=false
-launcher-show-tooltip=true
-item-icon-size=2
-hover-switch-category=false
-category-show-name=true
-category-icon-size=1
-load-hierarchy=true
-recent-items-max=10
-favorites-in-recent=true
-display-recent-default=false
-position-search-alternate=true
-position-commands-alternate=false
-position-categories-alternate=false
-menu-width=400
-menu-height=500
-menu-opacity=100
-command-settings=xfce4-settings-manager
-show-command-settings=true
-command-lockscreen=xflock4
-show-command-lockscreen=true
-command-switchuser=dm-tool switch-to-greeter
-show-command-switchuser=false
-command-logout=xfce4-session-logout
-show-command-logout=true
-command-menueditor=menulibre
-show-command-menueditor=true
-command-profile=mugshot
-show-command-profile=true
-search-actions=5
-
-[action0]
-name=Man-страницы
-pattern=#
-command=exo-open --launch TerminalEmulator man %s
-regex=false
-
-[action1]
-name=Web-поиск
-pattern=?
-command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u
-regex=false
-
-[action2]
-name=Википедия
-pattern=!w
-command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u
-regex=false
-
-[action3]
-name=Выполнить в терминале
-pattern=!
-command=exo-open --launch TerminalEmulator %s
-regex=false
-
-[action4]
-name=Открыть URI
-pattern=^(file|http|https):\\/\\/(.*)$
-command=exo-open \\0
-regex=true
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml
deleted file mode 100644
index d779138..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml
deleted file mode 100644
index 9fd09d6..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
deleted file mode 100644
index c6778b6..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
deleted file mode 100644
index a1544c8..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
deleted file mode 100644
index 88de0ff..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
deleted file mode 100644
index ccb5895..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
deleted file mode 100644
index 38aef24..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml
+++ /dev/null
@@ -1,123 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
deleted file mode 100644
index e778356..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
deleted file mode 100644
index 641c0b9..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml
deleted file mode 100644
index 109c63f..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
deleted file mode 100644
index 3e0f196..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
deleted file mode 100644
index 848d648..0000000
--- a/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/home/live/.gnupg/pubring.kbx b/home/live/.gnupg/pubring.kbx
deleted file mode 100644
index e868a83..0000000
Binary files a/home/live/.gnupg/pubring.kbx and /dev/null differ
diff --git a/home/live/.gnupg/trustdb.gpg b/home/live/.gnupg/trustdb.gpg
deleted file mode 100644
index 2349aa1..0000000
Binary files a/home/live/.gnupg/trustdb.gpg and /dev/null differ
diff --git a/home/live/.local/share/keyrings/default b/home/live/.local/share/keyrings/default
deleted file mode 100644
index 5404b0b..0000000
--- a/home/live/.local/share/keyrings/default
+++ /dev/null
@@ -1 +0,0 @@
-Связка_ключей_по_умолчанию
\ No newline at end of file
diff --git a/home/live/.local/share/keyrings/user.keystore b/home/live/.local/share/keyrings/user.keystore
deleted file mode 100644
index 8a52318..0000000
Binary files a/home/live/.local/share/keyrings/user.keystore and /dev/null differ
diff --git a/home/live/.local/share/keyrings/Связка_ключей_по_умолчанию.keyring b/home/live/.local/share/keyrings/Связка_ключей_по_умолчанию.keyring
deleted file mode 100644
index 7d0727b..0000000
--- a/home/live/.local/share/keyrings/Связка_ключей_по_умолчанию.keyring
+++ /dev/null
@@ -1,40 +0,0 @@
-[keyring]
-display-name=Связка ключей по умолчанию
-ctime=1609546770
-mtime=0
-lock-on-idle=false
-lock-after=false
-
-[2]
-item-type=0
-display-name=Chromium Safe Storage
-secret=Zh/EgdOG9N/CLKfdPvmBvg==
-mtime=1609546770
-ctime=1609546770
-
-[2:attribute0]
-name=application
-type=string
-value=chromium
-
-[2:attribute1]
-name=xdg:schema
-type=string
-value=chrome_libsecret_os_crypt_password_v2
-
-[1]
-item-type=0
-display-name=Chrome Safe Storage Control
-secret=The meaning of life
-mtime=1609546770
-ctime=1609546770
-
-[1:attribute0]
-name=explanation
-type=string
-value=Because of quirks in the gnome libsecret API, Chrome needs to store a dummy entry to guarantee that this keyring was properly unlocked. More details at http://crbug.com/660005.
-
-[1:attribute1]
-name=xdg:schema
-type=string
-value=_chrome_dummy_schema_for_unlocking
diff --git a/home/live/.pki/nssdb/cert9.db b/home/live/.pki/nssdb/cert9.db
deleted file mode 100644
index 98a54bd..0000000
Binary files a/home/live/.pki/nssdb/cert9.db and /dev/null differ
diff --git a/home/live/.pki/nssdb/key4.db b/home/live/.pki/nssdb/key4.db
deleted file mode 100644
index 1cebeeb..0000000
Binary files a/home/live/.pki/nssdb/key4.db and /dev/null differ
diff --git a/home/live/.pki/nssdb/pkcs11.txt b/home/live/.pki/nssdb/pkcs11.txt
deleted file mode 100644
index a2d7af2..0000000
--- a/home/live/.pki/nssdb/pkcs11.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-library=
-name=NSS Internal PKCS #11 Module
-parameters=configdir='sql:/home/live/.pki/nssdb' certPrefix='' keyPrefix='' secmod='secmod.db' flags=optimizeSpace updatedir='' updateCertPrefix='' updateKeyPrefix='' updateid='' updateTokenDescription=''
-NSS=Flags=internal,critical trustOrder=75 cipherOrder=100 slotParams=(1={slotFlags=[ECC,RSA,DSA,DH,RC2,RC4,DES,RANDOM,SHA1,MD5,MD2,SSL,TLS,AES,Camellia,SEED,SHA256,SHA512] askpw=any timeout=30})
-
diff --git a/home/live/.profile b/home/live/.profile
deleted file mode 100644
index d89ea5a..0000000
--- a/home/live/.profile
+++ /dev/null
@@ -1,27 +0,0 @@
-# ~/.profile: executed by the command interpreter for login shells.
-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
-# exists.
-# see /usr/share/doc/bash/examples/startup-files for examples.
-# the files are located in the bash-doc package.
-
-# the default umask is set in /etc/profile; for setting the umask
-# for ssh logins, install and configure the libpam-umask package.
-#umask 022
-
-# if running bash
-if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
-fi
-
-# set PATH so it includes user's private bin if it exists
-if [ -d "$HOME/.local/bin" ] ; then
- PATH="$HOME/.local/bin:$PATH"
-fi
diff --git a/home/live/.xscreensaver b/home/live/.xscreensaver
deleted file mode 100644
index e4c7ad3..0000000
--- a/home/live/.xscreensaver
+++ /dev/null
@@ -1,2 +0,0 @@
-mode: blank
-
diff --git a/linux-live/minioslib b/linux-live/minioslib
index 4fd4114..424cf6e 100644
--- a/linux-live/minioslib
+++ b/linux-live/minioslib
@@ -1099,6 +1099,9 @@ EOF
rm /etc/alternatives/text.plymouth
ln -s /usr/share/plymouth/themes/minios-logo/minios-logo.plymouth /etc/alternatives/default.plymouth
ln -s /usr/share/plymouth/themes/minios-logo/minios-text.plymouth /etc/alternatives/text.plymouth
+ update-initramfs -u
+ rm /usr/share/xfce4/xubuntu-wallpaper.png
+ ln -s /usr/share/backgrounds/MiniOS.png /usr/share/xfce4/xubuntu-wallpaper.png
echo "Set up user 'ubuntu'" >>$OUTPUT 2>&1
adduser --gecos '' ubuntu --disabled-password >>$OUTPUT 2>&1
@@ -1109,7 +1112,7 @@ EOF
addgroup ubuntu lpadmin >>$OUTPUT 2>&1
addgroup ubuntu plugdev >>$OUTPUT 2>&1
addgroup ubuntu dip >>$OUTPUT 2>&1
- addgroup ubuntu samba >>$OUTPUT 2>&1
+ #addgroup ubuntu samba >>$OUTPUT 2>&1
#sed -i "s,managed=false,managed=true,g" /etc/NetworkManager/NetworkManager.conf
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/user-dirs.locale b/linux-live/rootcopy-ubuntu/etc/skel/.config/user-dirs.locale
deleted file mode 100644
index 3e0b419..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/user-dirs.locale
+++ /dev/null
@@ -1 +0,0 @@
-en_US
\ No newline at end of file
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml
deleted file mode 100644
index d779138..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml
deleted file mode 100644
index 9fd09d6..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
deleted file mode 100644
index c6778b6..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
deleted file mode 100644
index b3ff58c..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
deleted file mode 100644
index 88de0ff..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
deleted file mode 100644
index ccb5895..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
deleted file mode 100644
index e778356..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
deleted file mode 100644
index 641c0b9..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml
deleted file mode 100644
index 109c63f..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
deleted file mode 100644
index 3e0f196..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml b/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
deleted file mode 100644
index 848d648..0000000
--- a/linux-live/rootcopy-ubuntu/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-black.svg b/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-black.svg
deleted file mode 100644
index 8d2c053..0000000
--- a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-black.svg
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
diff --git a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-colour.svg b/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-colour.svg
deleted file mode 100644
index 6534270..0000000
--- a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-colour.svg
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
diff --git a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-gray.svg b/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-gray.svg
deleted file mode 100644
index 2203c45..0000000
--- a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-gray.svg
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
diff --git a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-white.svg b/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-white.svg
index 39d482e..ca13046 100644
--- a/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-white.svg
+++ b/linux-live/rootcopy-ubuntu/usr/share/pixmaps/MiniOS-white.svg
@@ -8,15 +8,15 @@
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xml:space="preserve"
- width="512"
- height="114"
+ width="256"
+ height="256"
version="1.1"
style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
- viewBox="0 0 512 114"
- id="svg74"
- sodipodi:docname="MiniOS-white.svg"
+ viewBox="0 0 256 256"
+ id="svg345"
+ sodipodi:docname="MiniOS-wis.svg"
inkscape:version="1.0.2 (e86c870879, 2021-01-15, custom)">image/svg+xml
+ id="defs292">
+ id="font-face273">
+ id="path275" />
+ id="glyph279" />
+ id="glyph281" />
+ id="glyph283" />
+ id="glyph285" />
+ id="glyph287" />