@ -0,0 +1,5 @@ |
|||
deb http://deb.debian.org/debian/ stretch main contrib non-free |
|||
deb http://deb.debian.org/debian/ stretch-updates main contrib non-free |
|||
deb http://security.debian.org/debian-security stretch/updates main contrib non-free |
|||
|
|||
deb-src http://deb.debian.org/debian/ stretch main contrib non-free |
@ -0,0 +1,32 @@ |
|||
# nodm configuration |
|||
|
|||
# Set NODM_ENABLED to something different than 'false' to enable nodm |
|||
NODM_ENABLED=true |
|||
|
|||
# User to autologin for |
|||
NODM_USER=live |
|||
|
|||
# First vt to try when looking for free VTs |
|||
NODM_FIRST_VT=7 |
|||
|
|||
# X session |
|||
NODM_XSESSION=/etc/X11/Xsession |
|||
|
|||
# Options for nodm itself |
|||
NODM_OPTIONS= |
|||
|
|||
# Options for the X server. |
|||
# |
|||
# Format: [/usr/bin/<Xserver>] [:<disp>] <Xserver-options> |
|||
# |
|||
# The Xserver executable and the display name can be omitted, but should |
|||
# be placed in front, if nodm's defaults shall be overridden. |
|||
NODM_X_OPTIONS='-nolisten tcp' |
|||
|
|||
# If an X session will run for less than this time in seconds, nodm will wait an |
|||
# increasing bit of time before restarting the session. |
|||
NODM_MIN_SESSION_TIME=60 |
|||
|
|||
# Timeout (in seconds) to wait for X to be ready to accept connections. If X is |
|||
# not ready before this timeout, it is killed and restarted. |
|||
NODM_X_TIMEOUT=300 |
@ -0,0 +1 @@ |
|||
xfce4-session |
@ -0,0 +1 @@ |
|||
xfce4-session |
@ -0,0 +1 @@ |
|||
xfce4-session |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,36 @@ |
|||
# greeny_dark theme for SLIM |
|||
# by aditya shakya <adi1090x@gmail.com> |
|||
# using artwork from some free html+css login templates on the internet |
|||
|
|||
# Messages (ie: shutdown) |
|||
|
|||
msg_color #b5cd60 |
|||
msg_font Sans:size=18:bold:dpi=75 |
|||
msg_x 50% |
|||
msg_y 30% |
|||
|
|||
# Session Name |
|||
|
|||
session_color #b5cd60 |
|||
session_font Sans:size=16:bold:dpi=75 |
|||
session_x 50% |
|||
session_y 90% |
|||
|
|||
# valid values: stretch, tile |
|||
|
|||
background_style stretch |
|||
background_color #f2f2f2 |
|||
|
|||
# Input controls |
|||
|
|||
input_panel_x 50% |
|||
input_panel_y 50% |
|||
input_name_x 200 |
|||
input_name_y 78 |
|||
input_pass_x 200 |
|||
input_pass_y 145 |
|||
input_font Sans:size=14:dpi=75 |
|||
input_color #b5cd60 |
|||
|
|||
username_msg |
|||
password_msg |
@ -1,6 +1,3 @@ |
|||
#!/bin/bash |
|||
|
|||
$APT_CMD autoremove $APT_OPTIONS $APT_OPTIONS2 \ |
|||
software-properties-common >>$OUTPUT 2>&1 |
|||
|
|||
rm -Rf /usr/share/icons/gnome/256x256 >>$OUTPUT 2>&1 |
|||
|
@ -0,0 +1,638 @@ |
|||
#!/bin/bash |
|||
|
|||
set -e # exit on error |
|||
set -o pipefail # exit on pipeline error |
|||
set -u # treat unset variable as error |
|||
|
|||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" |
|||
|
|||
GTKUI="2" |
|||
|
|||
if [ $DISTRIBUTION = "buster" ] && [ $GTKUI = "3" ]; then |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD update >>$OUTPUT 2>&1 && |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
gnupg curl >>$OUTPUT 2>&1 |
|||
echo "deb http://mxrepo.com/mx/repo/ temp main" >>/etc/apt/sources.list |
|||
curl -L https://cyber-x.ru/wp-content/upload/mx19/mx19.gpg | sudo apt-key add - |
|||
fi |
|||
|
|||
echo "nodm nodm/enabled boolean true" | debconf-set-selections |
|||
echo "samba-common samba-common/dhcp boolean false" | debconf-set-selections |
|||
|
|||
# install packages |
|||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD update >>$OUTPUT 2>&1 && |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|||
fi |
|||
|
|||
# install packages |
|||
if [ $DISTRIBUTION = "stretch" ]; then |
|||
wget -c http://ftp.ru.debian.org/debian/pool/main/e/elementary-xfce/elementary-xfce-icon-theme_0.15.2-1_all.deb |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD update >>$OUTPUT 2>&1 && |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
./elementary-xfce-icon-theme_0.15.2-1_all.deb >>$OUTPUT 2>&1 |
|||
rm -f ./elementary-xfce-icon-theme_0.15.2-1_all.deb >>$OUTPUT 2>&1 |
|||
else |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD update >>$OUTPUT 2>&1 && |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
elementary-xfce-icon-theme >>$OUTPUT 2>&1 |
|||
fi |
|||
|
|||
if [ $DISTRIBUTION = "buster" ] && [ $GTKUI = "3" ]; then |
|||
sed -i "s,deb http://mxrepo.com/mx/repo/ temp main,#deb http://mxrepo.com/mx/repo/ temp main,g" /etc/apt/sources.list |
|||
fi |
|||
|
|||
if [ $DISTRIBUTION = "bullseye" ]; then |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
librsvg2-common >>$OUTPUT 2>&1 |
|||
fi |
|||
|
|||
if grep xfce4-whiskermenu-plugin $SCRIPT_DIR/$PACKAGE_VARIANT.list >>$OUTPUT 2>&1; then |
|||
if [ $DISTRIBUTION = "buster" ] || [ $DISTRIBUTION = "stretch" ]; then |
|||
echo "favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-mail-reader.desktop,exo-web-browser.desktop" >/etc/skel/.config/xfce4/panel/whiskermenu-1.rc |
|||
echo "favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-mail-reader.desktop,exo-web-browser.desktop" >/root/.config/xfce4/panel/whiskermenu-1.rc |
|||
echo "favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-mail-reader.desktop,exo-web-browser.desktop" >/home/live/.config/xfce4/panel/whiskermenu-1.rc |
|||
elif [ $DISTRIBUTION = "bullseye" ]; then |
|||
echo "favorites=xfce4-terminal-emulator.desktop,xfce4-file-manager.desktop,xfce4-web-browser.desktop,xfce4-mail-reader.desktop" >/etc/skel/.config/xfce4/panel/whiskermenu-1.rc |
|||
echo "favorites=xfce4-terminal-emulator.desktop,xfce4-file-manager.desktop,xfce4-web-browser.desktop,xfce4-mail-reader.desktop" >/root/.config/xfce4/panel/whiskermenu-1.rc |
|||
echo "favorites=xfce4-terminal-emulator.desktop,xfce4-file-manager.desktop,xfce4-web-browser.desktop,xfce4-mail-reader.desktop" >/home/live/.config/xfce4/panel/whiskermenu-1.rc |
|||
fi |
|||
cat <<EOF >>/etc/skel/.config/xfce4/panel/whiskermenu-1.rc |
|||
recent= |
|||
button-icon=/usr/share/pixmaps/MiniOS-white.svg |
|||
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=false |
|||
view-as-icons=false |
|||
default-category=0 |
|||
recent-items-max=10 |
|||
favorites-in-recent=true |
|||
position-search-alternate=true |
|||
position-commands-alternate=false |
|||
position-categories-alternate=true |
|||
stay-on-focus-out=false |
|||
confirm-session-command=true |
|||
menu-width=450 |
|||
menu-height=500 |
|||
menu-opacity=100 |
|||
command-settings=xfce4-settings-manager |
|||
show-command-settings=false |
|||
command-lockscreen=xflock4 |
|||
show-command-lockscreen=false |
|||
command-switchuser=dm-tool switch-to-greeter |
|||
show-command-switchuser=false |
|||
command-logoutuser=xfce4-session-logout --logout --fast |
|||
show-command-logoutuser=false |
|||
command-restart=xfce4-session-logout --reboot --fast |
|||
show-command-restart=false |
|||
command-shutdown=xfce4-session-logout --halt --fast |
|||
show-command-shutdown=false |
|||
command-suspend=xfce4-session-logout --suspend |
|||
show-command-suspend=false |
|||
command-hibernate=xfce4-session-logout --hibernate |
|||
show-command-hibernate=false |
|||
command-logout=xfce4-session-logout |
|||
show-command-logout=true |
|||
command-menueditor=menulibre |
|||
show-command-menueditor=true |
|||
command-profile=mugshot |
|||
show-command-profile=false |
|||
search-actions=5 |
|||
|
|||
[action0] |
|||
name=Man Pages |
|||
pattern=# |
|||
command=exo-open --launch TerminalEmulator man %s |
|||
regex=false |
|||
|
|||
[action1] |
|||
name=Web Search |
|||
pattern=? |
|||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u |
|||
regex=false |
|||
|
|||
[action2] |
|||
name=Wikipedia |
|||
pattern=!w |
|||
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u |
|||
regex=false |
|||
|
|||
[action3] |
|||
name=Run in Terminal |
|||
pattern=! |
|||
command=exo-open --launch TerminalEmulator %s |
|||
regex=false |
|||
|
|||
[action4] |
|||
name=Open URI |
|||
pattern=^(file|http|https):\\/\\/(.*)$ |
|||
command=exo-open \\0 |
|||
regex=true |
|||
|
|||
|
|||
EOF |
|||
cat <<EOF >>/root/.config/xfce4/panel/whiskermenu-1.rc |
|||
recent= |
|||
button-icon=/usr/share/pixmaps/MiniOS-white.svg |
|||
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=false |
|||
view-as-icons=false |
|||
default-category=0 |
|||
recent-items-max=10 |
|||
favorites-in-recent=true |
|||
position-search-alternate=true |
|||
position-commands-alternate=false |
|||
position-categories-alternate=true |
|||
stay-on-focus-out=false |
|||
confirm-session-command=true |
|||
menu-width=450 |
|||
menu-height=500 |
|||
menu-opacity=100 |
|||
command-settings=xfce4-settings-manager |
|||
show-command-settings=false |
|||
command-lockscreen=xflock4 |
|||
show-command-lockscreen=false |
|||
command-switchuser=dm-tool switch-to-greeter |
|||
show-command-switchuser=false |
|||
command-logoutuser=xfce4-session-logout --logout --fast |
|||
show-command-logoutuser=false |
|||
command-restart=xfce4-session-logout --reboot --fast |
|||
show-command-restart=false |
|||
command-shutdown=xfce4-session-logout --halt --fast |
|||
show-command-shutdown=false |
|||
command-suspend=xfce4-session-logout --suspend |
|||
show-command-suspend=false |
|||
command-hibernate=xfce4-session-logout --hibernate |
|||
show-command-hibernate=false |
|||
command-logout=xfce4-session-logout |
|||
show-command-logout=true |
|||
command-menueditor=menulibre |
|||
show-command-menueditor=true |
|||
command-profile=mugshot |
|||
show-command-profile=false |
|||
search-actions=5 |
|||
|
|||
[action0] |
|||
name=Man Pages |
|||
pattern=# |
|||
command=exo-open --launch TerminalEmulator man %s |
|||
regex=false |
|||
|
|||
[action1] |
|||
name=Web Search |
|||
pattern=? |
|||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u |
|||
regex=false |
|||
|
|||
[action2] |
|||
name=Wikipedia |
|||
pattern=!w |
|||
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u |
|||
regex=false |
|||
|
|||
[action3] |
|||
name=Run in Terminal |
|||
pattern=! |
|||
command=exo-open --launch TerminalEmulator %s |
|||
regex=false |
|||
|
|||
[action4] |
|||
name=Open URI |
|||
pattern=^(file|http|https):\\/\\/(.*)$ |
|||
command=exo-open \\0 |
|||
regex=true |
|||
|
|||
|
|||
EOF |
|||
cat <<EOF >>/home/live/.config/xfce4/panel/whiskermenu-1.rc |
|||
recent= |
|||
button-icon=/usr/share/pixmaps/MiniOS-white.svg |
|||
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=false |
|||
view-as-icons=false |
|||
default-category=0 |
|||
recent-items-max=10 |
|||
favorites-in-recent=true |
|||
position-search-alternate=true |
|||
position-commands-alternate=false |
|||
position-categories-alternate=true |
|||
stay-on-focus-out=false |
|||
confirm-session-command=true |
|||
menu-width=450 |
|||
menu-height=500 |
|||
menu-opacity=100 |
|||
command-settings=xfce4-settings-manager |
|||
show-command-settings=false |
|||
command-lockscreen=xflock4 |
|||
show-command-lockscreen=false |
|||
command-switchuser=dm-tool switch-to-greeter |
|||
show-command-switchuser=false |
|||
command-logoutuser=xfce4-session-logout --logout --fast |
|||
show-command-logoutuser=false |
|||
command-restart=xfce4-session-logout --reboot --fast |
|||
show-command-restart=false |
|||
command-shutdown=xfce4-session-logout --halt --fast |
|||
show-command-shutdown=false |
|||
command-suspend=xfce4-session-logout --suspend |
|||
show-command-suspend=false |
|||
command-hibernate=xfce4-session-logout --hibernate |
|||
show-command-hibernate=false |
|||
command-logout=xfce4-session-logout |
|||
show-command-logout=true |
|||
command-menueditor=menulibre |
|||
show-command-menueditor=true |
|||
command-profile=mugshot |
|||
show-command-profile=false |
|||
search-actions=5 |
|||
|
|||
[action0] |
|||
name=Man Pages |
|||
pattern=# |
|||
command=exo-open --launch TerminalEmulator man %s |
|||
regex=false |
|||
|
|||
[action1] |
|||
name=Web Search |
|||
pattern=? |
|||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u |
|||
regex=false |
|||
|
|||
[action2] |
|||
name=Wikipedia |
|||
pattern=!w |
|||
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u |
|||
regex=false |
|||
|
|||
[action3] |
|||
name=Run in Terminal |
|||
pattern=! |
|||
command=exo-open --launch TerminalEmulator %s |
|||
regex=false |
|||
|
|||
[action4] |
|||
name=Open URI |
|||
pattern=^(file|http|https):\\/\\/(.*)$ |
|||
command=exo-open \\0 |
|||
regex=true |
|||
|
|||
|
|||
EOF |
|||
#echo $WHISKERMENU >>/etc/skel/.config/xfce4/panel/whiskermenu-1.rc |
|||
#echo $WHISKERMENU >>/root/.config/xfce4/panel/whiskermenu-1.rc |
|||
#echo $WHISKERMENU >>/home/live/.config/xfce4/panel/whiskermenu-1.rc |
|||
else |
|||
#read -r -d MINIMAL_PANEL '' <<EOF |
|||
cat <<EOF >/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="applicationsmenu"> |
|||
<property name="button-icon" type="string" value="/usr/share/pixmaps/MiniOS-white.svg"/> |
|||
<property name="show-button-title" type="bool" value="false"/> |
|||
</property> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
|||
|
|||
EOF |
|||
cat <<EOF >/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="applicationsmenu"> |
|||
<property name="button-icon" type="string" value="/usr/share/pixmaps/MiniOS-white.svg"/> |
|||
<property name="show-button-title" type="bool" value="false"/> |
|||
</property> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
|||
|
|||
EOF |
|||
cat <<EOF >/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="applicationsmenu"> |
|||
<property name="button-icon" type="string" value="/usr/share/pixmaps/MiniOS-white.svg"/> |
|||
<property name="show-button-title" type="bool" value="false"/> |
|||
</property> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
|||
|
|||
EOF |
|||
#echo $MINIMAL_PANEL >>/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
#echo $MINIMAL_PANEL >>/root/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
#echo $MINIMAL_PANEL >>/home/live/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml |
|||
fi |
|||
|
|||
if [ $PACKAGE_VARIANT = "minimal" ]; then |
|||
cat <<EOF >/etc/skel/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
cat <<EOF >/home/live/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
cat <<EOF >/root/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
|
|||
elif [ $PACKAGE_VARIANT = "standard" ]; then |
|||
cat <<EOF >/etc/skel/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=Thunar |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
cat <<EOF >/home/live/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=Thunar |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
cat <<EOF >/root/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=Thunar |
|||
WebBrowser= |
|||
|
|||
EOF |
|||
fi |
@ -0,0 +1,15 @@ |
|||
dbus-x11 |
|||
slim |
|||
libxfce4ui-utils |
|||
pcmanfm |
|||
xfce4-appfinder |
|||
xfce4-panel |
|||
xfce4-session |
|||
xfce4-settings |
|||
xfconf |
|||
xfdesktop4 |
|||
xfwm4 |
|||
greybird-gtk-theme |
|||
volumeicon-alsa |
|||
xfce4-xkb-plugin |
|||
xfce4-battery-plugin |
@ -0,0 +1,189 @@ |
|||
#!/bin/bash |
|||
|
|||
#(cd /rootcopy && cp --parents -afr * /) |
|||
|
|||
# create user directories |
|||
for dir in Desktop Documents Downloads Music Pictures Public Templates Videos; do |
|||
mkdir -p /home/live/$dir >>$OUTPUT 2>&1 |
|||
mkdir -p /root/$dir >>$OUTPUT 2>&1 |
|||
done |
|||
|
|||
rm -f /usr/share/backgrounds/xfce/* |
|||
ln -s /usr/share/backgrounds/MiniOS-wallpaper.svg /usr/share/backgrounds/xfce/xfce-verticals.png |
|||
ln -s /usr/share/backgrounds/MiniOS-wallpaper.svg /usr/share/backgrounds/xfce/xfce-teal.jpg |
|||
|
|||
if [ $PACKAGE_VARIANT = "standard" ]; then |
|||
rm -f /usr/share/applications/pavucontrol.desktop |
|||
fi |
|||
|
|||
if grep slim $SCRIPT_DIR/$PACKAGE_VARIANT.list >>$OUTPUT 2>&1; then |
|||
sed -i 's,# hidecursor false,hidecursor false,g' /etc/slim.conf |
|||
sed -i 's,screenshot_cmd scrot /root/slim.png,# screenshot_cmd scrot /root/slim.png,g' /etc/slim.conf |
|||
sed -i 's,#default_user simone,default_user live,g' /etc/slim.conf |
|||
sed -i 's,#auto_login no,auto_login yes,g' /etc/slim.conf |
|||
sed -i 's,current_theme debian-softwaves,current_theme minios,g' /etc/slim.conf |
|||
fi |
|||
|
|||
if [ $PACKAGE_VARIANT = "minimal" ]; then |
|||
cat <<EOF >>/usr/share/applications/taskmanager.desktop |
|||
[Desktop Entry] |
|||
Name=Task Manager |
|||
Name[ar]=مدير المهام |
|||
Name[ast]=Xestor de xeres |
|||
Name[be]=Кіраўнік задач |
|||
Name[bg]=Мениджър на задачи |
|||
Name[ca]=Gestor de tasques |
|||
Name[cs]=Správce úloh |
|||
Name[da]=Opgavehåndtering |
|||
Name[de]=Taskmanager |
|||
Name[el]=Διαχειριστής εργασιών |
|||
Name[en_AU]=Task Manager |
|||
Name[en_GB]=Task Manager |
|||
Name[es]=Gestor de tareas |
|||
Name[eu]=Zeregin kudeatzailea |
|||
Name[fi]=Tehtävienhallinta |
|||
Name[fr]=Gestionnaire de tâches |
|||
Name[gl]=Xestor de tarefas |
|||
Name[he]=מנהל משימות |
|||
Name[hr]=Upravitelj zadacima |
|||
Name[hu]=Feladatkezelő |
|||
Name[id]=Manajer Tugas |
|||
Name[is]=Verkefnastjóri |
|||
Name[it]=Gestore dei processi |
|||
Name[ja]=タスクマネージャー |
|||
Name[kk]=Үрдістерді басқарушысы |
|||
Name[ko]=작업 관리자 |
|||
Name[lt]=Užduočių tvarkytuvė |
|||
Name[ms]=Pengurus Tugas |
|||
Name[nb]=Oppgavebehandler |
|||
Name[nl]=Taakbeheerder |
|||
Name[oc]=Gestionari de prètzfaches |
|||
Name[pl]=Menedżer zadań |
|||
Name[pt]=Gestor de tarefas |
|||
Name[pt_BR]=Gerenciador de tarefas |
|||
Name[ru]=Диспетчер задач |
|||
Name[sk]=Správca úloh |
|||
Name[sl]=Upravljalnik nalog |
|||
Name[sq]=Përgjegjës Aktesh |
|||
Name[sr]=Управник задатака |
|||
Name[sv]=Aktivitetshanterare |
|||
Name[te]=కర్తవ్య నిర్వాహకం |
|||
Name[th]=โปรแกรมจัดการทาสก์ |
|||
Name[tr]=Görev Yöneticisi |
|||
Name[ug]=ۋەزىپە باشقۇرغۇ |
|||
Name[uk]=Диспетчер задач |
|||
Name[vi]=Quản lý tác vụ |
|||
Name[zh_CN]=任务管理器 |
|||
Name[zh_HK]=工作管理員 |
|||
Name[zh_TW]=工作管理員 |
|||
Comment=Easy to use task manager |
|||
Comment[ar]=من السهل إستخدام مدير المهام |
|||
Comment[ast]=Xestor de xeres cenciellu d'usar |
|||
Comment[be]=Зручны ў выкарыстанні кіраўнік задач |
|||
Comment[bg]=Лесен за използване мениджър на задачи |
|||
Comment[ca]=Gestor de tasques fàcil d'utilitzar |
|||
Comment[cs]=Snadno použitelný správce úloh |
|||
Comment[da]=Opgavehåndtering som er nem at bruge |
|||
Comment[de]=Prozessverwaltung mit einfacher Bedienung |
|||
Comment[el]=Εύκολος στην χρήση διαχειριστής διεργασιών |
|||
Comment[en_AU]=Easy to use task manager |
|||
Comment[en_GB]=Easy to use task manager |
|||
Comment[es]=Un gestor de tareas fácil de usar |
|||
Comment[eu]= Zeregin kudeatzaile erabilerraz bat da |
|||
Comment[fi]=Helppokäyttöinen tehtävienhallinta |
|||
Comment[fr]=Gestionnaire de tâches simple d’utilisation |
|||
Comment[gl]=Xestor de tarefas fácil de usar |
|||
Comment[he]=מנהל משימות קל לשימוש |
|||
Comment[hr]=Lagan za korištenje upravitelj zadacima |
|||
Comment[hu]=Egyszerűen használható feladatkezelő |
|||
Comment[id]=Manajer tugas yang mudah digunakan |
|||
Comment[is]=Einfaldur og auðveldur verkefnastjóri |
|||
Comment[it]=Gestore dei processi di semplice utilizzo |
|||
Comment[ja]=使いやすいタスクマネージャーです |
|||
Comment[kk]=Жүйе үрдістерін ыңғайлы басқару |
|||
Comment[ko]=쓰기 쉬운 작업관리자 |
|||
Comment[lt]=Lengvai naudojama užduočių tvarkytuvė |
|||
Comment[ms]=Pengurus tugas yang mudah digunakan |
|||
Comment[nb]=Lett å bruke oppgavebehandler |
|||
Comment[nl]=Gemakkelijk te gebruiken taakbeheerder |
|||
Comment[oc]=De bon utilizar : lo gestionari de prètzfaches |
|||
Comment[pl]=Zarządza uruchomionymi procesami |
|||
Comment[pt]=Gestor de tarefas fácil de usar |
|||
Comment[pt_BR]=Um gerenciador de tarefas fácil de usar |
|||
Comment[ru]=Простой диспетчер задач |
|||
Comment[sk]=Správca úloh s jednoduchým používaním |
|||
Comment[sl]=Enostaven upravljalnik nalog |
|||
Comment[sq]=Përgjegjës aktesh i lehtë për t’u përdorur |
|||
Comment[sr]=Управник задатака лак за коришћење |
|||
Comment[sv]=Lättanvänd aktivitetshanterare |
|||
Comment[te]=వాడుటకు సరళమైన కర్తవ్య నిర్వాహకం |
|||
Comment[th]=โปรแกรมจัดการทาสก์สะดวกใช้ |
|||
Comment[tr]=Kullanımı kolay görev yöneticisi |
|||
Comment[ug]=ئىشلىتىشكە ئەپلىك ۋەزىپە باشقۇرغۇ |
|||
Comment[uk]=Простий у використанні диспетчер задач |
|||
Comment[vi]=Trình quản lý tác vụ dễ dùng |
|||
Comment[zh_CN]=易用的任务管理器 |
|||
Comment[zh_HK]=易用的工作管理員 |
|||
Comment[zh_TW]=易於使用的工作管理員 |
|||
GenericName=Task Manager |
|||
GenericName[ar]=مدير المهام |
|||
GenericName[ast]=Xestor de xeres |
|||
GenericName[be]=Кіраўнік задач |
|||
GenericName[bg]=Мениджър на задачи |
|||
GenericName[ca]=Gestor de tasques |
|||
GenericName[cs]=Správce úloh |
|||
GenericName[da]=Opgavehåndtering |
|||
GenericName[de]=Taskmanager |
|||
GenericName[el]=Διαχειριστής εργασιών |
|||
GenericName[en_AU]=Task Manager |
|||
GenericName[en_GB]=Task Manager |
|||
GenericName[es]=Gestor de tareas |
|||
GenericName[eu]=Zeregin kudeatzailea |
|||
GenericName[fi]=Tehtävienhallinta |
|||
GenericName[fr]=Gestionnaire de tâches |
|||
GenericName[gl]=Xestor de tarefas |
|||
GenericName[he]=מנהל משימות |
|||
GenericName[hr]=Upravitelj zadacima |
|||
GenericName[hu]=Feladatkezelő |
|||
GenericName[id]=Manajer Tugas |
|||
GenericName[is]=Verkefnastjóri |
|||
GenericName[it]=Gestore dei processi |
|||
GenericName[ja]=タスクマネージャー |
|||
GenericName[kk]=Үрдістерді басқарушысы |
|||
GenericName[ko]=작업 관리자 |
|||
GenericName[lt]=Užduočių tvarkytuvė |
|||
GenericName[ms]=Pengurus Tugas |
|||
GenericName[nb]=Oppgavebehandler |
|||
GenericName[nl]=Taakbeheerder |
|||
GenericName[oc]=Gestionari de prètzfaches |
|||
GenericName[pl]=Menedżer zadań |
|||
GenericName[pt]=Gestor de tarefas |
|||
GenericName[pt_BR]=Gerenciador de tarefas |
|||
GenericName[ru]=Диспетчер задач |
|||
GenericName[sk]=Správca úloh |
|||
GenericName[sl]=Upravljalnik nalog |
|||
GenericName[sq]=Përgjegjës Aktesh |
|||
GenericName[sr]=Управник задатака |
|||
GenericName[sv]=Aktivitetshanterare |
|||
GenericName[te]=కర్తవ్య నిర్వాహకం |
|||
GenericName[th]=โปรแกรมจัดการทาสก์ |
|||
GenericName[tr]=Görev Yöneticisi |
|||
GenericName[ug]=ۋەزىپە باشقۇرغۇ |
|||
GenericName[uk]=Диспетчер задач |
|||
GenericName[vi]=Quản lý tác vụ |
|||
GenericName[zh_CN]=任务管理器 |
|||
GenericName[zh_HK]=工作管理員 |
|||
GenericName[zh_TW]=工作管理員 |
|||
Exec=xterm -e 'htop' |
|||
Icon=utilities-system-monitor |
|||
Terminal=false |
|||
StartupNotify=true |
|||
Type=Application |
|||
Categories=System;Utility; |
|||
|
|||
EOF |
|||
fi |
|||
|
|||
rm -Rf /usr/share/icons/gnome/256x256 >>$OUTPUT 2>&1 |
|||
|
|||
update-alternatives --set x-terminal-emulator /usr/bin/xterm >>$OUTPUT 2>&1 |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 857 B |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 711 B |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,32 @@ |
|||
# nodm configuration |
|||
|
|||
# Set NODM_ENABLED to something different than 'false' to enable nodm |
|||
NODM_ENABLED=true |
|||
|
|||
# User to autologin for |
|||
NODM_USER=live |
|||
|
|||
# First vt to try when looking for free VTs |
|||
NODM_FIRST_VT=7 |
|||
|
|||
# X session |
|||
NODM_XSESSION=/etc/X11/Xsession |
|||
|
|||
# Options for nodm itself |
|||
NODM_OPTIONS= |
|||
|
|||
# Options for the X server. |
|||
# |
|||
# Format: [/usr/bin/<Xserver>] [:<disp>] <Xserver-options> |
|||
# |
|||
# The Xserver executable and the display name can be omitted, but should |
|||
# be placed in front, if nodm's defaults shall be overridden. |
|||
NODM_X_OPTIONS='-nolisten tcp' |
|||
|
|||
# If an X session will run for less than this time in seconds, nodm will wait an |
|||
# increasing bit of time before restarting the session. |
|||
NODM_MIN_SESSION_TIME=60 |
|||
|
|||
# Timeout (in seconds) to wait for X to be ready to accept connections. If X is |
|||
# not ready before this timeout, it is killed and restarted. |
|||
NODM_X_TIMEOUT=300 |
@ -0,0 +1,6 @@ |
|||
[Local Users] |
|||
Identity=unix-group:plugdev |
|||
Action=org.freedesktop.udisks.* |
|||
ResultAny=yes |
|||
ResultInactive=no |
|||
ResultActive=yes |
@ -0,0 +1,20 @@ |
|||
[xarchiver] |
|||
preferred_format=0 |
|||
confirm_deletion=true |
|||
sort_filename_content=false |
|||
store_output=false |
|||
icon_size=0 |
|||
show_archive_comment=false |
|||
show_sidebar=false |
|||
show_location_bar=false |
|||
preferred_temp_dir=/tmp |
|||
allow_sub_dir=0 |
|||
overwrite=false |
|||
full_path=true |
|||
touch=false |
|||
freshen=false |
|||
update=false |
|||
store_path=false |
|||
recurse=true |
|||
solid_archive=false |
|||
remove_files=false |
@ -0,0 +1,20 @@ |
|||
display_label=false |
|||
display_icon=false |
|||
display_power=false |
|||
display_percentage=false |
|||
display_bar=true |
|||
display_time=false |
|||
tooltip_display_percentage=true |
|||
tooltip_display_time=true |
|||
low_percentage=10 |
|||
critical_percentage=5 |
|||
action_on_low=1 |
|||
action_on_critical=1 |
|||
hide_when_full=-415324144 |
|||
colorA=rgb(136,136,255) |
|||
colorH=rgb(0,255,0) |
|||
colorL=rgb(255,255,0) |
|||
colorC=rgb(255,0,0) |
|||
command_on_low= |
|||
command_on_critical= |
|||
|
@ -0,0 +1,9 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-appfinder" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-height" type="int" value="400"/> |
|||
<property name="window-width" type="int" value="400"/> |
|||
<property name="pane-position" type="int" value="180"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-desktop" version="1.0"> |
|||
<property name="backdrop" type="empty"> |
|||
<property name="screen0" type="empty"> |
|||
<property name="monitorVirtual1" type="empty"> |
|||
<property name="workspace0" type="empty"> |
|||
<property name="color-style" type="int" value="0"/> |
|||
<property name="image-style" type="int" value="5"/> |
|||
<property name="last-image" type="string" value="/usr/share/backgrounds/xfce/xfce-verticals.png"/> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
<property name="desktop-icons" type="empty"> |
|||
<property name="file-icons" type="empty"> |
|||
<property name="show-removable" type="bool" value="false"/> |
|||
</property> |
|||
</property> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="621"/> |
|||
<property name="window-height" type="int" value="533"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,89 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="11"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="whiskermenu"/> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-11" type="string" value="pulseaudio"> |
|||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-settings-manager" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="640"/> |
|||
<property name="window-height" type="int" value="488"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,16 @@ |
|||
#!/bin/sh |
|||
# |
|||
# ~/.xinitrc |
|||
# |
|||
# Executed by startx (run your window manager from here) |
|||
|
|||
if [ -d /etc/X11/xinit/xinitrc.d ]; then |
|||
for f in /etc/X11/xinit/xinitrc.d/*; do |
|||
[ -x "$f" ] && . "$f" |
|||
done |
|||
unset f |
|||
fi |
|||
|
|||
xrdb -merge .Xresources |
|||
|
|||
exec xfce4-session |
@ -0,0 +1 @@ |
|||
xfce4-session |
@ -0,0 +1,38 @@ |
|||
{ |
|||
"AudioCaptureAllowed": false, |
|||
"account_id_migration_state": 2, |
|||
"account_tracker_service_last_update": "13154004704520013", |
|||
"alternate_error_pages": { |
|||
"enabled": false |
|||
}, |
|||
"bookmark_bar": { |
|||
"show_on_all_tabs": false |
|||
}, |
|||
"browser": { |
|||
"check_default_browser": false, |
|||
"has_seen_welcome_page": true, |
|||
"show_home_button": false, |
|||
"window_placement": { |
|||
"bottom": 10, |
|||
"left": 10, |
|||
"maximized": true, |
|||
"right": 10, |
|||
"top": 10 |
|||
} |
|||
}, |
|||
"extensions": { |
|||
"theme": { |
|||
"use_system": true |
|||
} |
|||
}, |
|||
"ntp": { |
|||
"most_visited_blacklist": { |
|||
"c8e0afd1da1d9e29511240861f795a5a": null, |
|||
"eacc8c3ad0b50bd698ef8752d5ee24b6": null |
|||
} |
|||
}, |
|||
"safebrowsing": { |
|||
"enabled": false, |
|||
"scout_group_selected": true |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
[xarchiver] |
|||
preferred_format=0 |
|||
confirm_deletion=true |
|||
sort_filename_content=false |
|||
store_output=false |
|||
icon_size=0 |
|||
show_archive_comment=false |
|||
show_sidebar=false |
|||
show_location_bar=false |
|||
preferred_temp_dir=/tmp |
|||
allow_sub_dir=0 |
|||
overwrite=false |
|||
full_path=true |
|||
touch=false |
|||
freshen=false |
|||
update=false |
|||
store_path=false |
|||
recurse=true |
|||
solid_archive=false |
|||
remove_files=false |
@ -0,0 +1,20 @@ |
|||
display_label=false |
|||
display_icon=false |
|||
display_power=false |
|||
display_percentage=false |
|||
display_bar=true |
|||
display_time=false |
|||
tooltip_display_percentage=true |
|||
tooltip_display_time=true |
|||
low_percentage=10 |
|||
critical_percentage=5 |
|||
action_on_low=1 |
|||
action_on_critical=1 |
|||
hide_when_full=-415324144 |
|||
colorA=rgb(136,136,255) |
|||
colorH=rgb(0,255,0) |
|||
colorL=rgb(255,255,0) |
|||
colorC=rgb(255,0,0) |
|||
command_on_low= |
|||
command_on_critical= |
|||
|
@ -0,0 +1,13 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=Terminal Emulator |
|||
Comment=Use the command line |
|||
X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop |
@ -0,0 +1,14 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=File Manager |
|||
Comment=Browse the file system |
|||
X-XFCE-Source=file:///usr/share/applications/exo-file-manager.desktop |
@ -0,0 +1,14 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=Web Browser |
|||
Comment=Browse the web |
|||
X-XFCE-Source=file:///usr/share/applications/exo-web-browser.desktop |
@ -0,0 +1,80 @@ |
|||
favorites=xfce4-terminal-emulator.desktop,xfce4-file-manager.desktop,xfce4-web-browser.desktop,xfce4-mail-reader.desktop |
|||
recent= |
|||
button-icon=/usr/share/pixmaps/MiniOS-white.svg |
|||
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=false |
|||
view-as-icons=false |
|||
default-category=0 |
|||
recent-items-max=10 |
|||
favorites-in-recent=true |
|||
position-search-alternate=true |
|||
position-commands-alternate=false |
|||
position-categories-alternate=true |
|||
stay-on-focus-out=false |
|||
confirm-session-command=true |
|||
menu-width=450 |
|||
menu-height=500 |
|||
menu-opacity=100 |
|||
command-settings=xfce4-settings-manager |
|||
show-command-settings=false |
|||
command-lockscreen=xflock4 |
|||
show-command-lockscreen=false |
|||
command-switchuser=dm-tool switch-to-greeter |
|||
show-command-switchuser=false |
|||
command-logoutuser=xfce4-session-logout --logout --fast |
|||
show-command-logoutuser=false |
|||
command-restart=xfce4-session-logout --reboot --fast |
|||
show-command-restart=false |
|||
command-shutdown=xfce4-session-logout --halt --fast |
|||
show-command-shutdown=false |
|||
command-suspend=xfce4-session-logout --suspend |
|||
show-command-suspend=false |
|||
command-hibernate=xfce4-session-logout --hibernate |
|||
show-command-hibernate=false |
|||
command-logout=xfce4-session-logout |
|||
show-command-logout=true |
|||
command-menueditor=menulibre |
|||
show-command-menueditor=true |
|||
command-profile=mugshot |
|||
show-command-profile=false |
|||
search-actions=5 |
|||
|
|||
[action0] |
|||
name=Man Pages |
|||
pattern=# |
|||
command=exo-open --launch TerminalEmulator man %s |
|||
regex=false |
|||
|
|||
[action1] |
|||
name=Web Search |
|||
pattern=? |
|||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u |
|||
regex=false |
|||
|
|||
[action2] |
|||
name=Wikipedia |
|||
pattern=!w |
|||
command=exo-open --launch WebBrowser https://en.wikipedia.org/wiki/%u |
|||
regex=false |
|||
|
|||
[action3] |
|||
name=Run in Terminal |
|||
pattern=! |
|||
command=exo-open --launch TerminalEmulator %s |
|||
regex=false |
|||
|
|||
[action4] |
|||
name=Open URI |
|||
pattern=^(file|http|https):\\/\\/(.*)$ |
|||
command=exo-open \\0 |
|||
regex=true |
|||
|
@ -0,0 +1,43 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="displays" version="1.0"> |
|||
<property name="ActiveProfile" type="string" value="Default"/> |
|||
<property name="Default" type="empty"> |
|||
<property name="Virtual1" type="string" value="Virtual1"> |
|||
<property name="Active" type="bool" value="true"/> |
|||
<property name="EDID" type="string" value=""/> |
|||
<property name="Resolution" type="string" value="1024x768"/> |
|||
<property name="RefreshRate" type="double" value="60.003840"/> |
|||
<property name="Rotation" type="int" value="0"/> |
|||
<property name="Reflection" type="string" value="0"/> |
|||
<property name="Primary" type="bool" value="true"/> |
|||
<property name="Scale" type="empty"> |
|||
<property name="X" type="double" value="1.000000"/> |
|||
<property name="Y" type="double" value="1.000000"/> |
|||
</property> |
|||
<property name="Position" type="empty"> |
|||
<property name="X" type="int" value="0"/> |
|||
<property name="Y" type="int" value="0"/> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
<property name="Fallback" type="empty"> |
|||
<property name="Virtual1" type="string" value="Virtual1"> |
|||
<property name="Active" type="bool" value="true"/> |
|||
<property name="EDID" type="string" value=""/> |
|||
<property name="Resolution" type="string" value="1024x768"/> |
|||
<property name="RefreshRate" type="double" value="60.003840"/> |
|||
<property name="Rotation" type="int" value="0"/> |
|||
<property name="Reflection" type="string" value="0"/> |
|||
<property name="Primary" type="bool" value="true"/> |
|||
<property name="Scale" type="empty"> |
|||
<property name="X" type="double" value="1.000000"/> |
|||
<property name="Y" type="double" value="1.000000"/> |
|||
</property> |
|||
<property name="Position" type="empty"> |
|||
<property name="X" type="int" value="0"/> |
|||
<property name="Y" type="int" value="0"/> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,9 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-appfinder" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-height" type="int" value="400"/> |
|||
<property name="window-width" type="int" value="400"/> |
|||
<property name="pane-position" type="int" value="180"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-desktop" version="1.0"> |
|||
<property name="backdrop" type="empty"> |
|||
<property name="screen0" type="empty"> |
|||
<property name="monitorVirtual1" type="empty"> |
|||
<property name="workspace0" type="empty"> |
|||
<property name="color-style" type="int" value="0"/> |
|||
<property name="image-style" type="int" value="5"/> |
|||
<property name="last-image" type="string" value="/usr/share/backgrounds/xfce/xfce-verticals.png"/> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
<property name="desktop-icons" type="empty"> |
|||
<property name="file-icons" type="empty"> |
|||
<property name="show-removable" type="bool" value="false"/> |
|||
</property> |
|||
</property> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="621"/> |
|||
<property name="window-height" type="int" value="533"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,154 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-keyboard-shortcuts" version="1.0"> |
|||
<property name="commands" type="empty"> |
|||
<property name="default" type="empty"> |
|||
<property name="<Alt>F1" type="empty"/> |
|||
<property name="<Alt>F2" type="empty"> |
|||
<property name="startup-notify" type="empty"/> |
|||
</property> |
|||
<property name="<Alt>F3" type="empty"> |
|||
<property name="startup-notify" type="empty"/> |
|||
</property> |
|||
<property name="<Primary><Alt>Delete" type="empty"/> |
|||
<property name="<Primary><Alt>l" type="empty"/> |
|||
<property name="XF86Display" type="empty"/> |
|||
<property name="<Super>p" type="empty"/> |
|||
<property name="<Primary>Escape" type="empty"/> |
|||
<property name="XF86WWW" type="empty"/> |
|||
<property name="XF86Mail" type="empty"/> |
|||
</property> |
|||
<property name="custom" type="empty"> |
|||
<property name="<Alt>F3" type="string" value="xfce4-appfinder"> |
|||
<property name="startup-notify" type="bool" value="true"/> |
|||
</property> |
|||
<property name="<Alt>F1" type="string" value="xfce4-popup-applicationsmenu"/> |
|||
<property name="<Alt>F2" type="string" value="xfce4-appfinder --collapsed"> |
|||
<property name="startup-notify" type="bool" value="true"/> |
|||
</property> |
|||
<property name="<Primary><Alt>Delete" type="string" value="xflock4"/> |
|||
<property name="<Primary><Alt>l" type="string" value="xflock4"/> |
|||
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/> |
|||
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/> |
|||
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/> |
|||
<property name="<Super>p" type="string" value="xfce4-display-settings --minimal"/> |
|||
<property name="<Primary>Escape" type="string" value="xfdesktop --menu"/> |
|||
<property name="override" type="bool" value="true"/> |
|||
</property> |
|||
</property> |
|||
<property name="xfwm4" type="empty"> |
|||
<property name="default" type="empty"> |
|||
<property name="<Alt>Insert" type="empty"/> |
|||
<property name="Escape" type="empty"/> |
|||
<property name="Left" type="empty"/> |
|||
<property name="Right" type="empty"/> |
|||
<property name="Up" type="empty"/> |
|||
<property name="Down" type="empty"/> |
|||
<property name="<Alt>Tab" type="empty"/> |
|||
<property name="<Alt><Shift>Tab" type="empty"/> |
|||
<property name="<Alt>Delete" type="empty"/> |
|||
<property name="<Primary><Alt>Down" type="empty"/> |
|||
<property name="<Primary><Alt>Left" type="empty"/> |
|||
<property name="<Shift><Alt>Page_Down" type="empty"/> |
|||
<property name="<Alt>F4" type="empty"/> |
|||
<property name="<Alt>F6" type="empty"/> |
|||
<property name="<Alt>F7" type="empty"/> |
|||
<property name="<Alt>F8" type="empty"/> |
|||
<property name="<Alt>F9" type="empty"/> |
|||
<property name="<Alt>F10" type="empty"/> |
|||
<property name="<Alt>F11" type="empty"/> |
|||
<property name="<Alt>F12" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Left" type="empty"/> |
|||
<property name="<Primary><Alt>End" type="empty"/> |
|||
<property name="<Primary><Alt>Home" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Right" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Up" type="empty"/> |
|||
<property name="<Primary><Alt>KP_1" type="empty"/> |
|||
<property name="<Primary><Alt>KP_2" type="empty"/> |
|||
<property name="<Primary><Alt>KP_3" type="empty"/> |
|||
<property name="<Primary><Alt>KP_4" type="empty"/> |
|||
<property name="<Primary><Alt>KP_5" type="empty"/> |
|||
<property name="<Primary><Alt>KP_6" type="empty"/> |
|||
<property name="<Primary><Alt>KP_7" type="empty"/> |
|||
<property name="<Primary><Alt>KP_8" type="empty"/> |
|||
<property name="<Primary><Alt>KP_9" type="empty"/> |
|||
<property name="<Alt>space" type="empty"/> |
|||
<property name="<Shift><Alt>Page_Up" type="empty"/> |
|||
<property name="<Primary><Alt>Right" type="empty"/> |
|||
<property name="<Primary><Alt>d" type="empty"/> |
|||
<property name="<Primary><Alt>Up" type="empty"/> |
|||
<property name="<Super>Tab" type="empty"/> |
|||
<property name="<Primary>F1" type="empty"/> |
|||
<property name="<Primary>F2" type="empty"/> |
|||
<property name="<Primary>F3" type="empty"/> |
|||
<property name="<Primary>F4" type="empty"/> |
|||
<property name="<Primary>F5" type="empty"/> |
|||
<property name="<Primary>F6" type="empty"/> |
|||
<property name="<Primary>F7" type="empty"/> |
|||
<property name="<Primary>F8" type="empty"/> |
|||
<property name="<Primary>F9" type="empty"/> |
|||
<property name="<Primary>F10" type="empty"/> |
|||
<property name="<Primary>F11" type="empty"/> |
|||
<property name="<Primary>F12" type="empty"/> |
|||
</property> |
|||
<property name="custom" type="empty"> |
|||
<property name="Up" type="string" value="up_key"/> |
|||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/> |
|||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/> |
|||
<property name="Left" type="string" value="left_key"/> |
|||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/> |
|||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/> |
|||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/> |
|||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/> |
|||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/> |
|||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/> |
|||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/> |
|||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/> |
|||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/> |
|||
<property name="<Primary>F7" type="string" value="workspace_7_key"/> |
|||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/> |
|||
<property name="<Alt>F4" type="string" value="close_window_key"/> |
|||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/> |
|||
<property name="<Alt>F6" type="string" value="stick_window_key"/> |
|||
<property name="<Alt>F10" type="string" value="maximize_window_key"/> |
|||
<property name="<Alt>F12" type="string" value="above_key"/> |
|||
<property name="<Alt>F9" type="string" value="hide_window_key"/> |
|||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/> |
|||
<property name="<Alt>F8" type="string" value="resize_window_key"/> |
|||
<property name="<Super>Tab" type="string" value="switch_window_key"/> |
|||
<property name="Escape" type="string" value="cancel_key"/> |
|||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/> |
|||
<property name="<Primary>F10" type="string" value="workspace_10_key"/> |
|||
<property name="<Primary>F11" type="string" value="workspace_11_key"/> |
|||
<property name="<Alt>F11" type="string" value="fullscreen_key"/> |
|||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/> |
|||
<property name="Right" type="string" value="right_key"/> |
|||
<property name="Down" type="string" value="down_key"/> |
|||
<property name="<Alt>F7" type="string" value="move_window_key"/> |
|||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/> |
|||
<property name="<Primary>F12" type="string" value="workspace_12_key"/> |
|||
<property name="<Primary>F1" type="string" value="workspace_1_key"/> |
|||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/> |
|||
<property name="<Primary>F2" type="string" value="workspace_2_key"/> |
|||
<property name="<Primary>F4" type="string" value="workspace_4_key"/> |
|||
<property name="<Primary>F5" type="string" value="workspace_5_key"/> |
|||
<property name="<Primary>F6" type="string" value="workspace_6_key"/> |
|||
<property name="<Alt>space" type="string" value="popup_menu_key"/> |
|||
<property name="<Primary>F8" type="string" value="workspace_8_key"/> |
|||
<property name="<Primary>F9" type="string" value="workspace_9_key"/> |
|||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/> |
|||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/> |
|||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/> |
|||
<property name="<Primary>F3" type="string" value="workspace_3_key"/> |
|||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/> |
|||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/> |
|||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/> |
|||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/> |
|||
<property name="override" type="bool" value="true"/> |
|||
</property> |
|||
</property> |
|||
<property name="providers" type="array"> |
|||
<value type="string" value="xfwm4"/> |
|||
<value type="string" value="commands"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,89 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="11"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="whiskermenu"/> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-11" type="string" value="pulseaudio"> |
|||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,28 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-session" version="1.0"> |
|||
<property name="general" type="empty"> |
|||
<property name="FailsafeSessionName" type="empty"/> |
|||
<property name="SessionName" type="string" value="Default"/> |
|||
<property name="SaveOnExit" type="bool" value="true"/> |
|||
</property> |
|||
<property name="sessions" type="empty"> |
|||
<property name="Failsafe" type="empty"> |
|||
<property name="IsFailsafe" type="empty"/> |
|||
<property name="Count" type="empty"/> |
|||
<property name="Client0_Command" type="empty"/> |
|||
<property name="Client0_PerScreen" type="empty"/> |
|||
<property name="Client1_Command" type="empty"/> |
|||
<property name="Client1_PerScreen" type="empty"/> |
|||
<property name="Client2_Command" type="empty"/> |
|||
<property name="Client2_PerScreen" type="empty"/> |
|||
<property name="Client3_Command" type="empty"/> |
|||
<property name="Client3_PerScreen" type="empty"/> |
|||
<property name="Client4_Command" type="empty"/> |
|||
<property name="Client4_PerScreen" type="empty"/> |
|||
</property> |
|||
</property> |
|||
<property name="splash" type="empty"> |
|||
<property name="Engine" type="empty"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-settings-manager" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="640"/> |
|||
<property name="window-height" type="int" value="488"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,87 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfwm4" version="1.0"> |
|||
<property name="general" type="empty"> |
|||
<property name="activate_action" type="string" value="bring"/> |
|||
<property name="borderless_maximize" type="bool" value="true"/> |
|||
<property name="box_move" type="bool" value="false"/> |
|||
<property name="box_resize" type="bool" value="false"/> |
|||
<property name="button_layout" type="string" value="O|SHMC"/> |
|||
<property name="button_offset" type="int" value="0"/> |
|||
<property name="button_spacing" type="int" value="0"/> |
|||
<property name="click_to_focus" type="bool" value="true"/> |
|||
<property name="cycle_apps_only" type="bool" value="false"/> |
|||
<property name="cycle_draw_frame" type="bool" value="true"/> |
|||
<property name="cycle_hidden" type="bool" value="true"/> |
|||
<property name="cycle_minimum" type="bool" value="true"/> |
|||
<property name="cycle_preview" type="bool" value="true"/> |
|||
<property name="cycle_tabwin_mode" type="int" value="0"/> |
|||
<property name="cycle_workspaces" type="bool" value="false"/> |
|||
<property name="double_click_action" type="string" value="maximize"/> |
|||
<property name="double_click_distance" type="int" value="5"/> |
|||
<property name="double_click_time" type="int" value="250"/> |
|||
<property name="easy_click" type="string" value="Alt"/> |
|||
<property name="focus_delay" type="int" value="250"/> |
|||
<property name="focus_hint" type="bool" value="true"/> |
|||
<property name="focus_new" type="bool" value="true"/> |
|||
<property name="frame_opacity" type="int" value="100"/> |
|||
<property name="full_width_title" type="bool" value="true"/> |
|||
<property name="horiz_scroll_opacity" type="bool" value="false"/> |
|||
<property name="inactive_opacity" type="int" value="100"/> |
|||
<property name="maximized_offset" type="int" value="0"/> |
|||
<property name="mousewheel_rollup" type="bool" value="true"/> |
|||
<property name="move_opacity" type="int" value="100"/> |
|||
<property name="placement_mode" type="string" value="center"/> |
|||
<property name="placement_ratio" type="int" value="20"/> |
|||
<property name="popup_opacity" type="int" value="100"/> |
|||
<property name="prevent_focus_stealing" type="bool" value="false"/> |
|||
<property name="raise_delay" type="int" value="250"/> |
|||
<property name="raise_on_click" type="bool" value="true"/> |
|||
<property name="raise_on_focus" type="bool" value="false"/> |
|||
<property name="raise_with_any_button" type="bool" value="true"/> |
|||
<property name="repeat_urgent_blink" type="bool" value="false"/> |
|||
<property name="resize_opacity" type="int" value="100"/> |
|||
<property name="scroll_workspaces" type="bool" value="true"/> |
|||
<property name="shadow_delta_height" type="int" value="0"/> |
|||
<property name="shadow_delta_width" type="int" value="0"/> |
|||
<property name="shadow_delta_x" type="int" value="0"/> |
|||
<property name="shadow_delta_y" type="int" value="-3"/> |
|||
<property name="shadow_opacity" type="int" value="50"/> |
|||
<property name="show_app_icon" type="bool" value="false"/> |
|||
<property name="show_dock_shadow" type="bool" value="true"/> |
|||
<property name="show_frame_shadow" type="bool" value="true"/> |
|||
<property name="show_popup_shadow" type="bool" value="false"/> |
|||
<property name="snap_resist" type="bool" value="false"/> |
|||
<property name="snap_to_border" type="bool" value="true"/> |
|||
<property name="snap_to_windows" type="bool" value="false"/> |
|||
<property name="snap_width" type="int" value="10"/> |
|||
<property name="sync_to_vblank" type="bool" value="false"/> |
|||
<property name="theme" type="string" value="Greybird"/> |
|||
<property name="tile_on_move" type="bool" value="true"/> |
|||
<property name="title_alignment" type="string" value="center"/> |
|||
<property name="title_font" type="string" value="Sans Bold 9"/> |
|||
<property name="title_horizontal_offset" type="int" value="0"/> |
|||
<property name="titleless_maximize" type="bool" value="false"/> |
|||
<property name="title_shadow_active" type="string" value="false"/> |
|||
<property name="title_shadow_inactive" type="string" value="false"/> |
|||
<property name="title_vertical_offset_active" type="int" value="0"/> |
|||
<property name="title_vertical_offset_inactive" type="int" value="0"/> |
|||
<property name="toggle_workspaces" type="bool" value="false"/> |
|||
<property name="unredirect_overlays" type="bool" value="true"/> |
|||
<property name="urgent_blink" type="bool" value="false"/> |
|||
<property name="use_compositing" type="bool" value="true"/> |
|||
<property name="workspace_count" type="int" value="1"/> |
|||
<property name="wrap_cycle" type="bool" value="true"/> |
|||
<property name="wrap_layout" type="bool" value="true"/> |
|||
<property name="wrap_resistance" type="int" value="10"/> |
|||
<property name="wrap_windows" type="bool" value="true"/> |
|||
<property name="wrap_workspaces" type="bool" value="false"/> |
|||
<property name="workspace_names" type="array"> |
|||
<value type="string" value="Workspace 1"/> |
|||
<value type="string" value="Workspace 2"/> |
|||
<value type="string" value="Workspace 3"/> |
|||
<value type="string" value="Workspace 4"/> |
|||
</property> |
|||
<property name="zoom_desktop" type="bool" value="true"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,42 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xsettings" version="1.0"> |
|||
<property name="Net" type="empty"> |
|||
<property name="ThemeName" type="string" value="Greybird"/> |
|||
<property name="IconThemeName" type="string" value="elementary-xfce-dark"/> |
|||
<property name="DoubleClickTime" type="empty"/> |
|||
<property name="DoubleClickDistance" type="empty"/> |
|||
<property name="DndDragThreshold" type="empty"/> |
|||
<property name="CursorBlink" type="empty"/> |
|||
<property name="CursorBlinkTime" type="empty"/> |
|||
<property name="SoundThemeName" type="empty"/> |
|||
<property name="EnableEventSounds" type="empty"/> |
|||
<property name="EnableInputFeedbackSounds" type="empty"/> |
|||
</property> |
|||
<property name="Xft" type="empty"> |
|||
<property name="DPI" type="int" value="96"/> |
|||
<property name="Antialias" type="empty"/> |
|||
<property name="Hinting" type="int" value="1"/> |
|||
<property name="HintStyle" type="string" value="hintmedium"/> |
|||
<property name="RGBA" type="string" value="rgb"/> |
|||
</property> |
|||
<property name="Gtk" type="empty"> |
|||
<property name="CanChangeAccels" type="empty"/> |
|||
<property name="ColorPalette" type="empty"/> |
|||
<property name="FontName" type="empty"/> |
|||
<property name="MonospaceFontName" type="empty"/> |
|||
<property name="IconSizes" type="empty"/> |
|||
<property name="KeyThemeName" type="empty"/> |
|||
<property name="ToolbarStyle" type="empty"/> |
|||
<property name="ToolbarIconSize" type="empty"/> |
|||
<property name="MenuImages" type="empty"/> |
|||
<property name="ButtonImages" type="empty"/> |
|||
<property name="MenuBarAccel" type="empty"/> |
|||
<property name="CursorThemeName" type="string" value="breeze_cursors"/> |
|||
<property name="CursorThemeSize" type="empty"/> |
|||
<property name="DecorationLayout" type="empty"/> |
|||
</property> |
|||
<property name="Xfce" type="empty"> |
|||
<property name="LastCustomDPI" type="int" value="96"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,16 @@ |
|||
#!/bin/sh |
|||
# |
|||
# ~/.xinitrc |
|||
# |
|||
# Executed by startx (run your window manager from here) |
|||
|
|||
if [ -d /etc/X11/xinit/xinitrc.d ]; then |
|||
for f in /etc/X11/xinit/xinitrc.d/*; do |
|||
[ -x "$f" ] && . "$f" |
|||
done |
|||
unset f |
|||
fi |
|||
|
|||
xrdb -merge .Xresources |
|||
|
|||
exec xfce4-session |
@ -0,0 +1 @@ |
|||
xfce4-session |
@ -0,0 +1,20 @@ |
|||
[xarchiver] |
|||
preferred_format=0 |
|||
confirm_deletion=true |
|||
sort_filename_content=false |
|||
store_output=false |
|||
icon_size=0 |
|||
show_archive_comment=false |
|||
show_sidebar=false |
|||
show_location_bar=false |
|||
preferred_temp_dir=/tmp |
|||
allow_sub_dir=0 |
|||
overwrite=false |
|||
full_path=true |
|||
touch=false |
|||
freshen=false |
|||
update=false |
|||
store_path=false |
|||
recurse=true |
|||
solid_archive=false |
|||
remove_files=false |
@ -0,0 +1,20 @@ |
|||
display_label=false |
|||
display_icon=false |
|||
display_power=false |
|||
display_percentage=false |
|||
display_bar=true |
|||
display_time=false |
|||
tooltip_display_percentage=true |
|||
tooltip_display_time=true |
|||
low_percentage=10 |
|||
critical_percentage=5 |
|||
action_on_low=1 |
|||
action_on_critical=1 |
|||
hide_when_full=-415324144 |
|||
colorA=rgb(136,136,255) |
|||
colorH=rgb(0,255,0) |
|||
colorL=rgb(255,255,0) |
|||
colorC=rgb(255,0,0) |
|||
command_on_low= |
|||
command_on_critical= |
|||
|
@ -0,0 +1,13 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=Terminal Emulator |
|||
Comment=Use the command line |
|||
X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop |
@ -0,0 +1,14 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=File Manager |
|||
Comment=Browse the file system |
|||
X-XFCE-Source=file:///usr/share/applications/exo-file-manager.desktop |
@ -0,0 +1,14 @@ |
|||
[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; |
|||
X-AppStream-Ignore=True |
|||
Name=Web Browser |
|||
Comment=Browse the web |
|||
X-XFCE-Source=file:///usr/share/applications/exo-web-browser.desktop |
@ -0,0 +1,9 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-appfinder" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-height" type="int" value="400"/> |
|||
<property name="window-width" type="int" value="400"/> |
|||
<property name="pane-position" type="int" value="180"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-desktop" version="1.0"> |
|||
<property name="backdrop" type="empty"> |
|||
<property name="screen0" type="empty"> |
|||
<property name="monitorVirtual1" type="empty"> |
|||
<property name="workspace0" type="empty"> |
|||
<property name="color-style" type="int" value="0"/> |
|||
<property name="image-style" type="int" value="5"/> |
|||
<property name="last-image" type="string" value="/usr/share/backgrounds/xfce/xfce-verticals.png"/> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
</property> |
|||
<property name="desktop-icons" type="empty"> |
|||
<property name="file-icons" type="empty"> |
|||
<property name="show-removable" type="bool" value="false"/> |
|||
</property> |
|||
</property> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="621"/> |
|||
<property name="window-height" type="int" value="533"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,154 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-keyboard-shortcuts" version="1.0"> |
|||
<property name="commands" type="empty"> |
|||
<property name="default" type="empty"> |
|||
<property name="<Alt>F1" type="empty"/> |
|||
<property name="<Alt>F2" type="empty"> |
|||
<property name="startup-notify" type="empty"/> |
|||
</property> |
|||
<property name="<Alt>F3" type="empty"> |
|||
<property name="startup-notify" type="empty"/> |
|||
</property> |
|||
<property name="<Primary><Alt>Delete" type="empty"/> |
|||
<property name="<Primary><Alt>l" type="empty"/> |
|||
<property name="XF86Display" type="empty"/> |
|||
<property name="<Super>p" type="empty"/> |
|||
<property name="<Primary>Escape" type="empty"/> |
|||
<property name="XF86WWW" type="empty"/> |
|||
<property name="XF86Mail" type="empty"/> |
|||
</property> |
|||
<property name="custom" type="empty"> |
|||
<property name="<Alt>F3" type="string" value="xfce4-appfinder"> |
|||
<property name="startup-notify" type="bool" value="true"/> |
|||
</property> |
|||
<property name="<Alt>F1" type="string" value="xfce4-popup-applicationsmenu"/> |
|||
<property name="<Alt>F2" type="string" value="xfce4-appfinder --collapsed"> |
|||
<property name="startup-notify" type="bool" value="true"/> |
|||
</property> |
|||
<property name="<Primary><Alt>Delete" type="string" value="xflock4"/> |
|||
<property name="<Primary><Alt>l" type="string" value="xflock4"/> |
|||
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/> |
|||
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/> |
|||
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/> |
|||
<property name="<Super>p" type="string" value="xfce4-display-settings --minimal"/> |
|||
<property name="<Primary>Escape" type="string" value="xfdesktop --menu"/> |
|||
<property name="override" type="bool" value="true"/> |
|||
</property> |
|||
</property> |
|||
<property name="xfwm4" type="empty"> |
|||
<property name="default" type="empty"> |
|||
<property name="<Alt>Insert" type="empty"/> |
|||
<property name="Escape" type="empty"/> |
|||
<property name="Left" type="empty"/> |
|||
<property name="Right" type="empty"/> |
|||
<property name="Up" type="empty"/> |
|||
<property name="Down" type="empty"/> |
|||
<property name="<Alt>Tab" type="empty"/> |
|||
<property name="<Alt><Shift>Tab" type="empty"/> |
|||
<property name="<Alt>Delete" type="empty"/> |
|||
<property name="<Primary><Alt>Down" type="empty"/> |
|||
<property name="<Primary><Alt>Left" type="empty"/> |
|||
<property name="<Shift><Alt>Page_Down" type="empty"/> |
|||
<property name="<Alt>F4" type="empty"/> |
|||
<property name="<Alt>F6" type="empty"/> |
|||
<property name="<Alt>F7" type="empty"/> |
|||
<property name="<Alt>F8" type="empty"/> |
|||
<property name="<Alt>F9" type="empty"/> |
|||
<property name="<Alt>F10" type="empty"/> |
|||
<property name="<Alt>F11" type="empty"/> |
|||
<property name="<Alt>F12" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Left" type="empty"/> |
|||
<property name="<Primary><Alt>End" type="empty"/> |
|||
<property name="<Primary><Alt>Home" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Right" type="empty"/> |
|||
<property name="<Primary><Shift><Alt>Up" type="empty"/> |
|||
<property name="<Primary><Alt>KP_1" type="empty"/> |
|||
<property name="<Primary><Alt>KP_2" type="empty"/> |
|||
<property name="<Primary><Alt>KP_3" type="empty"/> |
|||
<property name="<Primary><Alt>KP_4" type="empty"/> |
|||
<property name="<Primary><Alt>KP_5" type="empty"/> |
|||
<property name="<Primary><Alt>KP_6" type="empty"/> |
|||
<property name="<Primary><Alt>KP_7" type="empty"/> |
|||
<property name="<Primary><Alt>KP_8" type="empty"/> |
|||
<property name="<Primary><Alt>KP_9" type="empty"/> |
|||
<property name="<Alt>space" type="empty"/> |
|||
<property name="<Shift><Alt>Page_Up" type="empty"/> |
|||
<property name="<Primary><Alt>Right" type="empty"/> |
|||
<property name="<Primary><Alt>d" type="empty"/> |
|||
<property name="<Primary><Alt>Up" type="empty"/> |
|||
<property name="<Super>Tab" type="empty"/> |
|||
<property name="<Primary>F1" type="empty"/> |
|||
<property name="<Primary>F2" type="empty"/> |
|||
<property name="<Primary>F3" type="empty"/> |
|||
<property name="<Primary>F4" type="empty"/> |
|||
<property name="<Primary>F5" type="empty"/> |
|||
<property name="<Primary>F6" type="empty"/> |
|||
<property name="<Primary>F7" type="empty"/> |
|||
<property name="<Primary>F8" type="empty"/> |
|||
<property name="<Primary>F9" type="empty"/> |
|||
<property name="<Primary>F10" type="empty"/> |
|||
<property name="<Primary>F11" type="empty"/> |
|||
<property name="<Primary>F12" type="empty"/> |
|||
</property> |
|||
<property name="custom" type="empty"> |
|||
<property name="Up" type="string" value="up_key"/> |
|||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/> |
|||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/> |
|||
<property name="Left" type="string" value="left_key"/> |
|||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/> |
|||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/> |
|||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/> |
|||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/> |
|||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/> |
|||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/> |
|||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/> |
|||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/> |
|||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/> |
|||
<property name="<Primary>F7" type="string" value="workspace_7_key"/> |
|||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/> |
|||
<property name="<Alt>F4" type="string" value="close_window_key"/> |
|||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/> |
|||
<property name="<Alt>F6" type="string" value="stick_window_key"/> |
|||
<property name="<Alt>F10" type="string" value="maximize_window_key"/> |
|||
<property name="<Alt>F12" type="string" value="above_key"/> |
|||
<property name="<Alt>F9" type="string" value="hide_window_key"/> |
|||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/> |
|||
<property name="<Alt>F8" type="string" value="resize_window_key"/> |
|||
<property name="<Super>Tab" type="string" value="switch_window_key"/> |
|||
<property name="Escape" type="string" value="cancel_key"/> |
|||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/> |
|||
<property name="<Primary>F10" type="string" value="workspace_10_key"/> |
|||
<property name="<Primary>F11" type="string" value="workspace_11_key"/> |
|||
<property name="<Alt>F11" type="string" value="fullscreen_key"/> |
|||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/> |
|||
<property name="Right" type="string" value="right_key"/> |
|||
<property name="Down" type="string" value="down_key"/> |
|||
<property name="<Alt>F7" type="string" value="move_window_key"/> |
|||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/> |
|||
<property name="<Primary>F12" type="string" value="workspace_12_key"/> |
|||
<property name="<Primary>F1" type="string" value="workspace_1_key"/> |
|||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/> |
|||
<property name="<Primary>F2" type="string" value="workspace_2_key"/> |
|||
<property name="<Primary>F4" type="string" value="workspace_4_key"/> |
|||
<property name="<Primary>F5" type="string" value="workspace_5_key"/> |
|||
<property name="<Primary>F6" type="string" value="workspace_6_key"/> |
|||
<property name="<Alt>space" type="string" value="popup_menu_key"/> |
|||
<property name="<Primary>F8" type="string" value="workspace_8_key"/> |
|||
<property name="<Primary>F9" type="string" value="workspace_9_key"/> |
|||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/> |
|||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/> |
|||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/> |
|||
<property name="<Primary>F3" type="string" value="workspace_3_key"/> |
|||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/> |
|||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/> |
|||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/> |
|||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/> |
|||
<property name="override" type="bool" value="true"/> |
|||
</property> |
|||
</property> |
|||
<property name="providers" type="array"> |
|||
<value type="string" value="xfwm4"/> |
|||
<value type="string" value="commands"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,89 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-panel" version="1.0"> |
|||
<property name="configver" type="int" value="2"/> |
|||
<property name="panels" type="array"> |
|||
<value type="int" value="1"/> |
|||
<property name="panel-1" type="empty"> |
|||
<property name="position" type="string" value="p=8;x=512;y=752"/> |
|||
<property name="length" type="uint" value="100"/> |
|||
<property name="position-locked" type="bool" value="true"/> |
|||
<property name="size" type="uint" value="34"/> |
|||
<property name="background-alpha" type="uint" value="90"/> |
|||
<property name="mode" type="uint" value="0"/> |
|||
<property name="enter-opacity" type="uint" value="100"/> |
|||
<property name="leave-opacity" type="uint" value="100"/> |
|||
<property name="plugin-ids" type="array"> |
|||
<value type="int" value="1"/> |
|||
<value type="int" value="2"/> |
|||
<value type="int" value="3"/> |
|||
<value type="int" value="4"/> |
|||
<value type="int" value="5"/> |
|||
<value type="int" value="6"/> |
|||
<value type="int" value="7"/> |
|||
<value type="int" value="8"/> |
|||
<value type="int" value="9"/> |
|||
<value type="int" value="10"/> |
|||
<value type="int" value="11"/> |
|||
<value type="int" value="12"/> |
|||
<value type="int" value="13"/> |
|||
<value type="int" value="14"/> |
|||
</property> |
|||
</property> |
|||
<property name="dark-mode" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugins" type="empty"> |
|||
<property name="plugin-1" type="string" value="whiskermenu"/> |
|||
<property name="plugin-2" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-3" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="TerminalEmulator.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-4" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="FileManager.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-5" type="string" value="launcher"> |
|||
<property name="items" type="array"> |
|||
<value type="string" value="WebBrowser.desktop"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-6" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-7" type="string" value="tasklist"> |
|||
<property name="show-handle" type="bool" value="false"/> |
|||
<property name="flat-buttons" type="bool" value="true"/> |
|||
<property name="show-labels" type="bool" value="true"/> |
|||
<property name="grouping" type="uint" value="1"/> |
|||
</property> |
|||
<property name="plugin-8" type="string" value="separator"> |
|||
<property name="style" type="uint" value="0"/> |
|||
<property name="expand" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-9" type="string" value="xkb"> |
|||
<property name="display-type" type="uint" value="2"/> |
|||
<property name="display-name" type="uint" value="0"/> |
|||
<property name="group-policy" type="uint" value="0"/> |
|||
</property> |
|||
<property name="plugin-10" type="string" value="battery"/> |
|||
<property name="plugin-11" type="string" value="pulseaudio"> |
|||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/> |
|||
</property> |
|||
<property name="plugin-12" type="string" value="systray"> |
|||
<property name="known-legacy-items" type="array"> |
|||
<value type="string" value="task manager"/> |
|||
<value type="string" value="volumeicon"/> |
|||
<value type="string" value="networkmanager applet"/> |
|||
</property> |
|||
</property> |
|||
<property name="plugin-13" type="string" value="clock"> |
|||
<property name="digital-format" type="string" value="%_H:%M"/> |
|||
</property> |
|||
<property name="plugin-14" type="string" value="showdesktop"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,28 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-session" version="1.0"> |
|||
<property name="general" type="empty"> |
|||
<property name="FailsafeSessionName" type="empty"/> |
|||
<property name="SessionName" type="string" value="Default"/> |
|||
<property name="SaveOnExit" type="bool" value="true"/> |
|||
</property> |
|||
<property name="sessions" type="empty"> |
|||
<property name="Failsafe" type="empty"> |
|||
<property name="IsFailsafe" type="empty"/> |
|||
<property name="Count" type="empty"/> |
|||
<property name="Client0_Command" type="empty"/> |
|||
<property name="Client0_PerScreen" type="empty"/> |
|||
<property name="Client1_Command" type="empty"/> |
|||
<property name="Client1_PerScreen" type="empty"/> |
|||
<property name="Client2_Command" type="empty"/> |
|||
<property name="Client2_PerScreen" type="empty"/> |
|||
<property name="Client3_Command" type="empty"/> |
|||
<property name="Client3_PerScreen" type="empty"/> |
|||
<property name="Client4_Command" type="empty"/> |
|||
<property name="Client4_PerScreen" type="empty"/> |
|||
</property> |
|||
</property> |
|||
<property name="splash" type="empty"> |
|||
<property name="Engine" type="empty"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfce4-settings-manager" version="1.0"> |
|||
<property name="last" type="empty"> |
|||
<property name="window-width" type="int" value="640"/> |
|||
<property name="window-height" type="int" value="488"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,87 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xfwm4" version="1.0"> |
|||
<property name="general" type="empty"> |
|||
<property name="activate_action" type="string" value="bring"/> |
|||
<property name="borderless_maximize" type="bool" value="true"/> |
|||
<property name="box_move" type="bool" value="false"/> |
|||
<property name="box_resize" type="bool" value="false"/> |
|||
<property name="button_layout" type="string" value="O|SHMC"/> |
|||
<property name="button_offset" type="int" value="0"/> |
|||
<property name="button_spacing" type="int" value="0"/> |
|||
<property name="click_to_focus" type="bool" value="true"/> |
|||
<property name="cycle_apps_only" type="bool" value="false"/> |
|||
<property name="cycle_draw_frame" type="bool" value="true"/> |
|||
<property name="cycle_hidden" type="bool" value="true"/> |
|||
<property name="cycle_minimum" type="bool" value="true"/> |
|||
<property name="cycle_preview" type="bool" value="true"/> |
|||
<property name="cycle_tabwin_mode" type="int" value="0"/> |
|||
<property name="cycle_workspaces" type="bool" value="false"/> |
|||
<property name="double_click_action" type="string" value="maximize"/> |
|||
<property name="double_click_distance" type="int" value="5"/> |
|||
<property name="double_click_time" type="int" value="250"/> |
|||
<property name="easy_click" type="string" value="Alt"/> |
|||
<property name="focus_delay" type="int" value="250"/> |
|||
<property name="focus_hint" type="bool" value="true"/> |
|||
<property name="focus_new" type="bool" value="true"/> |
|||
<property name="frame_opacity" type="int" value="100"/> |
|||
<property name="full_width_title" type="bool" value="true"/> |
|||
<property name="horiz_scroll_opacity" type="bool" value="false"/> |
|||
<property name="inactive_opacity" type="int" value="100"/> |
|||
<property name="maximized_offset" type="int" value="0"/> |
|||
<property name="mousewheel_rollup" type="bool" value="true"/> |
|||
<property name="move_opacity" type="int" value="100"/> |
|||
<property name="placement_mode" type="string" value="center"/> |
|||
<property name="placement_ratio" type="int" value="20"/> |
|||
<property name="popup_opacity" type="int" value="100"/> |
|||
<property name="prevent_focus_stealing" type="bool" value="false"/> |
|||
<property name="raise_delay" type="int" value="250"/> |
|||
<property name="raise_on_click" type="bool" value="true"/> |
|||
<property name="raise_on_focus" type="bool" value="false"/> |
|||
<property name="raise_with_any_button" type="bool" value="true"/> |
|||
<property name="repeat_urgent_blink" type="bool" value="false"/> |
|||
<property name="resize_opacity" type="int" value="100"/> |
|||
<property name="scroll_workspaces" type="bool" value="true"/> |
|||
<property name="shadow_delta_height" type="int" value="0"/> |
|||
<property name="shadow_delta_width" type="int" value="0"/> |
|||
<property name="shadow_delta_x" type="int" value="0"/> |
|||
<property name="shadow_delta_y" type="int" value="-3"/> |
|||
<property name="shadow_opacity" type="int" value="50"/> |
|||
<property name="show_app_icon" type="bool" value="false"/> |
|||
<property name="show_dock_shadow" type="bool" value="true"/> |
|||
<property name="show_frame_shadow" type="bool" value="true"/> |
|||
<property name="show_popup_shadow" type="bool" value="false"/> |
|||
<property name="snap_resist" type="bool" value="false"/> |
|||
<property name="snap_to_border" type="bool" value="true"/> |
|||
<property name="snap_to_windows" type="bool" value="false"/> |
|||
<property name="snap_width" type="int" value="10"/> |
|||
<property name="sync_to_vblank" type="bool" value="false"/> |
|||
<property name="theme" type="string" value="Greybird"/> |
|||
<property name="tile_on_move" type="bool" value="true"/> |
|||
<property name="title_alignment" type="string" value="center"/> |
|||
<property name="title_font" type="string" value="Sans Bold 9"/> |
|||
<property name="title_horizontal_offset" type="int" value="0"/> |
|||
<property name="titleless_maximize" type="bool" value="false"/> |
|||
<property name="title_shadow_active" type="string" value="false"/> |
|||
<property name="title_shadow_inactive" type="string" value="false"/> |
|||
<property name="title_vertical_offset_active" type="int" value="0"/> |
|||
<property name="title_vertical_offset_inactive" type="int" value="0"/> |
|||
<property name="toggle_workspaces" type="bool" value="false"/> |
|||
<property name="unredirect_overlays" type="bool" value="true"/> |
|||
<property name="urgent_blink" type="bool" value="false"/> |
|||
<property name="use_compositing" type="bool" value="true"/> |
|||
<property name="workspace_count" type="int" value="1"/> |
|||
<property name="wrap_cycle" type="bool" value="true"/> |
|||
<property name="wrap_layout" type="bool" value="true"/> |
|||
<property name="wrap_resistance" type="int" value="10"/> |
|||
<property name="wrap_windows" type="bool" value="true"/> |
|||
<property name="wrap_workspaces" type="bool" value="false"/> |
|||
<property name="workspace_names" type="array"> |
|||
<value type="string" value="Workspace 1"/> |
|||
<value type="string" value="Workspace 2"/> |
|||
<value type="string" value="Workspace 3"/> |
|||
<value type="string" value="Workspace 4"/> |
|||
</property> |
|||
<property name="zoom_desktop" type="bool" value="true"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,42 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
|
|||
<channel name="xsettings" version="1.0"> |
|||
<property name="Net" type="empty"> |
|||
<property name="ThemeName" type="string" value="Greybird"/> |
|||
<property name="IconThemeName" type="string" value="elementary-xfce-dark"/> |
|||
<property name="DoubleClickTime" type="empty"/> |
|||
<property name="DoubleClickDistance" type="empty"/> |
|||
<property name="DndDragThreshold" type="empty"/> |
|||
<property name="CursorBlink" type="empty"/> |
|||
<property name="CursorBlinkTime" type="empty"/> |
|||
<property name="SoundThemeName" type="empty"/> |
|||
<property name="EnableEventSounds" type="empty"/> |
|||
<property name="EnableInputFeedbackSounds" type="empty"/> |
|||
</property> |
|||
<property name="Xft" type="empty"> |
|||
<property name="DPI" type="int" value="96"/> |
|||
<property name="Antialias" type="empty"/> |
|||
<property name="Hinting" type="int" value="1"/> |
|||
<property name="HintStyle" type="string" value="hintmedium"/> |
|||
<property name="RGBA" type="string" value="rgb"/> |
|||
</property> |
|||
<property name="Gtk" type="empty"> |
|||
<property name="CanChangeAccels" type="empty"/> |
|||
<property name="ColorPalette" type="empty"/> |
|||
<property name="FontName" type="empty"/> |
|||
<property name="MonospaceFontName" type="empty"/> |
|||
<property name="IconSizes" type="empty"/> |
|||
<property name="KeyThemeName" type="empty"/> |
|||
<property name="ToolbarStyle" type="empty"/> |
|||
<property name="ToolbarIconSize" type="empty"/> |
|||
<property name="MenuImages" type="empty"/> |
|||
<property name="ButtonImages" type="empty"/> |
|||
<property name="MenuBarAccel" type="empty"/> |
|||
<property name="CursorThemeName" type="string" value="breeze_cursors"/> |
|||
<property name="CursorThemeSize" type="empty"/> |
|||
<property name="DecorationLayout" type="empty"/> |
|||
</property> |
|||
<property name="Xfce" type="empty"> |
|||
<property name="LastCustomDPI" type="int" value="96"/> |
|||
</property> |
|||
</channel> |
@ -0,0 +1,16 @@ |
|||
#!/bin/sh |
|||
# |
|||
# ~/.xinitrc |
|||
# |
|||
# Executed by startx (run your window manager from here) |
|||
|
|||
if [ -d /etc/X11/xinit/xinitrc.d ]; then |
|||
for f in /etc/X11/xinit/xinitrc.d/*; do |
|||
[ -x "$f" ] && . "$f" |
|||
done |
|||
unset f |
|||
fi |
|||
|
|||
xrdb -merge .Xresources |
|||
|
|||
exec xfce4-session |
@ -0,0 +1 @@ |
|||
xfce4-session |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 77 KiB |
After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,36 @@ |
|||
# greeny_dark theme for SLIM |
|||
# by aditya shakya <adi1090x@gmail.com> |
|||
# using artwork from some free html+css login templates on the internet |
|||
|
|||
# Messages (ie: shutdown) |
|||
|
|||
msg_color #b5cd60 |
|||
msg_font Sans:size=18:bold:dpi=75 |
|||
msg_x 50% |
|||
msg_y 30% |
|||
|
|||
# Session Name |
|||
|
|||
session_color #b5cd60 |
|||
session_font Sans:size=16:bold:dpi=75 |
|||
session_x 50% |
|||
session_y 90% |
|||
|
|||
# valid values: stretch, tile |
|||
|
|||
background_style stretch |
|||
background_color #f2f2f2 |
|||
|
|||
# Input controls |
|||
|
|||
input_panel_x 50% |
|||
input_panel_y 50% |
|||
input_name_x 200 |
|||
input_name_y 78 |
|||
input_pass_x 200 |
|||
input_pass_y 145 |
|||
input_font Sans:size=14:dpi=75 |
|||
input_color #b5cd60 |
|||
|
|||
username_msg |
|||
password_msg |
@ -0,0 +1,24 @@ |
|||
dbus-x11 |
|||
slim |
|||
libxfce4ui-utils |
|||
thunar |
|||
thunar-volman |
|||
gvfs-backends |
|||
samba-common |
|||
avahi-daemon |
|||
tumbler |
|||
xfce4-appfinder |
|||
xfce4-panel |
|||
xfce4-session |
|||
xfce4-settings |
|||
xfconf |
|||
xfdesktop4 |
|||
xfwm4 |
|||
greybird-gtk-theme |
|||
xfce4-pulseaudio-plugin |
|||
pulseaudio |
|||
pavucontrol |
|||
xfce4-xkb-plugin |
|||
xfce4-battery-plugin |
|||
xfce4-whiskermenu-plugin |
|||
network-manager-gnome |
@ -1,13 +1,57 @@ |
|||
#!/bin/bash |
|||
|
|||
apt-get update >>$OUTPUT 2>&1 |
|||
apt-get install --yes --no-install-recommends chromium chromium-sandbox >>$OUTPUT 2>&1 |
|||
set -e # exit on error |
|||
set -o pipefail # exit on pipeline error |
|||
set -u # treat unset variable as error |
|||
|
|||
echo 'export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disk-cache-dir=/dev/null --disk-cache-size=1"' >>/etc/chromium.d/default-flags |
|||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" |
|||
|
|||
rm -Rf /usr/share/icons/gnome/256x256 >>$OUTPUT 2>&1 |
|||
#rm -Rf /root/.fluxbox |
|||
#rm -Rf /root/.fluxbox/kblayout |
|||
#rm -Rf /root/.gtk-bookmarks |
|||
#rm -Rf /var/lib/wicd/dhclient.conf |
|||
rm -Rf /usr/share/applications/chromium.desktop >>$OUTPUT 2>&1 |
|||
# install packages |
|||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD update >>$OUTPUT 2>&1 && |
|||
#sudo DEBIAN_FRONTEND=$DEBIAN_FRONTEND_TYPE \ |
|||
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
|||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|||
fi |
|||
|
|||
if [ $PACKAGE_VARIANT = "minimal" ]; then |
|||
cat <<EOF >/etc/skel/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser=chromium |
|||
|
|||
EOF |
|||
cat <<EOF >/home/live/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser=chromium |
|||
|
|||
EOF |
|||
cat <<EOF >/root/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xterm |
|||
FileManager=pcmanfm |
|||
WebBrowser=chromium --no-sandbox |
|||
|
|||
EOF |
|||
|
|||
elif [ $PACKAGE_VARIANT = "standard" ]; then |
|||
cat <<EOF >/etc/skel/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xfce4-terminal |
|||
FileManager=Thunar |
|||
WebBrowser=chromium |
|||
|
|||
EOF |
|||
cat <<EOF >/home/live/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xfce4-terminal |
|||
FileManager=Thunar |
|||
WebBrowser=chromium |
|||
|
|||
EOF |
|||
cat <<EOF >/root/.config/xfce4/helpers.rc |
|||
TerminalEmulator=xfce4-terminal |
|||
FileManager=Thunar |
|||
WebBrowser=chromium --no-sandbox |
|||
|
|||
EOF |
|||
fi |
@ -0,0 +1,2 @@ |
|||
chromium |
|||
chromium-sandbox |