@ -0,0 +1,88 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" |
||||
|
|
||||
|
. $SCRIPT_DIR/linux-live/minioslib || exit 1 |
||||
|
. $SCRIPT_DIR/linux-live/config || exit 1 |
||||
|
if [ -z $OUTPUT ]; then |
||||
|
. $SCRIPT_DIR/linux-live/buildconfig || exit 1 |
||||
|
fi |
||||
|
|
||||
|
function build() { |
||||
|
sed -i -e "/DISTRIBUTION_TYPE=/s/=.*/=$DISTRIBUTION_TYPE/" $SCRIPT_DIR/linux-live/buildconfig |
||||
|
sed -i -e "/DISTRIBUTION=/s/=.*/=$DISTRIBUTION/" $SCRIPT_DIR/linux-live/buildconfig |
||||
|
sed -i -e "/DISTRIBUTION_ARCH=/s/=.*/=$DISTRIBUTION_ARCH/" $SCRIPT_DIR/linux-live/buildconfig |
||||
|
sed -i -e "/DESKTOP_ENVIRONMENT=/s/=.*/=$DESKTOP_ENVIRONMENT/" $SCRIPT_DIR/linux-live/buildconfig |
||||
|
sed -i -e "/COMP_TYPE=/s/=.*/=$COMP_TYPE/" $SCRIPT_DIR/linux-live/buildconfig |
||||
|
./install - |
||||
|
} |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="bullseye" |
||||
|
DISTRIBUTION_ARCH="amd64" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="bullseye" |
||||
|
DISTRIBUTION_ARCH="i386" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="buster" |
||||
|
DISTRIBUTION_ARCH="amd64" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="buster" |
||||
|
DISTRIBUTION_ARCH="i386" |
||||
|
DESKTOP_ENVIRONMENT="slax" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="buster" |
||||
|
DISTRIBUTION_ARCH="amd64" |
||||
|
DESKTOP_ENVIRONMENT="slax" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="buster" |
||||
|
DISTRIBUTION_ARCH="i386" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="stretch" |
||||
|
DISTRIBUTION_ARCH="amd64" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="debian" |
||||
|
DISTRIBUTION="stretch" |
||||
|
DISTRIBUTION_ARCH="i386" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="ubuntu" |
||||
|
DISTRIBUTION="focal" |
||||
|
DISTRIBUTION_ARCH="amd64" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
||||
|
|
||||
|
DISTRIBUTION_TYPE="ubuntu" |
||||
|
DISTRIBUTION="focal" |
||||
|
DISTRIBUTION_ARCH="i386" |
||||
|
DESKTOP_ENVIRONMENT="xfce" |
||||
|
COMP_TYPE="xz" |
||||
|
build |
@ -0,0 +1 @@ |
|||||
|
../xfce/01-firmware |
@ -0,0 +1 @@ |
|||||
|
../xfce/02-xorg |
@ -0,0 +1,258 @@ |
|||||
|
{ |
||||
|
"layout": { |
||||
|
"type": "layout", |
||||
|
"pages": [ |
||||
|
"panel", |
||||
|
"menu" |
||||
|
], |
||||
|
"panel": { |
||||
|
"type": "page", |
||||
|
"title": "Panel", |
||||
|
"sections": [ |
||||
|
"panel-appear", |
||||
|
"panel-behave" |
||||
|
] |
||||
|
}, |
||||
|
"menu": { |
||||
|
"type": "page", |
||||
|
"title": "Menu", |
||||
|
"sections": [ |
||||
|
"menu-layout", |
||||
|
"menu-behave" |
||||
|
] |
||||
|
}, |
||||
|
"panel-appear": { |
||||
|
"type": "section", |
||||
|
"title": "Appearance", |
||||
|
"keys": [ |
||||
|
"menu-custom", |
||||
|
"menu-icon", |
||||
|
"menu-icon-size", |
||||
|
"menu-label" |
||||
|
] |
||||
|
}, |
||||
|
"panel-behave": { |
||||
|
"type": "section", |
||||
|
"title": "Behavior", |
||||
|
"keys": [ |
||||
|
"overlay-key", |
||||
|
"activate-on-hover", |
||||
|
"hover-delay", |
||||
|
"force-show-panel", |
||||
|
"enable-animation" |
||||
|
] |
||||
|
}, |
||||
|
"menu-layout": { |
||||
|
"type": "section", |
||||
|
"title": "Layout and content", |
||||
|
"keys": [ |
||||
|
"show-category-icons", |
||||
|
"category-icon-size", |
||||
|
"show-application-icons", |
||||
|
"application-icon-size", |
||||
|
"favbox-show", |
||||
|
"fav-icon-size", |
||||
|
"favbox-min-height", |
||||
|
"show-places", |
||||
|
"show-recents", |
||||
|
"menu-editor-button" |
||||
|
] |
||||
|
}, |
||||
|
"menu-behave": { |
||||
|
"type": "section", |
||||
|
"title": "Behavior", |
||||
|
"keys": [ |
||||
|
"enable-autoscroll", |
||||
|
"search-filesystem" |
||||
|
] |
||||
|
} |
||||
|
}, |
||||
|
"overlay-key": { |
||||
|
"type": "keybinding", |
||||
|
"description": "Keyboard shortcut to open and close the menu", |
||||
|
"default": "Super_L::Super_R", |
||||
|
"value": "Super_L::Super_R" |
||||
|
}, |
||||
|
"menu-custom": { |
||||
|
"type": "switch", |
||||
|
"default": false, |
||||
|
"description": "Use a custom icon and label", |
||||
|
"tooltip": "Check this to specify a custom icon and label", |
||||
|
"value": true |
||||
|
}, |
||||
|
"menu-icon": { |
||||
|
"type": "iconfilechooser", |
||||
|
"default": "cinnamon-symbolic", |
||||
|
"description": "Icon", |
||||
|
"tooltip": "Select an icon to show in the panel.", |
||||
|
"default_icon": "cinnamon-symbolic", |
||||
|
"dependency": "menu-custom", |
||||
|
"indent": true, |
||||
|
"value": "/usr/share/pixmaps/MiniOS-white.svg" |
||||
|
}, |
||||
|
"menu-icon-size": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 32, |
||||
|
"min": 16, |
||||
|
"max": 96, |
||||
|
"step": 1, |
||||
|
"units": "px", |
||||
|
"description": "Icon size", |
||||
|
"dependency": "menu-custom", |
||||
|
"indent": true, |
||||
|
"value": 32 |
||||
|
}, |
||||
|
"menu-label": { |
||||
|
"type": "entry", |
||||
|
"default": "Menu", |
||||
|
"description": "Text", |
||||
|
"tooltip": "Enter custom text to show in the panel.", |
||||
|
"dependency": "menu-custom", |
||||
|
"indent": true, |
||||
|
"value": "" |
||||
|
}, |
||||
|
"favbox-min-height": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 300, |
||||
|
"min": 50, |
||||
|
"max": 1000, |
||||
|
"step": 10, |
||||
|
"units": "px", |
||||
|
"dependency": "favbox-show", |
||||
|
"description": "Minimum height of the favorites section", |
||||
|
"tooltip": "The minimum size allocated for the favorites section (this has an impact on the overall height of the menu).", |
||||
|
"value": 300 |
||||
|
}, |
||||
|
"show-category-icons": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show category icons", |
||||
|
"tooltip": "Choose whether or not to show icons on categories.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"category-icon-size": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 22, |
||||
|
"min": 16, |
||||
|
"max": 48, |
||||
|
"step": 1, |
||||
|
"units": "px", |
||||
|
"description": "Categories icon size", |
||||
|
"dependency": "show-category-icons", |
||||
|
"indent": true, |
||||
|
"value": 22 |
||||
|
}, |
||||
|
"show-application-icons": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show application icons", |
||||
|
"tooltip": "Choose whether or not to show icons on applications.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"application-icon-size": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 22, |
||||
|
"min": 16, |
||||
|
"max": 48, |
||||
|
"step": 1, |
||||
|
"units": "px", |
||||
|
"description": "Applications icon size", |
||||
|
"dependency": "show-application-icons", |
||||
|
"indent": true, |
||||
|
"value": 22 |
||||
|
}, |
||||
|
"favbox-show": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show favorites and session buttons", |
||||
|
"tooltip": "Choose whether or not to show the left pane of the menu.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"fav-icon-size": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 32, |
||||
|
"min": 16, |
||||
|
"max": 64, |
||||
|
"step": 1, |
||||
|
"units": "px", |
||||
|
"description": "Favorites icon size", |
||||
|
"dependency": "favbox-show", |
||||
|
"indent": true, |
||||
|
"value": 32 |
||||
|
}, |
||||
|
"show-favorites": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show favorites", |
||||
|
"tooltip": "Choose whether or not to show favorite files in the menu.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"show-places": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show bookmarks and places", |
||||
|
"tooltip": "Choose whether or not to show bookmarks and places in the menu.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"show-recents": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Show recents", |
||||
|
"tooltip": "Choose whether or not to show recents in the menu.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"enable-autoscroll": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Enable autoscrolling in application list", |
||||
|
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.", |
||||
|
"value": true |
||||
|
}, |
||||
|
"search-filesystem": { |
||||
|
"type": "switch", |
||||
|
"default": false, |
||||
|
"description": "Enable filesystem path entry in search box", |
||||
|
"tooltip": "Allows path entry in the menu search box.", |
||||
|
"value": false |
||||
|
}, |
||||
|
"force-show-panel": { |
||||
|
"type": "switch", |
||||
|
"default": true, |
||||
|
"description": "Force the panel to be visible when opening the menu", |
||||
|
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).", |
||||
|
"value": true |
||||
|
}, |
||||
|
"activate-on-hover": { |
||||
|
"type": "switch", |
||||
|
"default": false, |
||||
|
"description": "Open the menu when I move my mouse over it", |
||||
|
"tooltip": "Enable opening the menu when the mouse enters the applet", |
||||
|
"value": false |
||||
|
}, |
||||
|
"hover-delay": { |
||||
|
"type": "spinbutton", |
||||
|
"default": 0, |
||||
|
"min": 0, |
||||
|
"max": 1000, |
||||
|
"step": 50, |
||||
|
"units": "milliseconds", |
||||
|
"dependency": "activate-on-hover", |
||||
|
"description": "Menu hover delay", |
||||
|
"tooltip": "Delay before the menu opens when hovered", |
||||
|
"value": 0 |
||||
|
}, |
||||
|
"enable-animation": { |
||||
|
"type": "switch", |
||||
|
"default": false, |
||||
|
"description": "Use menu animations", |
||||
|
"tooltip": "Allow the menu to animate on open and close", |
||||
|
"value": false |
||||
|
}, |
||||
|
"menu-editor-button": { |
||||
|
"type": "button", |
||||
|
"description": "Open the menu editor", |
||||
|
"callback": "_launch_editor", |
||||
|
"tooltip": "Press this button to customize your menu entries." |
||||
|
}, |
||||
|
"__md5__": "c4b27da93411965126569249b61793d7" |
||||
|
} |
@ -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 cinnamon-session |
@ -0,0 +1 @@ |
|||||
|
cinnamon-session |
@ -0,0 +1,137 @@ |
|||||
|
#!/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")")" |
||||
|
|
||||
|
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 |
||||
|
$APT_CMD update >>$OUTPUT 2>&1 && |
||||
|
$APT_CMD install $APT_OPTIONS \ |
||||
|
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
||||
|
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 |
||||
|
if [ $PACKAGE_VARIANT = "minimal" ]; then |
||||
|
sed -i 's,#default_user simone,default_user root,g' /etc/slim.conf |
||||
|
else |
||||
|
sed -i 's,#default_user simone,default_user live,g' /etc/slim.conf |
||||
|
fi |
||||
|
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 |
||||
|
|
||||
|
update-alternatives --install /usr/share/images/desktop-base/desktop-background desktop-background /usr/share/backgrounds/MiniOS-wallpaper.svg 100 |
||||
|
|
||||
|
cat <<EOF >>/usr/share/applications/htop.desktop |
||||
|
[Desktop Entry] |
||||
|
Type=Application |
||||
|
Version=1.0 |
||||
|
Name=Htop |
||||
|
GenericName=Process Viewer |
||||
|
GenericName[ca]=Visualitzador de processos |
||||
|
GenericName[da]=Procesfremviser |
||||
|
GenericName[de]=Prozessanzeige |
||||
|
GenericName[en_GB]=Process Viewer |
||||
|
GenericName[es]=Visor de procesos |
||||
|
GenericName[fi]=Prosessikatselin |
||||
|
GenericName[fr]=Visualiseur de processus |
||||
|
GenericName[gl]=Visor de procesos |
||||
|
GenericName[it]=Visore dei processi |
||||
|
GenericName[ko]=프로세스 뷰어 |
||||
|
GenericName[nb]=Prosessviser |
||||
|
GenericName[nl]=Viewer van processen |
||||
|
GenericName[nn]=Prosessvisar |
||||
|
GenericName[pl]=Przeglądarka procesów |
||||
|
GenericName[pt]=Visualizador de Processos |
||||
|
GenericName[pt_BR]=Visualizador de processos |
||||
|
GenericName[ru]=Монитор процессов |
||||
|
GenericName[sk]=Prehliadač procesov |
||||
|
GenericName[sl]=Pregledovalnik opravil |
||||
|
GenericName[sr@ijekavian]=Приказивач процеса |
||||
|
GenericName[sr@ijekavianlatin]=Prikazivač procesa |
||||
|
GenericName[sr@latin]=Prikazivač procesa |
||||
|
GenericName[sr]=Приказивач процеса |
||||
|
GenericName[sv]=Processvisning |
||||
|
GenericName[tr]=Süreç Görüntüleyici |
||||
|
GenericName[uk]=Перегляд процесів |
||||
|
GenericName[zh_CN]=进程查看器 |
||||
|
GenericName[zh_TW]=行程檢視器 |
||||
|
Comment=Show System Processes |
||||
|
Comment[ca]=Visualitzeu els processos del sistema |
||||
|
Comment[da]=Vis systemprocesser |
||||
|
Comment[de]=Systemprozesse anzeigen |
||||
|
Comment[en_GB]=Show System Processes |
||||
|
Comment[es]=Mostrar procesos del sistema |
||||
|
Comment[fi]=Katsele järjestelmän prosesseja |
||||
|
Comment[fr]=Affiche les processus système |
||||
|
Comment[gl]=Mostrar os procesos do sistema. |
||||
|
Comment[it]=Mostra processi di sistema |
||||
|
Comment[ko]=시스템 프로세스 보기 |
||||
|
Comment[nb]=Vis systemprosesser |
||||
|
Comment[nl]=Systeemprocessen tonen |
||||
|
Comment[nn]=Vis systemprosessar |
||||
|
Comment[pl]=Pokaż procesy systemowe |
||||
|
Comment[pt]=Mostrar os Processos do Sistema |
||||
|
Comment[pt_BR]=Mostra os processos do sistema |
||||
|
Comment[ru]=Просмотр списка процессов в системе |
||||
|
Comment[sk]=Zobraziť systémové procesy |
||||
|
Comment[sl]=Prikaz sistemskih opravil |
||||
|
Comment[sr@ijekavian]=Приказ системских процеса |
||||
|
Comment[sr@ijekavianlatin]=Prikaz sistemskih procesa |
||||
|
Comment[sr@latin]=Prikaz sistemskih procesa |
||||
|
Comment[sr]=Приказ системских процеса |
||||
|
Comment[sv]=Visa systemprocesser |
||||
|
Comment[tr]=Sistem Süreçlerini Göster |
||||
|
Comment[uk]=Перегляд системних процесів |
||||
|
Comment[zh_CN]=显示系统进程 |
||||
|
Comment[zh_TW]=顯示系統行程 |
||||
|
Icon=htop |
||||
|
Exec=htop |
||||
|
Terminal=true |
||||
|
Categories=System;Monitor;ConsoleOnly; |
||||
|
Keywords=system;process;task |
||||
|
EOF |
||||
|
cat <<EOF >>/usr/share/applications/mc.desktop |
||||
|
[Desktop Entry] |
||||
|
Name=Midnight Commander |
||||
|
Name[af]=Middernag Kommandeur |
||||
|
Name[eo]=Meznokta komandanto |
||||
|
Name[fa]=فرماندار نیمه شب |
||||
|
Name[ko]=미드나잇 커멘더 |
||||
|
Name[lv]=Pusnakts Komandieris |
||||
|
Name[nso]=Molaedi wa Bosegogare |
||||
|
Name[th]=มิดไนท์คอมมานเดอร์ |
||||
|
Name[ve]=Muhulwane wa vhukati ha vhusiku |
||||
|
Name[xh]=Umyaleli Waphakathi kobusuku |
||||
|
Name[zu]=Umyaleli waphakathi nobusuku |
||||
|
Comment=File manager |
||||
|
Comment[pl]=Menedżer plików |
||||
|
Exec=mc |
||||
|
Icon=file-manager.png |
||||
|
Terminal=true |
||||
|
Type=Application |
||||
|
Categories=ConsoleOnly;Utility;FileManager;System;FileTools; |
||||
|
Keywords=file manager;console; |
||||
|
EOF |
||||
|
cat <<EOF >>/usr/share/applications/debian-xterm.desktop |
||||
|
[Desktop Entry] |
||||
|
Name=XTerm |
||||
|
#GenericName=Terminal |
||||
|
Comment=standard terminal emulator for the X window system |
||||
|
Exec=xterm |
||||
|
Terminal=false |
||||
|
Type=Application |
||||
|
#Encoding=UTF-8 |
||||
|
Icon=Terminal |
||||
|
Categories=System;TerminalEmulator; |
||||
|
Keywords=shell;prompt;command;commandline;cmd; |
||||
|
X-Desktop-File-Install-Version=0.26 |
||||
|
EOF |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,12 @@ |
|||||
|
[Desktop Entry] |
||||
|
Name=XTerm |
||||
|
#GenericName=Terminal |
||||
|
Comment=standard terminal emulator for the X window system |
||||
|
Exec=xterm |
||||
|
Terminal=false |
||||
|
Type=Application |
||||
|
#Encoding=UTF-8 |
||||
|
Icon=xterm |
||||
|
Categories=System;TerminalEmulator; |
||||
|
Keywords=shell;prompt;command;commandline;cmd; |
||||
|
X-Desktop-File-Install-Version=0.26 |
@ -0,0 +1,67 @@ |
|||||
|
[Desktop Entry] |
||||
|
Type=Application |
||||
|
Version=1.0 |
||||
|
Name=Htop |
||||
|
GenericName=Process Viewer |
||||
|
GenericName[ca]=Visualitzador de processos |
||||
|
GenericName[da]=Procesfremviser |
||||
|
GenericName[de]=Prozessanzeige |
||||
|
GenericName[en_GB]=Process Viewer |
||||
|
GenericName[es]=Visor de procesos |
||||
|
GenericName[fi]=Prosessikatselin |
||||
|
GenericName[fr]=Visualiseur de processus |
||||
|
GenericName[gl]=Visor de procesos |
||||
|
GenericName[it]=Visore dei processi |
||||
|
GenericName[ko]=프로세스 뷰어 |
||||
|
GenericName[nb]=Prosessviser |
||||
|
GenericName[nl]=Viewer van processen |
||||
|
GenericName[nn]=Prosessvisar |
||||
|
GenericName[pl]=Przeglądarka procesów |
||||
|
GenericName[pt]=Visualizador de Processos |
||||
|
GenericName[pt_BR]=Visualizador de processos |
||||
|
GenericName[ru]=Монитор процессов |
||||
|
GenericName[sk]=Prehliadač procesov |
||||
|
GenericName[sl]=Pregledovalnik opravil |
||||
|
GenericName[sr@ijekavian]=Приказивач процеса |
||||
|
GenericName[sr@ijekavianlatin]=Prikazivač procesa |
||||
|
GenericName[sr@latin]=Prikazivač procesa |
||||
|
GenericName[sr]=Приказивач процеса |
||||
|
GenericName[sv]=Processvisning |
||||
|
GenericName[tr]=Süreç Görüntüleyici |
||||
|
GenericName[uk]=Перегляд процесів |
||||
|
GenericName[zh_CN]=进程查看器 |
||||
|
GenericName[zh_TW]=行程檢視器 |
||||
|
Comment=Show System Processes |
||||
|
Comment[ca]=Visualitzeu els processos del sistema |
||||
|
Comment[da]=Vis systemprocesser |
||||
|
Comment[de]=Systemprozesse anzeigen |
||||
|
Comment[en_GB]=Show System Processes |
||||
|
Comment[es]=Mostrar procesos del sistema |
||||
|
Comment[fi]=Katsele järjestelmän prosesseja |
||||
|
Comment[fr]=Affiche les processus système |
||||
|
Comment[gl]=Mostrar os procesos do sistema. |
||||
|
Comment[it]=Mostra processi di sistema |
||||
|
Comment[ko]=시스템 프로세스 보기 |
||||
|
Comment[nb]=Vis systemprosesser |
||||
|
Comment[nl]=Systeemprocessen tonen |
||||
|
Comment[nn]=Vis systemprosessar |
||||
|
Comment[pl]=Pokaż procesy systemowe |
||||
|
Comment[pt]=Mostrar os Processos do Sistema |
||||
|
Comment[pt_BR]=Mostra os processos do sistema |
||||
|
Comment[ru]=Просмотр списка процессов в системе |
||||
|
Comment[sk]=Zobraziť systémové procesy |
||||
|
Comment[sl]=Prikaz sistemskih opravil |
||||
|
Comment[sr@ijekavian]=Приказ системских процеса |
||||
|
Comment[sr@ijekavianlatin]=Prikaz sistemskih procesa |
||||
|
Comment[sr@latin]=Prikaz sistemskih procesa |
||||
|
Comment[sr]=Приказ системских процеса |
||||
|
Comment[sv]=Visa systemprocesser |
||||
|
Comment[tr]=Sistem Süreçlerini Göster |
||||
|
Comment[uk]=Перегляд системних процесів |
||||
|
Comment[zh_CN]=显示系统进程 |
||||
|
Comment[zh_TW]=顯示系統行程 |
||||
|
Icon=utilities-system-monitor |
||||
|
Exec=htop |
||||
|
Terminal=true |
||||
|
Categories=System;Monitor;ConsoleOnly; |
||||
|
Keywords=system;process;task |
@ -0,0 +1,20 @@ |
|||||
|
[Desktop Entry] |
||||
|
Name=Midnight Commander |
||||
|
Name[af]=Middernag Kommandeur |
||||
|
Name[eo]=Meznokta komandanto |
||||
|
Name[fa]=فرماندار نیمه شب |
||||
|
Name[ko]=미드나잇 커멘더 |
||||
|
Name[lv]=Pusnakts Komandieris |
||||
|
Name[nso]=Molaedi wa Bosegogare |
||||
|
Name[th]=มิดไนท์คอมมานเดอร์ |
||||
|
Name[ve]=Muhulwane wa vhukati ha vhusiku |
||||
|
Name[xh]=Umyaleli Waphakathi kobusuku |
||||
|
Name[zu]=Umyaleli waphakathi nobusuku |
||||
|
Comment=File manager |
||||
|
Comment[pl]=Menedżer plików |
||||
|
Exec=mc |
||||
|
Icon=file-manager.png |
||||
|
Terminal=true |
||||
|
Type=Application |
||||
|
Categories=ConsoleOnly;Utility;FileManager;System;FileTools; |
||||
|
Keywords=file manager;console; |
@ -0,0 +1,179 @@ |
|||||
|
[Desktop Entry] |
||||
|
Name[af]=Skyfgebruik |
||||
|
Name[an]=Analizador d'uso de disco |
||||
|
Name[ar]=محلّل استخدام القرص |
||||
|
Name[as]=ডিস্ক ব্যৱহাৰ বিশ্লেষক |
||||
|
Name[ast]=Analizador d'Usu de Discu |
||||
|
Name[be]=Аналіз дыскавай прасторы |
||||
|
Name[be@latin]=Analizatar zaniataści dyskavaj prastory |
||||
|
Name[bg]=Анализатор на ползването на диска |
||||
|
Name[bn]=ডিস্ক ব্যবহারের বিশ্লেষণ ব্যবস্থা |
||||
|
Name[bn_IN]=ডিস্ক ব্যবহারের বিশ্লেষণ ব্যবস্থা |
||||
|
Name[br]=Dezranner arver ar c'hantennoù |
||||
|
Name[bs]=Alat za analizu upotrebe diska |
||||
|
Name[ca]=Analitzador de l'ús dels discs |
||||
|
Name[ca@valencia]=Analitzador de l'ús dels discs |
||||
|
Name[crh]=Disk Qullanımı Tahlilcisi |
||||
|
Name[cs]=Analyzátor využití disku |
||||
|
Name[da]=Diskforbrugsanalyse |
||||
|
Name[de]=Festplattenbelegungsanalyse |
||||
|
Name[dz]=ཌིཀསི་གི་བེད་སྤྱོད་དཔྱད་ཞིབ་པ། |
||||
|
Name[el]=Αναλυτής χρήσης δίσκου |
||||
|
Name[en_GB]=Disk Usage Analyser |
||||
|
Name[en@shaw]=𐑛𐑦𐑕𐑒 𐑿𐑕𐑦𐑡 𐑨𐑯𐑩𐑤𐑲𐑟𐑻 |
||||
|
Name[eo]=Diskuzada analizilo |
||||
|
Name[es]=Analizador de uso de disco |
||||
|
Name[et]=Kettakasutuse analüsaator |
||||
|
Name[eu]=Disko-erabileraren analizatzailea |
||||
|
Name[fa]=تحلیلگر مصرف دیسک |
||||
|
Name[fi]=Levynkäytön analysointi |
||||
|
Name[fr]=Analyseur d’utilisation des disques |
||||
|
Name[fur]=Analizadôr di utilizazion dal disc |
||||
|
Name[ga]=Anailíseoir Úsáid Diosca |
||||
|
Name[gd]=Sgrùdair cleachdadh nan diosga |
||||
|
Name[gl]=Analizador do uso do disco |
||||
|
Name[gu]=ડિસ્ક વપરાશકર્તા વિશ્લેષક |
||||
|
Name[he]=מנתח השימוש בכונן |
||||
|
Name[hi]=डिस्क प्रयोग विश्लेषण |
||||
|
Name[hr]=Analizator iskoristivosti diska |
||||
|
Name[hu]=Lemezhasználat-elemző |
||||
|
Name[id]=Penganalisa Penggunaan Diska |
||||
|
Name[is]=Diskapláss |
||||
|
Name[it]=Analizzatore di utilizzo del disco |
||||
|
Name[ja]=ディスク使用量アナライザー |
||||
|
Name[kk]=Диск қолдануын анализдеушісі |
||||
|
Name[km]=កម្មវិធីវិភាគការប្រើថាស |
||||
|
Name[kn]=ಡಿಸ್ಕ್ ಬಳಕೆಯ ವಿಶ್ಲೇಷಕ |
||||
|
Name[ko]=디스크 사용량 분석 |
||||
|
Name[ku]=Analîzkerê Bikaranîna Dîskê |
||||
|
Name[lt]=Disko naudojimo analizatorius |
||||
|
Name[lv]=Diska izmantojuma analizators |
||||
|
Name[mai]=डिस्क प्रयोग विश्लेषण |
||||
|
Name[mjw]=Disk Usage Analyzer |
||||
|
Name[mk]=Употребата на дискот |
||||
|
Name[ml]=ഡിസ്ക് യൂസേജ് അനലൈസർ |
||||
|
Name[mr]=डीस्क वापर विश्लेषक |
||||
|
Name[ms]=Penganalisis Penggunaan Cakera |
||||
|
Name[nb]=Analyse av diskplass |
||||
|
Name[nds]=Spiekergebruk unnersöken |
||||
|
Name[ne]=डिस्क प्रयोग विश्लेषक |
||||
|
Name[nl]=Schijfgebruik |
||||
|
Name[nn]=Analyse av diskplass |
||||
|
Name[oc]=Analisador d'utilizacion dels disques |
||||
|
Name[or]=ଡିସ୍କ ବ୍ଯବହାର ବିଧି ବିଶ୍ଳେଷକ |
||||
|
Name[pa]=ਡਿਸਕ ਵਰਤੋਂ ਜਾਂਚਕਾਰ |
||||
|
Name[pl]=Wykorzystanie dysku |
||||
|
Name[ps]=د ټيکلي کارونې شننونکی |
||||
|
Name[pt]=Analisador de utilização do disco |
||||
|
Name[pt_BR]=Analisador de uso de disco |
||||
|
Name[ro]=Analizatorul utilizării discului |
||||
|
Name[ru]=Анализатор использования дисков |
||||
|
Name[si]=තැටි භාවිත විශ්ලේෂකය |
||||
|
Name[sk]=Analyzátor využitia disku |
||||
|
Name[sl]=Orodje za preučevanje porabe diska |
||||
|
Name[sr]=Испитивач искоришћености диска |
||||
|
Name[sr@latin]=Ispitivač iskorišćenosti diska |
||||
|
Name[sv]=Diskanvändningsanalysator |
||||
|
Name[ta]=வட்டு பயன்பாடு ஆராய்வி |
||||
|
Name[te]=డిస్క్ వినిమయ విశ్లేషకం |
||||
|
Name[tg]=Таҳлилгари истифодаи диск |
||||
|
Name[th]=เครื่องมือวิเคราะห์การใช้ดิสก์ |
||||
|
Name[tr]=Disk Kullanımı İnceleyici |
||||
|
Name[ug]=دىسكا ئىشلىتىش تەھلىلچىسى |
||||
|
Name[uk]=Аналізатор використання диска |
||||
|
Name[vi]=Bộ phân tích đĩa |
||||
|
Name[zh_CN]=磁盘使用情况分析器 |
||||
|
Name[zh_HK]=磁碟用量分析器 |
||||
|
Name[zh_TW]=磁碟用量分析器 |
||||
|
Name=Disk Usage Analyzer |
||||
|
Comment[af]=Kontroleer gidsgroottes en beskikbare skyfspasie |
||||
|
Comment[an]=Compreba la grandaria d'as carpetas y lo espacio disponible en disco |
||||
|
Comment[ar]=افحص حجم المجلدات والمساحة المتوفرة |
||||
|
Comment[as]=ফোল্ডাৰৰ মাপ আৰু ডিস্কত উপলব্ধ স্থান নিৰীক্ষণ কৰক |
||||
|
Comment[ast]=Comprobar el tamañu de les carpetes y l'espaciu disponible en discu |
||||
|
Comment[be]=Праверка памеру папак і выкарыстання дыскавай прасторы |
||||
|
Comment[be@latin]=Spraŭdź pamiery katalohaŭ i dyskavuju prastoru |
||||
|
Comment[bg]=Проверка на размерите на папките и свободното пространство на диска |
||||
|
Comment[bn]=ফোল্ডারের মাপ ও ডিস্কে বিদ্যমান স্থান পরীক্ষা করা হবে |
||||
|
Comment[bn_IN]=ফোল্ডারের মাপ ও ডিস্কে উপলব্ধ স্থান পরীক্ষা করা হবে |
||||
|
Comment[br]=Gwiriañ mentoù an teuliadoù ha plas hegerz war ar gantennad |
||||
|
Comment[bs]=Provjeri veličinu direktorija i raspoloživ prostor na disku |
||||
|
Comment[ca]=Comprova la mida de les carpetes i l'espai disponible al disc |
||||
|
Comment[ca@valencia]=Comprova la mida de les carpetes i l'espai disponible al disc |
||||
|
Comment[ckb]=چێکردنی قەبارەی بوخچە و بۆشایی بەردەست لە پەپکەکاندا |
||||
|
Comment[crh]=Cilbent ölçülerini ve faydalanışlı disk fezasını teşker |
||||
|
Comment[cs]=Zkontrolovat velikost složek a dostupné místo na disku |
||||
|
Comment[da]=Kontrollér mappestørrelser og tilgængelig diskplads |
||||
|
Comment[de]=Ordnergrößen und freien Festplattenplatz analysieren |
||||
|
Comment[dz]=ཡིག་སྣོད་ཀྱི་ཚད་ཚུ་དང་འཐོབ་ཚུགས་པའི་ཌིཀསི་ས་སྟོང་ཞིབ་དཔྱད་འབད |
||||
|
Comment[el]=Έλεγχος μεγέθους φακέλων και διαθέσιμου χώρου στο δίσκο |
||||
|
Comment[en_GB]=Check folder sizes and available disk space |
||||
|
Comment[en@shaw]=𐑗𐑧𐑒 𐑓𐑴𐑤𐑛𐑼 𐑕𐑲𐑟𐑩𐑟 𐑯 𐑩𐑝𐑱𐑤𐑩𐑚𐑩𐑤 𐑛𐑦𐑕𐑒 𐑕𐑐𐑱𐑕 |
||||
|
Comment[eo]=Kontroli dosierujajn grandojn kaj disponeblan diskmemoron |
||||
|
Comment[es]=Compruebe el tamaño de las carpetas y el espacio disponible en disco |
||||
|
Comment[et]=Kaustade suuruse ja saadaoleva kettaruumi kontroll |
||||
|
Comment[eu]=Egiaztatu karpeten tamainak eta diskoan dagoen leku erabilgarria |
||||
|
Comment[fa]=بررسی اندازهٔ شاخهها و فضای دیسک موجود |
||||
|
Comment[fi]=Tarkista kansioiden koko ja käytettävissä oleva levytila |
||||
|
Comment[fr]=Vérifier la taille des dossiers et l’espace disque disponible |
||||
|
Comment[fur]=Controle la dimension des cartelis e il spazi libar sul disc |
||||
|
Comment[ga]=Seiceáil méideanna fillteán agus spás diosca le fáil |
||||
|
Comment[gd]=Thoir sùil air meud nam pasganan ’s an rum shaor air an diosga |
||||
|
Comment[gl]=Verificar o tamaño dos cartafoles e o espazo dispoñíbel no disco |
||||
|
Comment[gu]=ફોલ્ડર માપો અને ઉપલબ્ધ ડિસ્ક જગ્યા ચકાસો |
||||
|
Comment[he]=בדיקת גדלי התיקיות והמקום פנוי בכונן |
||||
|
Comment[hi]=फोल्डर आकार जाँचें और उपलब्ध डिस्क स्थान |
||||
|
Comment[hr]=Provjerite veličinu mapa i dostupan prostor na disku |
||||
|
Comment[hu]=Mappaméretek és elérhető lemezterület vizsgálata |
||||
|
Comment[id]=Periksa ukuran folder dan ruang diska yang tersedia |
||||
|
Comment[is]=Athuga hve mikið pláss skrár taka á tölvunni og hve mikið pláss er eftir |
||||
|
Comment[it]=Controlla la dimensione delle cartelle e lo spazio disco disponibile |
||||
|
Comment[ja]=フォルダーと利用可能なディスク容量をチェックします |
||||
|
Comment[kk]=Бумалар өлшемдерін және дисктердегі қолжетерлік орынды тексеру |
||||
|
Comment[km]=ពិនិត្យមើលទំហំថត និងទំហំថាសដែលអាចប្រើបាន |
||||
|
Comment[kn]=ಕಡತಕೋಶದ ಗಾತ್ರಗಳು ಹಾಗು ಲಭ್ಯವಿರುವ ಡಿಸ್ಕಿನ ಜಾಗಕ್ಕಾಗಿ ನೋಡು |
||||
|
Comment[ko]=폴더 용량과 디스크의 빈 공간을 검사합니다 |
||||
|
Comment[lt]=Tikrinti aplankų dydžius ir laisvą vietą |
||||
|
Comment[lv]=Pārbauda mapju izmērus un pieejamo diska vietu |
||||
|
Comment[mjw]=Folder apun lapen disk space angse kelang |
||||
|
Comment[mk]=Провери ја големината на папките и достапниот простор на дискот |
||||
|
Comment[ml]=ഫോൾഡറുകളുടെ വ്യാപ്തിയും ഡിസ്കില് ലഭ്യമായ സ്ഥലവും പരിശോധിയ്ക്കുക |
||||
|
Comment[mr]=फोल्डर आकार व उपलब्ध डीस्क जागा तपासा |
||||
|
Comment[ms]=Periksa saiz folder dan ruang cakera yang tersedia |
||||
|
Comment[nb]=Sjekk mappestørrelser og tilgjengelig diskplass |
||||
|
Comment[ne]=फोल्डर साइज र उपलब्ध डिस्क खालीस्थान जाँच गर्नुहोस् |
||||
|
Comment[nl]=Mapgroottes en beschikbare schijfruimte bekijken |
||||
|
Comment[nn]=Undersøk mappestorleikar og tilgjengeleg diskplass |
||||
|
Comment[oc]=Verificar la talha dels dorsièrs e l'espaci de disc disponible |
||||
|
Comment[or]=ଫୋଲଡରର ଆକାର ଏବଂ ଉପଲବ୍ଧ ଡିସ୍କ ସ୍ଥାନ ଯାଞ୍ଚ କରନ୍ତୁ |
||||
|
Comment[pa]=ਫੋਲਡਰ ਸਾਇਜ਼ ਅਤੇ ਉਪਲੱਬਧ ਡਿਸਕ ਥਾਂ ਚੈੱਕ ਕਰੋ |
||||
|
Comment[pl]=Wyświetlanie rozmiaru katalogów i dostępnego miejsca na dysku |
||||
|
Comment[ps]=د پوښۍ کچونه او شته ټيکلی تشه وګورﺉ |
||||
|
Comment[pt]=Verificar o tamanho das pastas e o espaço disponível em disco |
||||
|
Comment[pt_BR]=Verifique o tamanho de pastas e o espaço disponível em disco |
||||
|
Comment[ro]=Verifică dimensiunea dosarului și spațiul disponibil pe disc |
||||
|
Comment[ru]=Изучение размера папок и свободного места на дисках |
||||
|
Comment[sk]=Kontroluje veľkosti priečinkov a dostupné miesto na disku |
||||
|
Comment[sl]=Preveri velikosti map in prostor na disku |
||||
|
Comment[sr]=Проверите величине фасцикли и слободан простор на диску |
||||
|
Comment[sr@latin]=Proverite veličine fascikli i slobodan prostor na disku |
||||
|
Comment[sv]=Kontrollera mappstorlekar och tillgängligt diskutrymme |
||||
|
Comment[ta]=அடைவு அளவு மற்றும் கிடைக்கக்கூடிய வட்டு இடைவெளி ஆகியவற்றை சரிபார் |
||||
|
Comment[te]=అందుబాటులోవున్న డిస్క్ స్థలం మరియు సంచయపు పరిమాణాలను తనిఖీచేయి |
||||
|
Comment[tg]=Санҷиши андозаи ҷузвдонҳо ва фазои диски дастрас |
||||
|
Comment[th]=ตรวจสอบขนาดของโฟลเดอร์ต่างๆ และเนื้อที่ว่างในดิสก์ |
||||
|
Comment[tr]=Klasör boyutlarını ve kullanılabilir disk alanını denetle |
||||
|
Comment[ug]=قىسقۇچ چوڭلۇقى ۋە ئىشلىتىشكە بولىدىغان دىسكا بوشلۇقىنى تەكشۈر |
||||
|
Comment[uk]=Перевірте розміри тек та дисковий простір |
||||
|
Comment[vi]=Kiểm tra kích cỡ của thư mục và chỗ trống trên đĩa |
||||
|
Comment[zh_CN]=检查文件夹大小和可用磁盘空间 |
||||
|
Comment[zh_HK]=檢查資料夾大小與可用的磁碟空間 |
||||
|
Comment[zh_TW]=檢查資料夾大小與可用的磁碟空間 |
||||
|
Comment=Check folder sizes and available disk space |
||||
|
Keywords=storage;space;cleanup; |
||||
|
TryExec=ncdu |
||||
|
Exec=ncdu |
||||
|
Icon=baobab |
||||
|
Terminal=true |
||||
|
Type=Application |
||||
|
Categories=ConsoleOnly;System;Filesystem;Utility; |
@ -0,0 +1,8 @@ |
|||||
|
locales |
||||
|
dbus-x11 |
||||
|
slim |
||||
|
cinnamon-core |
||||
|
gvfs-backends |
||||
|
samba-common |
||||
|
avahi-daemon |
||||
|
faenza-icon-theme |
@ -0,0 +1,32 @@ |
|||||
|
#!/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")")" |
||||
|
|
||||
|
# install packages |
||||
|
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
||||
|
$APT_CMD update && |
||||
|
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
||||
|
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
||||
|
fi |
||||
|
|
||||
|
if [ $PACKAGE_VARIANT = "standard" ]; then |
||||
|
if [ $DISTRIBUTION = "stretch" ]; then |
||||
|
echo 'deb http://ftp.debian.org/debian stretch-backports main' | sudo tee --append /etc/apt/sources.list.d/stretch-backports.list >>$OUTPUT 2>&1 |
||||
|
$APT_CMD update && |
||||
|
$APT_CMD install -t stretch-backports $APT_OPTIONS $APT_OPTIONS2 \ |
||||
|
remmina remmina-plugin-rdp remmina-plugin-vnc >>$OUTPUT 2>&1 |
||||
|
else |
||||
|
$APT_CMD update && |
||||
|
$APT_CMD install $APT_OPTIONS $APT_OPTIONS2 \ |
||||
|
remmina remmina-plugin-rdp remmina-plugin-vnc >>$OUTPUT 2>&1 |
||||
|
|
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
if [ $PACKAGE_VARIANT = "minimal" ]; then |
||||
|
sed -i 's,create=xarchiver --add-to,create=xarchiver --compress,g' /usr/share/libfm/archivers.list |
||||
|
fi |
@ -0,0 +1,4 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
rm -Rf /usr/share/icons/hicolor/256x256 >>$OUTPUT 2>&1 |
||||
|
rm -Rf /usr/share/icons/gnome/256x256 >>$OUTPUT 2>&1 |
@ -0,0 +1,8 @@ |
|||||
|
gedit |
||||
|
file-roller |
||||
|
eog |
||||
|
gnome-terminal |
||||
|
gnome-system-monitor |
||||
|
gnome-screenshot |
||||
|
vlc |
||||
|
gparted |
@ -0,0 +1 @@ |
|||||
|
../xfce/05-firefox |
@ -0,0 +1 @@ |
|||||
|
../xfce/01-firmware |
@ -1,29 +0,0 @@ |
|||||
#!/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")")" |
|
||||
|
|
||||
echo "firmware-ipw2x00 firmware-ipw2x00/license/accepted boolean true" | debconf-set-selections |
|
||||
echo "b43-fwcutter b43-fwcutter/install-unconditional boolean true" | debconf-set-selections |
|
||||
|
|
||||
$APT_CMD update >>$OUTPUT 2>&1 |
|
||||
|
|
||||
# install packages |
|
||||
if [ $DISTRIBUTION_TYPE = "ubuntu" ]; then |
|
||||
if [ $DISTRIBUTION = "focal" ] || [ $DISTRIBUTION = "bionic" ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
linux-firmware firmware-b43-installer firmware-ath9k-htc >>$OUTPUT 2>&1 |
|
||||
else |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
#linux-firmware >>$OUTPUT 2>&1 #firmware-b43-installer |
|
||||
linux-image-generic |
|
||||
fi |
|
||||
else |
|
||||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|
||||
fi |
|
||||
fi |
|
@ -1,13 +0,0 @@ |
|||||
firmware-linux-free |
|
||||
firmware-linux-nonfree |
|
||||
firmware-atheros |
|
||||
firmware-iwlwifi |
|
||||
firmware-zd1211 |
|
||||
firmware-realtek |
|
||||
firmware-bnx2 |
|
||||
firmware-brcm80211 |
|
||||
firmware-cavium |
|
||||
firmware-ipw2x00 |
|
||||
firmware-libertas |
|
||||
firmware-ti-connectivity |
|
||||
firmware-b43-installer |
|
@ -1,13 +0,0 @@ |
|||||
firmware-linux-free |
|
||||
firmware-linux-nonfree |
|
||||
firmware-atheros |
|
||||
firmware-iwlwifi |
|
||||
firmware-zd1211 |
|
||||
firmware-realtek |
|
||||
firmware-bnx2 |
|
||||
firmware-brcm80211 |
|
||||
firmware-cavium |
|
||||
firmware-ipw2x00 |
|
||||
firmware-libertas |
|
||||
firmware-ti-connectivity |
|
||||
firmware-b43-installer |
|
@ -0,0 +1 @@ |
|||||
|
../xfce/02-xorg |
@ -1,28 +0,0 @@ |
|||||
#!/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")")" |
|
||||
|
|
||||
echo "keyboard-configuration keyboard-configuration/variant select English (US)" | debconf-set-selections |
|
||||
|
|
||||
$APT_CMD update >>$OUTPUT 2>&1 |
|
||||
|
|
||||
# install packages |
|
||||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|
||||
fi |
|
||||
|
|
||||
cat <<EOF >/usr/lib/systemd/system/xorg.service |
|
||||
[Unit] |
|
||||
Description=X-Window |
|
||||
ConditionKernelCommandLine=!text |
|
||||
After=systemd-user-sessions.service |
|
||||
|
|
||||
[Service] |
|
||||
ExecStart=/bin/su --login -c "/usr/bin/startx -- :0 vt7 -ac -nolisten tcp" live |
|
||||
|
|
||||
EOF |
|
@ -1,14 +0,0 @@ |
|||||
xserver-xorg |
|
||||
xserver-xorg-video-all |
|
||||
xserver-xorg-video-intel |
|
||||
xinit |
|
||||
xterm |
|
||||
blackbox |
|
||||
libxcursor1 |
|
||||
breeze-cursor-theme |
|
||||
x11-utils |
|
||||
wmctrl |
|
||||
xdotool |
|
||||
libdrm-intel1 |
|
||||
libgl1-mesa-dri |
|
||||
libglu1-mesa |
|
@ -1,24 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
|
|
||||
# Set setuid bit on xorg binary, so it can be started by guest user |
|
||||
chmod u+s /usr/lib/xorg/Xorg |
|
||||
|
|
||||
# use only white cursors. There were some troubles if the other cursors |
|
||||
# was left behind, installing gtk apps reverted the cursor from white to gray, |
|
||||
# so we're going to nuke it to leave only Snow cursors active. |
|
||||
rm -Rf /usr/share/icons/breeze_cursors >>$OUTPUT 2>&1 |
|
||||
mv /usr/share/icons/Breeze_Snow /usr/share/icons/breeze_cursors >>$OUTPUT 2>&1 |
|
||||
|
|
||||
(cd /rootcopy-install && cp --parents -afr * /) |
|
||||
|
|
||||
# install x11 server utils, apt-get would add cpp dependency, bullshit! |
|
||||
cd /tmp |
|
||||
apt-get download x11-xserver-utils >>$OUTPUT 2>&1 |
|
||||
ls -la |
|
||||
dpkg -x x11-xserver-utils*.deb /tmp/x11utils >>$OUTPUT 2>&1 |
|
||||
cd /tmp/x11utils |
|
||||
cp -aR * / >>$OUTPUT 2>&1 |
|
||||
|
|
||||
rm -Rf /usr/share/icons/hicolor/256x256 >>$OUTPUT 2>&1 |
|
||||
|
|
||||
update-alternatives --set x-terminal-emulator /usr/bin/xterm >>$OUTPUT 2>&1 |
|
@ -1,32 +0,0 @@ |
|||||
! this are Xresources to make xterm look good |
|
||||
! put into ~/.Xresources |
|
||||
! after changing contents, run xrdb -merge .Xresources |
|
||||
! gentoo has a bug so that it doesnt read it when X starts, so add above |
|
||||
! command to /etc/xfce4/xinitrc (top) and be happy. |
|
||||
|
|
||||
XTerm*termName: xterm-256color |
|
||||
XTerm*foreground: white |
|
||||
XTerm*background: rgb:22/22/22 |
|
||||
XTerm*cursorColor: rgb:00/ff/00 |
|
||||
XTerm*borderColor: black |
|
||||
XTerm*scrollColor: black |
|
||||
XTerm*visualBell: true |
|
||||
XTerm*saveLines: 1000 |
|
||||
XTerm*allowSendEvents: true |
|
||||
XTerm*sessionMgt: false |
|
||||
XTerm*scrollBar: true |
|
||||
XTerm*rightScrollBar: true |
|
||||
XTerm*eightBitInput: false |
|
||||
XTerm*faceName: DejaVu Sans Mono: size=9 |
|
||||
XTerm*boldFont: DejaVu Sans Mono Bold: size=9 |
|
||||
XTerm*renderFont: true |
|
||||
XTerm*activeIcon: true |
|
||||
XTerm*iconPixmap: /usr/share/icons/locolor/16x16/apps/xterm.xbm |
|
||||
XTerm*fullscreen: never |
|
||||
XTerm*selectToClipboard: true |
|
||||
Xft.dpi: 96 |
|
||||
Xft.antialias: true |
|
||||
Xft.hinting: true |
|
||||
Xft.hintstyle: hintlight |
|
||||
Xft.lcdfilter: lcddefault |
|
||||
Xft.rgba: rgb |
|
@ -1,4 +0,0 @@ |
|||||
[begin] ( Menu ) |
|
||||
[exec] (Terminal) { xterm -ls -title Terminal } |
|
||||
[exit] (Exit) |
|
||||
[end] |
|
@ -1,6 +0,0 @@ |
|||||
session.screen0.toolbar.widthPercent: 100 |
|
||||
session.screen0.strftimeFormat: %H:%M |
|
||||
session.edgeSnapThreshold: 10 |
|
||||
session.menuFile: /root/.blackbox-menu |
|
||||
session.styleFile: /usr/share/blackbox/styles/Slax |
|
||||
session.changeWorkspaceWithMouseWheel: False |
|
@ -1,2 +0,0 @@ |
|||||
xrdb -merge .Xresources |
|
||||
blackbox |
|
@ -1 +0,0 @@ |
|||||
/lib/systemd/system/xorg.service |
|
@ -1,7 +0,0 @@ |
|||||
[Unit] |
|
||||
Description=X-Window |
|
||||
ConditionKernelCommandLine=!text |
|
||||
After=systemd-user-sessions.service |
|
||||
|
|
||||
[Service] |
|
||||
ExecStart=/bin/su --login -c "/usr/bin/startx -- :0 vt7 -ac -nolisten tcp" live |
|
@ -1,79 +0,0 @@ |
|||||
*.appearance: flat solid |
|
||||
|
|
||||
*button.pressed.appearance: sunken solid |
|
||||
*button.pressed.backgroundColor: rgb:69/c1/f1 |
|
||||
*button.appearance: parentrelative |
|
||||
|
|
||||
*.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
*.unfocus.backgroundColor: rgb:28/28/28 |
|
||||
|
|
||||
*font: Bitstream Vera Sans-9 |
|
||||
|
|
||||
menu.title.appearance: flat solid |
|
||||
menu.title.backgroundColor: rgb:69/c1/f1 |
|
||||
menu.title.textColor: rgb:28/28/28 |
|
||||
menu.title.alignment: center |
|
||||
menu.title.marginWidth: 6 |
|
||||
|
|
||||
menu.frame.appearance: flat gradient border |
|
||||
menu.frame.textColor: rgb:28/28/28 |
|
||||
menu.frame.foregroundColor: grey40 |
|
||||
menu.frame.borderColor: rgb:69/c1/f1 |
|
||||
menu.frame.borderWidth: 6 |
|
||||
menu.frame.disabledColor: darkgrey |
|
||||
menu.frame.alignment: left |
|
||||
menu.frame.marginWidth: 2 |
|
||||
|
|
||||
menu.active.appearance: flat solid border |
|
||||
menu.active.backgroundColor: rgb:69/c1/f1 |
|
||||
menu.active.borderWidth: 4 |
|
||||
menu.active.borderColor: rgb:69/c1/f1 |
|
||||
menu.active.textColor: rgb:38/38/38 |
|
||||
|
|
||||
rootCommand: bsetroot -solid rgb:77/90/aa |
|
||||
|
|
||||
slit.appearance: raised solid |
|
||||
slit.backgroundColor: rgb:77/90/aa |
|
||||
slit.marginWidth: 3 |
|
||||
|
|
||||
toolbar.appearance: flat gradient border |
|
||||
toolbar.alignment: center |
|
||||
toolbar*textColor: rgb:28/28/28 |
|
||||
toolbar.label.appearance: parentrelative |
|
||||
toolbar.clock.appearance: parentrelative |
|
||||
toolbar.windowLabel.appearance: parentrelative |
|
||||
|
|
||||
window.title.focus.appearance: flat solid |
|
||||
window.title.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.title.unfocus.appearance: flat solid |
|
||||
window.title.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
window.title.marginWidth: 5 |
|
||||
|
|
||||
window.label.focus.appearance: parentrelative |
|
||||
window.label.focus.textColor: rgb:28/28/28 |
|
||||
window.label.unfocus.appearance: parentrelative |
|
||||
window.label.unfocus.textColor: rgb:28/28/28 |
|
||||
window.label.marginWidth: 1 |
|
||||
|
|
||||
window.button.focus.appearance: parentrelative |
|
||||
window.button.focus.foregroundColor: white |
|
||||
|
|
||||
window.button.unfocus.appearance: parentrelative |
|
||||
window.button.unfocus.foregroundColor: darkgrey |
|
||||
|
|
||||
window.handle.focus.appearance: flat solid |
|
||||
window.handle.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.handle.unfocus.appearance: flat solid |
|
||||
window.handle.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
|
|
||||
window.grip.focus.appearance: flat solid |
|
||||
window.grip.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.grip.unfocus.appearance: flat solid |
|
||||
window.grip.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
|
|
||||
window*alignment: center |
|
||||
|
|
||||
window.handleHeight: 7 |
|
||||
window.frame.borderWidth: 7 |
|
||||
window.frame.focus.borderColor: rgb:69/c1/f1 |
|
||||
window.frame.unfocus.borderColor: rgb:d6/d6/d6 |
|
@ -1,6 +0,0 @@ |
|||||
#define command2_width 16 |
|
||||
#define command2_height 16 |
|
||||
static unsigned char command2_bits[] = { |
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xe7, 0xff, 0xcf, 0xff, |
|
||||
0x9f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x9f, 0xff, 0xcf, 0xff, 0xe7, 0xc1, |
|
||||
0xf7, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
|
@ -1,15 +0,0 @@ |
|||||
xserver-xorg |
|
||||
xserver-xorg-video-all |
|
||||
xserver-xorg-video-intel |
|
||||
xinit |
|
||||
xterm |
|
||||
blackbox |
|
||||
libxcursor1 |
|
||||
breeze-cursor-theme |
|
||||
x11-utils |
|
||||
wmctrl |
|
||||
xdotool |
|
||||
libdrm-intel1 |
|
||||
libgl1-mesa-dri |
|
||||
libglu1-mesa |
|
||||
open-vm-tools-desktop |
|
@ -1,29 +0,0 @@ |
|||||
#!/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")")" |
|
||||
|
|
||||
echo "firmware-ipw2x00 firmware-ipw2x00/license/accepted boolean true" | debconf-set-selections |
|
||||
echo "b43-fwcutter b43-fwcutter/install-unconditional boolean true" | debconf-set-selections |
|
||||
|
|
||||
$APT_CMD update >>$OUTPUT 2>&1 |
|
||||
|
|
||||
# install packages |
|
||||
if [ $DISTRIBUTION_TYPE = "ubuntu" ]; then |
|
||||
if [ $DISTRIBUTION = "focal" ] || [ $DISTRIBUTION = "bionic" ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
linux-firmware firmware-b43-installer firmware-ath9k-htc >>$OUTPUT 2>&1 |
|
||||
else |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
#linux-firmware >>$OUTPUT 2>&1 #firmware-b43-installer |
|
||||
linux-image-generic |
|
||||
fi |
|
||||
else |
|
||||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|
||||
fi |
|
||||
fi |
|
@ -1,13 +0,0 @@ |
|||||
firmware-linux-free |
|
||||
firmware-linux-nonfree |
|
||||
firmware-atheros |
|
||||
firmware-iwlwifi |
|
||||
firmware-zd1211 |
|
||||
firmware-realtek |
|
||||
firmware-bnx2 |
|
||||
firmware-brcm80211 |
|
||||
firmware-cavium |
|
||||
firmware-ipw2x00 |
|
||||
firmware-libertas |
|
||||
firmware-ti-connectivity |
|
||||
firmware-b43-installer |
|
@ -1,13 +0,0 @@ |
|||||
firmware-linux-free |
|
||||
firmware-linux-nonfree |
|
||||
firmware-atheros |
|
||||
firmware-iwlwifi |
|
||||
firmware-zd1211 |
|
||||
firmware-realtek |
|
||||
firmware-bnx2 |
|
||||
firmware-brcm80211 |
|
||||
firmware-cavium |
|
||||
firmware-ipw2x00 |
|
||||
firmware-libertas |
|
||||
firmware-ti-connectivity |
|
||||
firmware-b43-installer |
|
@ -1,33 +0,0 @@ |
|||||
#!/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")")" |
|
||||
|
|
||||
echo "keyboard-configuration keyboard-configuration/variant select English (US)" | debconf-set-selections |
|
||||
|
|
||||
$APT_CMD update >>$OUTPUT 2>&1 |
|
||||
|
|
||||
# install packages |
|
||||
if [ -f $SCRIPT_DIR/$PACKAGE_VARIANT.list ]; then |
|
||||
$APT_CMD install $APT_OPTIONS \ |
|
||||
$(grep -vE "^\s*#" $SCRIPT_DIR/$PACKAGE_VARIANT.list | tr "\n" " ") >>$OUTPUT 2>&1 |
|
||||
fi |
|
||||
|
|
||||
cat <<EOF >/usr/lib/systemd/system/xorg.service |
|
||||
[Unit] |
|
||||
Description=X-Window |
|
||||
ConditionKernelCommandLine=!text |
|
||||
After=systemd-user-sessions.service |
|
||||
|
|
||||
[Service] |
|
||||
ExecStart=/bin/su --login -c "/usr/bin/startx -- :0 vt7 -ac -nolisten tcp" live |
|
||||
|
|
||||
EOF |
|
||||
|
|
||||
update-alternatives --set x-terminal-emulator /usr/bin/xterm >>$OUTPUT 2>&1 |
|
||||
if [ ! -L /etc/alternatives/x-terminal-emulator ]; then |
|
||||
ln -s /usr/bin/xterm /etc/alternatives/x-terminal-emulator |
|
||||
fi |
|
@ -1,14 +0,0 @@ |
|||||
xserver-xorg |
|
||||
xserver-xorg-video-all |
|
||||
xserver-xorg-video-intel |
|
||||
xinit |
|
||||
xterm |
|
||||
blackbox |
|
||||
libxcursor1 |
|
||||
breeze-cursor-theme |
|
||||
x11-utils |
|
||||
wmctrl |
|
||||
xdotool |
|
||||
libdrm-intel1 |
|
||||
libgl1-mesa-dri |
|
||||
libglu1-mesa |
|
@ -1,24 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
|
|
||||
# Set setuid bit on xorg binary, so it can be started by guest user |
|
||||
chmod u+s /usr/lib/xorg/Xorg |
|
||||
|
|
||||
# use only white cursors. There were some troubles if the other cursors |
|
||||
# was left behind, installing gtk apps reverted the cursor from white to gray, |
|
||||
# so we're going to nuke it to leave only Snow cursors active. |
|
||||
rm -Rf /usr/share/icons/breeze_cursors >>$OUTPUT 2>&1 |
|
||||
mv /usr/share/icons/Breeze_Snow /usr/share/icons/breeze_cursors >>$OUTPUT 2>&1 |
|
||||
|
|
||||
(cd /rootcopy-install && cp --parents -afr * /) |
|
||||
|
|
||||
# install x11 server utils, apt-get would add cpp dependency, bullshit! |
|
||||
cd /tmp |
|
||||
apt-get download x11-xserver-utils >>$OUTPUT 2>&1 |
|
||||
ls -la |
|
||||
dpkg -x x11-xserver-utils*.deb /tmp/x11utils >>$OUTPUT 2>&1 |
|
||||
cd /tmp/x11utils |
|
||||
cp -aR * / >>$OUTPUT 2>&1 |
|
||||
|
|
||||
rm -Rf /usr/share/icons/hicolor/256x256 >>$OUTPUT 2>&1 |
|
||||
|
|
||||
update-alternatives --set x-terminal-emulator /usr/bin/xterm >>$OUTPUT 2>&1 |
|
@ -1,32 +0,0 @@ |
|||||
! this are Xresources to make xterm look good |
|
||||
! put into ~/.Xresources |
|
||||
! after changing contents, run xrdb -merge .Xresources |
|
||||
! gentoo has a bug so that it doesnt read it when X starts, so add above |
|
||||
! command to /etc/xfce4/xinitrc (top) and be happy. |
|
||||
|
|
||||
XTerm*termName: xterm-256color |
|
||||
XTerm*foreground: white |
|
||||
XTerm*background: rgb:22/22/22 |
|
||||
XTerm*cursorColor: rgb:00/ff/00 |
|
||||
XTerm*borderColor: black |
|
||||
XTerm*scrollColor: black |
|
||||
XTerm*visualBell: true |
|
||||
XTerm*saveLines: 1000 |
|
||||
XTerm*allowSendEvents: true |
|
||||
XTerm*sessionMgt: false |
|
||||
XTerm*scrollBar: true |
|
||||
XTerm*rightScrollBar: true |
|
||||
XTerm*eightBitInput: false |
|
||||
XTerm*faceName: DejaVu Sans Mono: size=9 |
|
||||
XTerm*boldFont: DejaVu Sans Mono Bold: size=9 |
|
||||
XTerm*renderFont: true |
|
||||
XTerm*activeIcon: true |
|
||||
XTerm*iconPixmap: /usr/share/icons/locolor/16x16/apps/xterm.xbm |
|
||||
XTerm*fullscreen: never |
|
||||
XTerm*selectToClipboard: true |
|
||||
Xft.dpi: 96 |
|
||||
Xft.antialias: true |
|
||||
Xft.hinting: true |
|
||||
Xft.hintstyle: hintlight |
|
||||
Xft.lcdfilter: lcddefault |
|
||||
Xft.rgba: rgb |
|
@ -1,4 +0,0 @@ |
|||||
[begin] ( Menu ) |
|
||||
[exec] (Terminal) { xterm -ls -title Terminal } |
|
||||
[exit] (Exit) |
|
||||
[end] |
|
@ -1,6 +0,0 @@ |
|||||
session.screen0.toolbar.widthPercent: 100 |
|
||||
session.screen0.strftimeFormat: %H:%M |
|
||||
session.edgeSnapThreshold: 10 |
|
||||
session.menuFile: /root/.blackbox-menu |
|
||||
session.styleFile: /usr/share/blackbox/styles/Slax |
|
||||
session.changeWorkspaceWithMouseWheel: False |
|
@ -1,2 +0,0 @@ |
|||||
xrdb -merge .Xresources |
|
||||
blackbox |
|
@ -1 +0,0 @@ |
|||||
/lib/systemd/system/xorg.service |
|
@ -1,7 +0,0 @@ |
|||||
[Unit] |
|
||||
Description=X-Window |
|
||||
ConditionKernelCommandLine=!text |
|
||||
After=systemd-user-sessions.service |
|
||||
|
|
||||
[Service] |
|
||||
ExecStart=/bin/su --login -c "/usr/bin/startx -- :0 vt7 -ac -nolisten tcp" live |
|
@ -1,79 +0,0 @@ |
|||||
*.appearance: flat solid |
|
||||
|
|
||||
*button.pressed.appearance: sunken solid |
|
||||
*button.pressed.backgroundColor: rgb:69/c1/f1 |
|
||||
*button.appearance: parentrelative |
|
||||
|
|
||||
*.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
*.unfocus.backgroundColor: rgb:28/28/28 |
|
||||
|
|
||||
*font: Bitstream Vera Sans-9 |
|
||||
|
|
||||
menu.title.appearance: flat solid |
|
||||
menu.title.backgroundColor: rgb:69/c1/f1 |
|
||||
menu.title.textColor: rgb:28/28/28 |
|
||||
menu.title.alignment: center |
|
||||
menu.title.marginWidth: 6 |
|
||||
|
|
||||
menu.frame.appearance: flat gradient border |
|
||||
menu.frame.textColor: rgb:28/28/28 |
|
||||
menu.frame.foregroundColor: grey40 |
|
||||
menu.frame.borderColor: rgb:69/c1/f1 |
|
||||
menu.frame.borderWidth: 6 |
|
||||
menu.frame.disabledColor: darkgrey |
|
||||
menu.frame.alignment: left |
|
||||
menu.frame.marginWidth: 2 |
|
||||
|
|
||||
menu.active.appearance: flat solid border |
|
||||
menu.active.backgroundColor: rgb:69/c1/f1 |
|
||||
menu.active.borderWidth: 4 |
|
||||
menu.active.borderColor: rgb:69/c1/f1 |
|
||||
menu.active.textColor: rgb:38/38/38 |
|
||||
|
|
||||
rootCommand: bsetroot -solid rgb:77/90/aa |
|
||||
|
|
||||
slit.appearance: raised solid |
|
||||
slit.backgroundColor: rgb:77/90/aa |
|
||||
slit.marginWidth: 3 |
|
||||
|
|
||||
toolbar.appearance: flat gradient border |
|
||||
toolbar.alignment: center |
|
||||
toolbar*textColor: rgb:28/28/28 |
|
||||
toolbar.label.appearance: parentrelative |
|
||||
toolbar.clock.appearance: parentrelative |
|
||||
toolbar.windowLabel.appearance: parentrelative |
|
||||
|
|
||||
window.title.focus.appearance: flat solid |
|
||||
window.title.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.title.unfocus.appearance: flat solid |
|
||||
window.title.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
window.title.marginWidth: 5 |
|
||||
|
|
||||
window.label.focus.appearance: parentrelative |
|
||||
window.label.focus.textColor: rgb:28/28/28 |
|
||||
window.label.unfocus.appearance: parentrelative |
|
||||
window.label.unfocus.textColor: rgb:28/28/28 |
|
||||
window.label.marginWidth: 1 |
|
||||
|
|
||||
window.button.focus.appearance: parentrelative |
|
||||
window.button.focus.foregroundColor: white |
|
||||
|
|
||||
window.button.unfocus.appearance: parentrelative |
|
||||
window.button.unfocus.foregroundColor: darkgrey |
|
||||
|
|
||||
window.handle.focus.appearance: flat solid |
|
||||
window.handle.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.handle.unfocus.appearance: flat solid |
|
||||
window.handle.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
|
|
||||
window.grip.focus.appearance: flat solid |
|
||||
window.grip.focus.backgroundColor: rgb:69/c1/f1 |
|
||||
window.grip.unfocus.appearance: flat solid |
|
||||
window.grip.unfocus.backgroundColor: rgb:d6/d6/d6 |
|
||||
|
|
||||
window*alignment: center |
|
||||
|
|
||||
window.handleHeight: 7 |
|
||||
window.frame.borderWidth: 7 |
|
||||
window.frame.focus.borderColor: rgb:69/c1/f1 |
|
||||
window.frame.unfocus.borderColor: rgb:d6/d6/d6 |
|
@ -1,6 +0,0 @@ |
|||||
#define command2_width 16 |
|
||||
#define command2_height 16 |
|
||||
static unsigned char command2_bits[] = { |
|
||||
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xe7, 0xff, 0xcf, 0xff, |
|
||||
0x9f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x9f, 0xff, 0xcf, 0xff, 0xe7, 0xc1, |
|
||||
0xf7, 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; |
|
@ -1,15 +0,0 @@ |
|||||
xserver-xorg |
|
||||
xserver-xorg-video-all |
|
||||
xserver-xorg-video-intel |
|
||||
xinit |
|
||||
xterm |
|
||||
blackbox |
|
||||
libxcursor1 |
|
||||
breeze-cursor-theme |
|
||||
x11-utils |
|
||||
wmctrl |
|
||||
xdotool |
|
||||
libdrm-intel1 |
|
||||
libgl1-mesa-dri |
|
||||
libglu1-mesa |
|
||||
open-vm-tools-desktop |
|
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 |