@ -0,0 +1,3 @@ |
|||||
|
{ |
||||
|
"vscodeGoogleTranslate.preferredLanguage": "English" |
||||
|
} |
@ -0,0 +1,73 @@ |
|||||
|
#!/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")")" |
||||
|
PARENT_DIR="$(dirname "$SCRIPT_DIR")" |
||||
|
ISO_DIR="$(dirname "$SCRIPT_DIR")"/iso |
||||
|
|
||||
|
set +u |
||||
|
if [ -z $OUTPUT ]; then |
||||
|
. $SCRIPT_DIR/linux-live/buildconfig || exit 1 |
||||
|
fi |
||||
|
set -u |
||||
|
. $SCRIPT_DIR/linux-live/minioslib || exit 1 |
||||
|
. $SCRIPT_DIR/linux-live/config || exit 1 |
||||
|
|
||||
|
# don't change! use ./install instead |
||||
|
UNATTENDED="1" |
||||
|
|
||||
|
CMD=(repack_modules build_iso) |
||||
|
|
||||
|
# ============= main ================ |
||||
|
|
||||
|
BUILD_DIR="" |
||||
|
|
||||
|
common_variables |
||||
|
|
||||
|
if [ -f /.dockerenv ] || [ "$container" = "podman" ]; then |
||||
|
new_run |
||||
|
fi |
||||
|
|
||||
|
console_colours |
||||
|
|
||||
|
allow_root_only |
||||
|
|
||||
|
create_livekitname_install_symlink |
||||
|
|
||||
|
create_completion |
||||
|
|
||||
|
create_backup |
||||
|
|
||||
|
# check number of args |
||||
|
if [[ $# == 0 || $# > 3 ]]; then help; fi |
||||
|
|
||||
|
# loop through args |
||||
|
dash_flag=false |
||||
|
start_index=0 |
||||
|
end_index=${#CMD[*]} |
||||
|
for ii in "$@"; do |
||||
|
if [[ $ii == "-" ]]; then |
||||
|
dash_flag=true |
||||
|
continue |
||||
|
fi |
||||
|
find_index $ii |
||||
|
if [[ $dash_flag == false ]]; then |
||||
|
start_index=$index |
||||
|
else |
||||
|
end_index=$(($index + 1)) |
||||
|
fi |
||||
|
done |
||||
|
if [[ $dash_flag == false ]]; then |
||||
|
end_index=$(($start_index + 1)) |
||||
|
fi |
||||
|
|
||||
|
#loop through the commands |
||||
|
for ((ii = $start_index; ii < $end_index; ii++)); do |
||||
|
setup_build_dir |
||||
|
${CMD[ii]} |
||||
|
done |
||||
|
|
||||
|
echo -e "${BOLD}${LIGHTYELLOW}$0${ENDCOLOUR} - ${LIGHTGREEN}Command completed successfully!${ENDCOLOUR}" |
@ -1,5 +1,5 @@ |
|||||
deb http://deb.debian.org/debian/ bullseye main |
deb http://deb.debian.org/debian/ bullseye main contrib non-free |
||||
deb-src http://deb.debian.org/debian/ bullseye main |
deb-src http://deb.debian.org/debian/ bullseye main contrib non-free |
||||
|
|
||||
deb http://security.debian.org/debian-security bullseye-security main |
deb http://security.debian.org/debian-security bullseye-security main contrib non-free |
||||
deb-src http://security.debian.org/debian-security bullseye-security main |
deb-src http://security.debian.org/debian-security bullseye-security main contrib non-free |
||||
|
@ -0,0 +1,41 @@ |
|||||
|
mc |
||||
|
squashfs-tools |
||||
|
genisoimage |
||||
|
zip |
||||
|
unzip |
||||
|
psmisc |
||||
|
net-tools |
||||
|
alsa-utils |
||||
|
man |
||||
|
less |
||||
|
xz-utils |
||||
|
ca-certificates |
||||
|
openssl |
||||
|
acpid |
||||
|
acpi-support-base |
||||
|
powermgmt-base |
||||
|
bzip2 |
||||
|
gpart |
||||
|
hdparm |
||||
|
sdparm |
||||
|
mdadm |
||||
|
smartmontools |
||||
|
dosfstools |
||||
|
lsof |
||||
|
htop |
||||
|
gddrescue |
||||
|
rsync |
||||
|
netcat |
||||
|
ssh |
||||
|
gpm |
||||
|
wireless-tools |
||||
|
ntfs-3g |
||||
|
rfkill |
||||
|
file |
||||
|
dnsmasq |
||||
|
ntpdate |
||||
|
dvd+rw-tools |
||||
|
usb-modeswitch |
||||
|
pm-utils |
||||
|
wget |
||||
|
gnupg |
@ -1,10 +1,15 @@ |
|||||
#!/bin/bash |
#!/bin/bash |
||||
|
|
||||
apt-get remove --yes vim* grub* debconf-i18n installation-report >>$OUTPUT 2>&1 |
apt-get remove --yes vim* grub* debconf-i18n installation-report >>$OUTPUT 2>&1 |
||||
|
|
||||
cd /tmp |
cd /tmp |
||||
apt -y update >>$OUTPUT 2>&1 |
apt -y update >>$OUTPUT 2>&1 |
||||
apt-get download acpi-support >>$OUTPUT 2>&1 |
apt-get download acpi-support >>$OUTPUT 2>&1 |
||||
dpkg -x acpi-support*.deb /tmp/acpisupport >>$OUTPUT 2>&1 |
dpkg -x acpi-support*.deb /tmp/acpisupport >>$OUTPUT 2>&1 |
||||
|
if [ -L "/lib" ]; then |
||||
|
mkdir -p /tmp/acpisupport/usr/lib |
||||
|
(cd /tmp/acpisupport/lib && cp --parents -afr * /tmp/acpisupport/usr/lib) |
||||
|
rm -rf /tmp/acpisupport/lib |
||||
|
fi |
||||
cd /tmp/acpisupport |
cd /tmp/acpisupport |
||||
cp -aR * / >>$OUTPUT 2>&1 |
cp -aR * / >>$OUTPUT 2>&1 |
||||
|
@ -0,0 +1,140 @@ |
|||||
|
# ~/.bashrc: executed by bash(1) for non-login shells. |
||||
|
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) |
||||
|
# for examples |
||||
|
|
||||
|
# If not running interactively, don't do anything |
||||
|
case $- in |
||||
|
*i*) ;; |
||||
|
*) return;; |
||||
|
esac |
||||
|
|
||||
|
# don't put duplicate lines or lines starting with space in the history. |
||||
|
# See bash(1) for more options |
||||
|
HISTCONTROL=ignoreboth |
||||
|
|
||||
|
# append to the history file, don't overwrite it |
||||
|
shopt -s histappend |
||||
|
|
||||
|
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) |
||||
|
HISTSIZE=1000 |
||||
|
HISTFILESIZE=2000 |
||||
|
|
||||
|
# check the window size after each command and, if necessary, |
||||
|
# update the values of LINES and COLUMNS. |
||||
|
shopt -s checkwinsize |
||||
|
|
||||
|
# If set, the pattern "**" used in a pathname expansion context will |
||||
|
# match all files and zero or more directories and subdirectories. |
||||
|
#shopt -s globstar |
||||
|
|
||||
|
# make less more friendly for non-text input files, see lesspipe(1) |
||||
|
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" |
||||
|
|
||||
|
# set variable identifying the chroot you work in (used in the prompt below) |
||||
|
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then |
||||
|
debian_chroot=$(cat /etc/debian_chroot) |
||||
|
fi |
||||
|
|
||||
|
# set a fancy prompt (non-color, unless we know we "want" color) |
||||
|
case "$TERM" in |
||||
|
xterm-color|*-256color) color_prompt=yes;; |
||||
|
esac |
||||
|
|
||||
|
# uncomment for a colored prompt, if the terminal has the capability; turned |
||||
|
# off by default to not distract the user: the focus in a terminal window |
||||
|
# should be on the output of commands, not on the prompt |
||||
|
#force_color_prompt=yes |
||||
|
|
||||
|
if [ -n "$force_color_prompt" ]; then |
||||
|
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then |
||||
|
# We have color support; assume it's compliant with Ecma-48 |
||||
|
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such |
||||
|
# a case would tend to support setf rather than setaf.) |
||||
|
color_prompt=yes |
||||
|
else |
||||
|
color_prompt= |
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
if [ "$color_prompt" = yes ]; then |
||||
|
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' |
||||
|
else |
||||
|
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' |
||||
|
fi |
||||
|
unset color_prompt force_color_prompt |
||||
|
|
||||
|
# If this is an xterm set the title to user@host:dir |
||||
|
case "$TERM" in |
||||
|
xterm*|rxvt*) |
||||
|
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" |
||||
|
;; |
||||
|
*) |
||||
|
;; |
||||
|
esac |
||||
|
|
||||
|
# enable color support of ls and also add handy aliases |
||||
|
if [ -x /usr/bin/dircolors ]; then |
||||
|
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" |
||||
|
alias ls='ls --color=auto' |
||||
|
#alias dir='dir --color=auto' |
||||
|
#alias vdir='vdir --color=auto' |
||||
|
|
||||
|
alias grep='grep --color=auto' |
||||
|
alias fgrep='fgrep --color=auto' |
||||
|
alias egrep='egrep --color=auto' |
||||
|
fi |
||||
|
|
||||
|
# colored GCC warnings and errors |
||||
|
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' |
||||
|
|
||||
|
# some more ls aliases |
||||
|
alias ll='ls -alF' |
||||
|
alias la='ls -A' |
||||
|
alias l='ls -CF' |
||||
|
|
||||
|
# Add an "alert" alias for long running commands. Use like so: |
||||
|
# sleep 10; alert |
||||
|
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' |
||||
|
|
||||
|
# Alias definitions. |
||||
|
# You may want to put all your additions into a separate file like |
||||
|
# ~/.bash_aliases, instead of adding them here directly. |
||||
|
# See /usr/share/doc/bash-doc/examples in the bash-doc package. |
||||
|
|
||||
|
if [ -f ~/.bash_aliases ]; then |
||||
|
. ~/.bash_aliases |
||||
|
fi |
||||
|
|
||||
|
# enable programmable completion features (you don't need to enable |
||||
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile |
||||
|
# sources /etc/bash.bashrc). |
||||
|
if ! shopt -oq posix; then |
||||
|
if [ -f /usr/share/bash-completion/bash_completion ]; then |
||||
|
. /usr/share/bash-completion/bash_completion |
||||
|
elif [ -f /etc/bash_completion ]; then |
||||
|
. /etc/bash_completion |
||||
|
fi |
||||
|
fi |
||||
|
|
||||
|
apt-get() |
||||
|
{ |
||||
|
if [ -e /var/cache/apt/pkgcache.bin ]; then |
||||
|
/usr/bin/apt-get "$@" |
||||
|
else |
||||
|
/usr/bin/apt-get update |
||||
|
/usr/bin/apt-get "$@" |
||||
|
fi |
||||
|
} |
||||
|
|
||||
|
apt() |
||||
|
{ |
||||
|
if [ -e /var/cache/apt/pkgcache.bin ]; then |
||||
|
/usr/bin/apt "$@" |
||||
|
else |
||||
|
/usr/bin/apt update |
||||
|
/usr/bin/apt "$@" |
||||
|
fi |
||||
|
} |
||||
|
|
||||
|
export -f apt-get |
||||
|
export -f apt |
@ -1 +0,0 @@ |
|||||
/lib/systemd/system/dhclient.service |
|
@ -1,11 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
if [ "$#" -lt 1 ]; then |
|
||||
echo "Usage: sudo [command] [arguments]" |
|
||||
exit 1 |
|
||||
fi |
|
||||
|
|
||||
if [ "$UID" = 0 ]; then |
|
||||
exec "$@" |
|
||||
fi |
|
||||
|
|
||||
echo "Sudo is not installed. Run the command as root or install sudo." |
|
@ -0,0 +1,13 @@ |
|||||
|
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,14 @@ |
|||||
|
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 |
@ -0,0 +1,30 @@ |
|||||
|
! 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*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: 50000 |
||||
|
XTerm*allowSendEvents: True |
||||
|
XTerm*sessionMgt: false |
||||
|
XTerm*rightScrollBar: true |
||||
|
XTerm*eightBitInput: false |
||||
|
XTerm*faceName:fixed:size=11 |
||||
|
XTerm*boldFont:fixed:size=11 |
||||
|
XTerm*activeIcon: true |
||||
|
XTerm*iconPixmap: /usr/share/icons/locolor/16x16/apps/xterm.xbm |
||||
|
XTerm*fullscreen: never |
||||
|
|
||||
|
Xft.antialias: true |
||||
|
Xft.hinting: true |
||||
|
Xft.hintstyle: hintfull |
||||
|
Xft.lcdfilter: lcdlegacy |
||||
|
Xft.rgba: rgb |
||||
|
|
||||
|
XTerm*selectToClipboard: true |
@ -0,0 +1,5 @@ |
|||||
|
[begin] ( Menu ) |
||||
|
[exec] (Terminal) { xterm -ls -title Terminal } |
||||
|
[exec] (Web browser) { chromium } |
||||
|
[exit] (Exit) |
||||
|
[end] |
@ -0,0 +1,6 @@ |
|||||
|
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 |
@ -0,0 +1 @@ |
|||||
|
blackbox |
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,27 @@ |
|||||
|
[Local restart] |
||||
|
Identity=unix-group:power |
||||
|
Action=org.freedesktop.consolekit.system.restart |
||||
|
ResultAny=yes |
||||
|
ResultInactive=no |
||||
|
ResultActive=yes |
||||
|
|
||||
|
[Local shutdown] |
||||
|
Identity=unix-group:power |
||||
|
Action=org.freedesktop.consolekit.system.stop |
||||
|
ResultAny=yes |
||||
|
ResultInactive=no |
||||
|
ResultActive=yes |
||||
|
|
||||
|
[Local restart - multiple] |
||||
|
Identity=unix-group:power |
||||
|
Action=org.freedesktop.consolekit.system.restart-multiple-users |
||||
|
ResultAny=yes |
||||
|
ResultInactive=no |
||||
|
ResultActive=yes |
||||
|
|
||||
|
[Local shutdown - multiple] |
||||
|
Identity=unix-group:power |
||||
|
Action=org.freedesktop.consolekit.system.stop-multiple-users |
||||
|
ResultAny=yes |
||||
|
ResultInactive=no |
||||
|
ResultActive=yes |
@ -0,0 +1,6 @@ |
|||||
|
[Local Users] |
||||
|
Identity=unix-group:power |
||||
|
Action=org.freedesktop.upower.* |
||||
|
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,3 @@ |
|||||
|
TerminalEmulator= |
||||
|
FileManager= |
||||
|
WebBrowser= |
@ -1,16 +1,16 @@ |
|||||
display_label=false |
display_label=false |
||||
display_icon=false |
display_icon=false |
||||
display_power=false |
display_power=false |
||||
display_percentage=true |
display_percentage=false |
||||
display_bar=true |
display_bar=true |
||||
display_time=false |
display_time=false |
||||
tooltip_display_percentage=false |
tooltip_display_percentage=true |
||||
tooltip_display_time=false |
tooltip_display_time=true |
||||
low_percentage=10 |
low_percentage=10 |
||||
critical_percentage=5 |
critical_percentage=5 |
||||
action_on_low=1 |
action_on_low=1 |
||||
action_on_critical=1 |
action_on_critical=1 |
||||
hide_when_full=4 |
hide_when_full=-415324144 |
||||
colorA=rgb(136,136,255) |
colorA=rgb(136,136,255) |
||||
colorH=rgb(0,255,0) |
colorH=rgb(0,255,0) |
||||
colorL=rgb(255,255,0) |
colorL=rgb(255,255,0) |
@ -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=true |
||||
|
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,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,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,14 @@ |
|||||
|
#!/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 |
||||
|
|
||||
|
exec xfce4-session |
@ -1,3 +1,3 @@ |
|||||
TerminalEmulator=xfce4-terminal |
TerminalEmulator= |
||||
FileManager=pcmanfm |
FileManager= |
||||
|
WebBrowser= |
@ -1,16 +1,16 @@ |
|||||
display_label=false |
display_label=false |
||||
display_icon=false |
display_icon=false |
||||
display_power=false |
display_power=false |
||||
display_percentage=true |
display_percentage=false |
||||
display_bar=true |
display_bar=true |
||||
display_time=false |
display_time=false |
||||
tooltip_display_percentage=false |
tooltip_display_percentage=true |
||||
tooltip_display_time=false |
tooltip_display_time=true |
||||
low_percentage=10 |
low_percentage=10 |
||||
critical_percentage=5 |
critical_percentage=5 |
||||
action_on_low=1 |
action_on_low=1 |
||||
action_on_critical=1 |
action_on_critical=1 |
||||
hide_when_full=4 |
hide_when_full=-415324144 |
||||
colorA=rgb(136,136,255) |
colorA=rgb(136,136,255) |
||||
colorH=rgb(0,255,0) |
colorH=rgb(0,255,0) |
||||
colorL=rgb(255,255,0) |
colorL=rgb(255,255,0) |
@ -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=true |
||||
|
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 |
||||
|
|
@ -1,5 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
|
|
||||
<channel name="thunar" version="1.0"> |
|
||||
<property name="last-view" type="string" value="ThunarIconView"/> |
|
||||
</channel> |
|
@ -1,3 +1,3 @@ |
|||||
TerminalEmulator=xfce4-terminal |
TerminalEmulator= |
||||
FileManager=pcmanfm |
FileManager= |
||||
|
WebBrowser= |
@ -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,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=true |
||||
|
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 |
||||
|
|
@ -1,18 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
|
|
||||
<channel name="displays" version="1.0"> |
|
||||
<property name="Default" type="empty"> |
|
||||
<property name="Virtual1" type="string" value="Virtual1"> |
|
||||
<property name="Active" type="bool" value="true"/> |
|
||||
<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="Position" type="empty"> |
|
||||
<property name="X" type="int" value="0"/> |
|
||||
<property name="Y" type="int" value="0"/> |
|
||||
</property> |
|
||||
</property> |
|
||||
</property> |
|
||||
</channel> |
|
@ -1,5 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
|
|
||||
<channel name="thunar" version="1.0"> |
|
||||
<property name="last-view" type="string" value="ThunarIconView"/> |
|
||||
</channel> |
|
After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 802 KiB |
@ -0,0 +1,19 @@ |
|||||
|
libxfce4ui-utils |
||||
|
thunar |
||||
|
gvfs |
||||
|
xfce4-appfinder |
||||
|
xfce4-panel |
||||
|
xfce4-session |
||||
|
xfce4-settings |
||||
|
xfconf |
||||
|
xfdesktop4 |
||||
|
xfwm4 |
||||
|
elementary-xfce-icon-theme |
||||
|
greybird-gtk-theme |
||||
|
xfce4-pulseaudio-plugin |
||||
|
pulseaudio |
||||
|
pavucontrol |
||||
|
xfce4-xkb-plugin |
||||
|
xfce4-battery-plugin |
||||
|
xfce4-whiskermenu-plugin |
||||
|
network-manager-gnome |
@ -0,0 +1,4 @@ |
|||||
|
mousepad |
||||
|
xarchiver |
||||
|
ristretto |
||||
|
xfce4-terminal |
@ -1,8 +0,0 @@ |
|||||
mousepad |
|
||||
xarchiver |
|
||||
xfce4-terminal |
|
||||
xfce4-xkb-plugin |
|
||||
xfce4-battery-plugin |
|
||||
ristretto |
|
||||
volumeicon-alsa |
|
||||
network-manager-gnome |
|
@ -0,0 +1,12 @@ |
|||||
|
[Desktop Entry] |
||||
|
Encoding=UTF-8 |
||||
|
Version=0.9.4 |
||||
|
Type=Application |
||||
|
Name=volumeicon |
||||
|
Comment= |
||||
|
Exec=volumeicon |
||||
|
OnlyShowIn=XFCE; |
||||
|
StartupNotify=false |
||||
|
Terminal=false |
||||
|
Hidden=false |
||||
|
|
@ -0,0 +1,27 @@ |
|||||
|
[Alsa] |
||||
|
card=default |
||||
|
logarithmic_scale=false |
||||
|
|
||||
|
[Notification] |
||||
|
show_notification=true |
||||
|
notification_type=0 |
||||
|
|
||||
|
[StatusIcon] |
||||
|
stepsize=5 |
||||
|
onclick=xterm -e 'alsamixer' |
||||
|
theme=White Gnome |
||||
|
use_panel_specific_icons=false |
||||
|
reverse_scroll_direction=false |
||||
|
lmb_slider=false |
||||
|
mmb_mute=false |
||||
|
use_horizontal_slider=false |
||||
|
show_sound_level=false |
||||
|
use_transparent_background=false |
||||
|
|
||||
|
[Hotkeys] |
||||
|
up_enabled=false |
||||
|
down_enabled=false |
||||
|
mute_enabled=false |
||||
|
up=XF86AudioRaiseVolume |
||||
|
down=XF86AudioLowerVolume |
||||
|
mute=XF86AudioMute |
@ -0,0 +1,56 @@ |
|||||
|
; xfce4-terminal GtkAccelMap rc-file -*- scheme -*- |
||||
|
; this file is an automated accelerator map dump |
||||
|
; |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-1" "<Alt>1") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-3" "<Alt>3") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/file-menu" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/close-other-tabs" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/search" "<Primary><Shift>f") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/next-tab" "<Primary>Page_Down") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/copy-html" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/show-menubar" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/zoom-reset" "<Primary>0") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/close-window" "<Primary><Shift>q") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/save-contents" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/close-tab" "<Primary><Shift>w") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/view-menu" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/new-tab" "<Primary><Shift>t") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/show-toolbar" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/copy-input" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/paste" "<Primary><Shift>v") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/copy" "<Primary><Shift>c") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/edit-menu" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/fullscreen" "F11") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-6" "<Alt>6") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/read-only" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/detach-tab" "<Primary><Shift>d") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-8" "<Alt>8") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-2" "<Alt>2") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/scroll-on-output" "") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-5" "<Alt>5") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/prev-tab" "<Primary>Page_Up") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/move-tab-left" "<Primary><Shift>Page_Up") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/zoom-in" "<Primary>plus") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/search-prev" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/reset-and-clear" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/about" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/search-next" "") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/toggle-menubar" "F10") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-7" "<Alt>7") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/select-all" "<Primary><Shift>a") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/help-menu" "") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-9" "<Alt>9") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/show-borders" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/new-window" "<Primary><Shift>n") |
||||
|
(gtk_accel_path "<Actions>/terminal-window/goto-tab-4" "<Alt>4") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/contents" "F1") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/preferences" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/move-tab-right" "<Primary><Shift>Page_Down") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/zoom-out" "<Primary>minus") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/set-title" "<Primary><Shift>s") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/paste-selection" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/undo-close-tab" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/tabs-menu" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/zoom-menu" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/reset" "") |
||||
|
; (gtk_accel_path "<Actions>/terminal-window/terminal-menu" "") |
@ -0,0 +1,30 @@ |
|||||
|
[Configuration] |
||||
|
FontName=Monospace 10 |
||||
|
MiscAlwaysShowTabs=FALSE |
||||
|
MiscBell=FALSE |
||||
|
MiscBellUrgent=FALSE |
||||
|
MiscBordersDefault=TRUE |
||||
|
MiscCursorBlinks=FALSE |
||||
|
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK |
||||
|
MiscDefaultGeometry=80x24 |
||||
|
MiscInheritGeometry=FALSE |
||||
|
MiscMenubarDefault=TRUE |
||||
|
MiscMouseAutohide=FALSE |
||||
|
MiscMouseWheelZoom=TRUE |
||||
|
MiscToolbarDefault=FALSE |
||||
|
MiscConfirmClose=TRUE |
||||
|
MiscCycleTabs=TRUE |
||||
|
MiscTabCloseButtons=TRUE |
||||
|
MiscTabCloseMiddleClick=TRUE |
||||
|
MiscTabPosition=GTK_POS_TOP |
||||
|
MiscHighlightUrls=TRUE |
||||
|
MiscMiddleClickOpensUri=FALSE |
||||
|
MiscCopyOnSelect=FALSE |
||||
|
MiscShowRelaunchDialog=TRUE |
||||
|
MiscRewrapOnResize=TRUE |
||||
|
MiscUseShiftArrowsToScroll=FALSE |
||||
|
MiscSlimTabs=FALSE |
||||
|
MiscNewTabAdjacent=FALSE |
||||
|
BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT |
||||
|
BackgroundDarkness=0.800000 |
||||
|
|
@ -1,4 +0,0 @@ |
|||||
FileManager=pcmanfm |
|
||||
TerminalEmulator=xfce4-terminal |
|
||||
WebBrowser=firefox |
|
||||
|
|
@ -1,127 +0,0 @@ |
|||||
|
|
||||
[General] |
|
||||
version=0.9.7 |
|
||||
width=450 |
|
||||
height=400 |
|
||||
save_mode_on_exit=1 |
|
||||
save_definitions_on_exit=1 |
|
||||
load_global_definitions=1 |
|
||||
fetch_exchange_rates_at_startup=0 |
|
||||
wget_args=--quiet --tries=1 |
|
||||
show_keypad=1 |
|
||||
show_history=0 |
|
||||
show_stack=1 |
|
||||
rpn_keypad_only=1 |
|
||||
display_expression_status=1 |
|
||||
enable_completion=1 |
|
||||
use_unicode_signs=1 |
|
||||
lower_case_numbers=0 |
|
||||
lower_case_e=1 |
|
||||
base_display=1 |
|
||||
spell_out_logical_operators=1 |
|
||||
dot_as_separator=0 |
|
||||
use_custom_result_font=0 |
|
||||
use_custom_expression_font=0 |
|
||||
use_custom_status_font=0 |
|
||||
custom_result_font=Sans 10 |
|
||||
custom_expression_font=Sans 10 |
|
||||
custom_status_font=Sans 10 |
|
||||
multiplication_sign=0 |
|
||||
division_sign=1 |
|
||||
expression_history=10*20 |
|
||||
expression_history=d*d |
|
||||
expression_history=5+2/200000000000 |
|
||||
expression_history=5+2/200000 |
|
||||
expression_history=5+2/2 |
|
||||
expression_history=5+2/3 |
|
||||
history_expression=10*20 |
|
||||
history_parse=10 * 20 |
|
||||
history_result=200 |
|
||||
history_expression=d*d |
|
||||
history_parse=day * day |
|
||||
history_result=1 d^2 |
|
||||
history_expression=5+2/200000000000 |
|
||||
history_parse=5 + (2 ∕ 2E11) |
|
||||
history_result_approximate=5 |
|
||||
history_result_approximate=5 |
|
||||
history_expression=5+2/200000000000 |
|
||||
history_parse=5 + (2 ∕ 2E11) |
|
||||
history_result_approximate=5 |
|
||||
history_result_approximate=5 |
|
||||
history_result_approximate=5 |
|
||||
history_expression=5+2/200000000000 |
|
||||
history_parse=5 + (2 ∕ 2E11) |
|
||||
history_result_approximate=5 |
|
||||
history_expression=5+2/200000 |
|
||||
history_parse=5 + (2 ∕ 200000) |
|
||||
history_result=5.00001 |
|
||||
history_expression=5+2/2 |
|
||||
history_parse=5 + (2 ∕ 2) |
|
||||
history_result=6 |
|
||||
history_expression=5+2/3 |
|
||||
history_parse=5 + (2 ∕ 3) |
|
||||
history_result_approximate=5.6666667 |
|
||||
recent_functions= |
|
||||
recent_variables= |
|
||||
recent_units= |
|
||||
|
|
||||
[Mode] |
|
||||
min_deci=0 |
|
||||
use_min_deci=0 |
|
||||
max_deci=2 |
|
||||
use_max_deci=0 |
|
||||
precision=8 |
|
||||
min_exp=-1 |
|
||||
negative_exponents=0 |
|
||||
sort_minus_last=1 |
|
||||
number_fraction_format=0 |
|
||||
use_prefixes=1 |
|
||||
abbreviate_names=1 |
|
||||
all_prefixes_enabled=0 |
|
||||
denominator_prefix_enabled=1 |
|
||||
place_units_separately=1 |
|
||||
auto_post_conversion=0 |
|
||||
number_base=10 |
|
||||
number_base_expression=10 |
|
||||
read_precision=0 |
|
||||
assume_denominators_nonzero=1 |
|
||||
warn_about_denominators_assumed_nonzero=1 |
|
||||
structuring=1 |
|
||||
angle_unit=1 |
|
||||
functions_enabled=1 |
|
||||
variables_enabled=1 |
|
||||
calculate_functions=1 |
|
||||
calculate_variables=1 |
|
||||
sync_units=1 |
|
||||
unknownvariables_enabled=0 |
|
||||
units_enabled=1 |
|
||||
allow_complex=1 |
|
||||
allow_infinite=1 |
|
||||
indicate_infinite_series=0 |
|
||||
show_ending_zeroes=0 |
|
||||
round_halfway_to_even=0 |
|
||||
approximation=1 |
|
||||
in_rpn_mode=0 |
|
||||
rpn_syntax=0 |
|
||||
limit_implicit_multiplication=0 |
|
||||
spacious=1 |
|
||||
excessive_parenthesis=0 |
|
||||
short_multiplication=1 |
|
||||
default_assumption_type=4 |
|
||||
default_assumption_sign=0 |
|
||||
|
|
||||
[Plotting] |
|
||||
plot_legend_placement=2 |
|
||||
plot_style=0 |
|
||||
plot_smoothing=0 |
|
||||
plot_display_grid=1 |
|
||||
plot_full_border=0 |
|
||||
plot_min=0 |
|
||||
plot_max=10 |
|
||||
plot_step=1 |
|
||||
plot_sampling_rate=100 |
|
||||
plot_use_sampling_rate=1 |
|
||||
plot_variable=x |
|
||||
plot_rows=0 |
|
||||
plot_type=0 |
|
||||
plot_color=1 |
|
@ -1,4 +0,0 @@ |
|||||
FileManager=pcmanfm |
|
||||
TerminalEmulator=xfce4-terminal |
|
||||
WebBrowser=firefox |
|
||||
|
|