New directory structure + basilisk
This commit is contained in:
11
.gitignore
vendored
11
.gitignore
vendored
@@ -1 +1,12 @@
|
|||||||
/wallpapers
|
/wallpapers
|
||||||
|
/test
|
||||||
|
/home/.config/qutebrowser/bookmarks
|
||||||
|
/home/.config/qutebrowser/quickmarks
|
||||||
|
/home/.config/qutebrowser/qsettings
|
||||||
|
/home/.config/micro/backups
|
||||||
|
/home/.config/micro/buffers
|
||||||
|
node_modules/
|
||||||
|
/home/.config/vesktop/Crashpad
|
||||||
|
/home/.config/vesktop/sessionData
|
||||||
|
/home/.config/vesktop/.updaterId
|
||||||
|
/home/.fonts/**/.uuid
|
||||||
6
.gitmodules
vendored
Normal file
6
.gitmodules
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
[submodule "lib/mocu-xcursor"]
|
||||||
|
path = lib/mocu-xcursor
|
||||||
|
url = https://github.com/sevmeyer/mocu-xcursor
|
||||||
|
[submodule "lib/shchemes"]
|
||||||
|
path = lib/shchemes
|
||||||
|
url = https://git.sys42.net/dakedres/shchemes
|
||||||
152
bin/dotf
Executable file
152
bin/dotf
Executable file
@@ -0,0 +1,152 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
SOURCE="$(realpath "$0")"
|
||||||
|
STORE_PATH="$(dirname "$SOURCE")/../"
|
||||||
|
STORE_PATH="$(realpath "$STORE_PATH")"
|
||||||
|
STORE_ENTRIES_FILE="${STORE_PATH}/paths"
|
||||||
|
ABS_HOME="$(readlink -f "$HOME")"
|
||||||
|
|
||||||
|
method=""
|
||||||
|
path=""
|
||||||
|
do_commit=false
|
||||||
|
commit_message="."
|
||||||
|
pull_to=""
|
||||||
|
for arg in "$@"; do
|
||||||
|
case $arg in
|
||||||
|
"-c")
|
||||||
|
do_commit=true
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-m="*)
|
||||||
|
commit_message="${arg#*=}"
|
||||||
|
;;
|
||||||
|
|
||||||
|
"-pt="*)
|
||||||
|
pull_to="${arg#*=}"
|
||||||
|
pull_to="$(realpath "$pull_to")"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
if [ -z "$method" ]; then
|
||||||
|
method="$arg"
|
||||||
|
else
|
||||||
|
path="$arg"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
if [ -z "$path" ]; then
|
||||||
|
path="."
|
||||||
|
fi
|
||||||
|
path="$(realpath --no-symlinks "$path")"
|
||||||
|
|
||||||
|
add() {
|
||||||
|
entry="$path"
|
||||||
|
check-cyclical-entry
|
||||||
|
check-duplicate-entry
|
||||||
|
|
||||||
|
printf %s\\n "$entry" >> "$STORE_ENTRIES_FILE"
|
||||||
|
printf %s\\n "Added path: $entry"
|
||||||
|
}
|
||||||
|
|
||||||
|
check-cyclical-entry() {
|
||||||
|
case "$STORE_PATH" in
|
||||||
|
"$entry"*)
|
||||||
|
printf 'Cannot cyclically archive: "%s" contains dotfiles directory'\\n "$path" >&2
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
check-duplicate-entry() {
|
||||||
|
while IFS='' read -r line || [ -n "$line" ]; do
|
||||||
|
case $entry in
|
||||||
|
"$line"*)
|
||||||
|
printf %s\\n "Item already within path: ${line}" >&2
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done < "$STORE_ENTRIES_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
|
update-dest() {
|
||||||
|
dest="$STORE_PATH/root$entry"
|
||||||
|
}
|
||||||
|
|
||||||
|
push() {
|
||||||
|
while IFS='' read -r entry || [ -n "$entry" ]; do
|
||||||
|
check-cyclical-entry
|
||||||
|
|
||||||
|
update-dest
|
||||||
|
dest_dir="$(dirname "$dest")"
|
||||||
|
rsync -rv --itemize-changes "$entry" "$dest_dir"
|
||||||
|
done < "$STORE_ENTRIES_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
|
pull() {
|
||||||
|
printf %s\\n "Diffs:"
|
||||||
|
show-diff
|
||||||
|
pull-prompt
|
||||||
|
}
|
||||||
|
|
||||||
|
entry-in-pull-path() {
|
||||||
|
entry="${pull_to}${entry}"
|
||||||
|
}
|
||||||
|
|
||||||
|
pull-prompt() {
|
||||||
|
printf "Is this ok? [y/N/d(etails)] "
|
||||||
|
read -r response
|
||||||
|
case "$response" in
|
||||||
|
d*|D*)
|
||||||
|
show-diff-detail
|
||||||
|
pull-prompt
|
||||||
|
;;
|
||||||
|
|
||||||
|
y*|Y*)
|
||||||
|
confirmed-pull
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
printf %s\\n "No action taken"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
show-diff() {
|
||||||
|
while IFS='' read -r entry || [ -n "$entry" ]; do
|
||||||
|
update-dest
|
||||||
|
entry-in-pull-path
|
||||||
|
diff -rq "$entry" "$dest" | awk '
|
||||||
|
/^Only in/ { print $0 " (this will not be overwritten)"; next }
|
||||||
|
{ print }
|
||||||
|
'
|
||||||
|
done < "$STORE_ENTRIES_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
|
show-diff-detail() {
|
||||||
|
while IFS='' read -r entry || [ -n "$entry" ]; do
|
||||||
|
update-dest
|
||||||
|
entry-in-pull-path
|
||||||
|
diff -ru "$entry" "$dest"
|
||||||
|
done < "$STORE_ENTRIES_FILE" | less
|
||||||
|
}
|
||||||
|
|
||||||
|
confirmed-pull() {
|
||||||
|
while IFS='' read -r entry || [ -n "$entry" ]; do
|
||||||
|
check-cyclical-entry
|
||||||
|
|
||||||
|
update-dest
|
||||||
|
entry-in-pull-path
|
||||||
|
entry_dir="$(dirname "$entry")"
|
||||||
|
mkdir -p "$entry_dir"
|
||||||
|
rsync -rv --itemize-changes "$dest" "$entry_dir"
|
||||||
|
done < "$STORE_ENTRIES_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$method" in
|
||||||
|
"add") add ;;
|
||||||
|
"remove") remove ;;
|
||||||
|
"push") push ;;
|
||||||
|
"pull") pull ;;
|
||||||
|
esac
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
{
|
|
||||||
(
|
|
||||||
modifiers: [
|
|
||||||
Super,
|
|
||||||
],
|
|
||||||
key: "q",
|
|
||||||
): Disable,
|
|
||||||
(
|
|
||||||
modifiers: [
|
|
||||||
Super,
|
|
||||||
],
|
|
||||||
key: "Return",
|
|
||||||
description: Some("Terminal"),
|
|
||||||
): Spawn("cosmic-term"),
|
|
||||||
(
|
|
||||||
modifiers: [
|
|
||||||
Super,
|
|
||||||
],
|
|
||||||
key: "w",
|
|
||||||
): Close,
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# :root {
|
|
||||||
# --vii: #383830;
|
|
||||||
# --vi: #75715e;
|
|
||||||
# --v: #f92672;
|
|
||||||
# --iv: #f8f8f2;
|
|
||||||
# --iiv: #f9f8f5;
|
|
||||||
# --a: #a1efe4;
|
|
||||||
# }
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--base00: #272822;
|
|
||||||
--base01: #383830;
|
|
||||||
--base02: #49483e;
|
|
||||||
--base03: #75715e;
|
|
||||||
--base04: #a59f85;
|
|
||||||
--base05: #f8f8f2;
|
|
||||||
--base06: #f5f4f1;
|
|
||||||
--base07: #f9f8f5;
|
|
||||||
--base08: #f92672;
|
|
||||||
--base09: #fd971f;
|
|
||||||
--base0A: #f4bf75;
|
|
||||||
--base0B: #a6e22e;
|
|
||||||
--base0C: #a1efe4;
|
|
||||||
--base0D: #66d9ef;
|
|
||||||
--base0E: #ae81ff;
|
|
||||||
--base0F: #cc6633;
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
configuration {
|
|
||||||
modes: [ combi ];
|
|
||||||
combi-modes: [ window, drun, run, dmenu ];
|
|
||||||
font: "Inconsolata 13";
|
|
||||||
}
|
|
||||||
|
|
||||||
@theme "theme"
|
|
||||||
|
|
||||||
window {
|
|
||||||
location: north;
|
|
||||||
anchor: north;
|
|
||||||
background-color: @background;
|
|
||||||
border: 1;
|
|
||||||
padding: 5;
|
|
||||||
y-offset: 29;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-icon {
|
|
||||||
size: 1em;
|
|
||||||
padding: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-text {
|
|
||||||
vertical-align: 0.5;
|
|
||||||
}
|
|
||||||
@@ -1,150 +0,0 @@
|
|||||||
/**
|
|
||||||
* Base16 ROFI Color theme
|
|
||||||
*
|
|
||||||
* Authors
|
|
||||||
* Scheme:
|
|
||||||
* Template: Tinted Theming (https://github.com/tinted-theming)
|
|
||||||
*/
|
|
||||||
|
|
||||||
* {
|
|
||||||
red: rgba ( 219, 45, 32, 100 % );
|
|
||||||
blue: rgba ( 1, 160, 228, 100 % );
|
|
||||||
lightfg: rgba ( 214, 213, 212, 100 % );
|
|
||||||
lightbg: rgba ( 58, 52, 50, 100 % );
|
|
||||||
foreground: rgba ( 165, 162, 162, 100 % );
|
|
||||||
background: rgba ( 9, 3, 0, 100 % );
|
|
||||||
background-color: rgba ( 9, 3, 0, 0 % );
|
|
||||||
separatorcolor: @foreground;
|
|
||||||
border-color: @foreground;
|
|
||||||
selected-normal-foreground: @lightbg;
|
|
||||||
selected-normal-background: @lightfg;
|
|
||||||
selected-active-foreground: @background;
|
|
||||||
selected-active-background: @blue;
|
|
||||||
selected-urgent-foreground: @background;
|
|
||||||
selected-urgent-background: @red;
|
|
||||||
normal-foreground: @foreground;
|
|
||||||
normal-background: @background;
|
|
||||||
active-foreground: @blue;
|
|
||||||
active-background: @background;
|
|
||||||
urgent-foreground: @red;
|
|
||||||
urgent-background: @background;
|
|
||||||
alternate-normal-foreground: @foreground;
|
|
||||||
alternate-normal-background: @lightbg;
|
|
||||||
alternate-active-foreground: @blue;
|
|
||||||
alternate-active-background: @lightbg;
|
|
||||||
alternate-urgent-foreground: @red;
|
|
||||||
alternate-urgent-background: @lightbg;
|
|
||||||
spacing: 2;
|
|
||||||
}
|
|
||||||
window {
|
|
||||||
background-color: @background;
|
|
||||||
border: 1;
|
|
||||||
padding: 5;
|
|
||||||
}
|
|
||||||
mainbox {
|
|
||||||
border: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
message {
|
|
||||||
border: 1px dash 0px 0px ;
|
|
||||||
border-color: @separatorcolor;
|
|
||||||
padding: 1px ;
|
|
||||||
}
|
|
||||||
textbox {
|
|
||||||
text-color: @foreground;
|
|
||||||
}
|
|
||||||
listview {
|
|
||||||
fixed-height: 0;
|
|
||||||
border: 2px dash 0px 0px ;
|
|
||||||
border-color: @separatorcolor;
|
|
||||||
spacing: 2px ;
|
|
||||||
scrollbar: true;
|
|
||||||
padding: 2px 0px 0px ;
|
|
||||||
}
|
|
||||||
element-text, element-icon {
|
|
||||||
background-color: inherit;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element {
|
|
||||||
border: 0;
|
|
||||||
padding: 1px ;
|
|
||||||
}
|
|
||||||
element normal.normal {
|
|
||||||
background-color: @normal-background;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
element normal.urgent {
|
|
||||||
background-color: @urgent-background;
|
|
||||||
text-color: @urgent-foreground;
|
|
||||||
}
|
|
||||||
element normal.active {
|
|
||||||
background-color: @active-background;
|
|
||||||
text-color: @active-foreground;
|
|
||||||
}
|
|
||||||
element selected.normal {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
element selected.urgent {
|
|
||||||
background-color: @selected-urgent-background;
|
|
||||||
text-color: @selected-urgent-foreground;
|
|
||||||
}
|
|
||||||
element selected.active {
|
|
||||||
background-color: @selected-active-background;
|
|
||||||
text-color: @selected-active-foreground;
|
|
||||||
}
|
|
||||||
element alternate.normal {
|
|
||||||
background-color: @alternate-normal-background;
|
|
||||||
text-color: @alternate-normal-foreground;
|
|
||||||
}
|
|
||||||
element alternate.urgent {
|
|
||||||
background-color: @alternate-urgent-background;
|
|
||||||
text-color: @alternate-urgent-foreground;
|
|
||||||
}
|
|
||||||
element alternate.active {
|
|
||||||
background-color: @alternate-active-background;
|
|
||||||
text-color: @alternate-active-foreground;
|
|
||||||
}
|
|
||||||
scrollbar {
|
|
||||||
width: 4px ;
|
|
||||||
border: 0;
|
|
||||||
handle-color: @normal-foreground;
|
|
||||||
handle-width: 8px ;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
sidebar {
|
|
||||||
border: 2px dash 0px 0px ;
|
|
||||||
border-color: @separatorcolor;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
button selected {
|
|
||||||
background-color: @selected-normal-background;
|
|
||||||
text-color: @selected-normal-foreground;
|
|
||||||
}
|
|
||||||
inputbar {
|
|
||||||
spacing: 0px;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
padding: 1px ;
|
|
||||||
children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
|
|
||||||
}
|
|
||||||
case-indicator {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
entry {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
prompt {
|
|
||||||
spacing: 0;
|
|
||||||
text-color: @normal-foreground;
|
|
||||||
}
|
|
||||||
textbox-prompt-colon {
|
|
||||||
expand: false;
|
|
||||||
str: ":";
|
|
||||||
margin: 0px 0.3000em 0.0000em 0.0000em ;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
app=/usr/bin/flatpak
|
|
||||||
custom_action_command=/usr/libexec/xfce4/screenshooter/scripts/imgur-upload.sh %f %imgur_client_id
|
|
||||||
last_user=
|
|
||||||
last_extension=png
|
|
||||||
enable_imgur_upload=true
|
|
||||||
show_in_folder=false
|
|
||||||
screenshot_dir=file:/home/dakedres/Pictures
|
|
||||||
action=1
|
|
||||||
delay=5
|
|
||||||
region=3
|
|
||||||
show_mouse=1
|
|
||||||
show_border=1
|
|
||||||
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="displays" version="1.0">
|
|
||||||
<property name="ActiveProfile" type="string" value="Default"/>
|
|
||||||
<property name="Default" type="empty">
|
|
||||||
<property name="eDP-1" type="string" value="Laptop">
|
|
||||||
<property name="Active" type="bool" value="false"/>
|
|
||||||
<property name="EDID" type="string" value="b523bc2cb14c5b55f5ea3aa234181e999627d08e"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.002344822965867"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1"/>
|
|
||||||
<property name="Y" type="double" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="HDMI-1" type="string" value="Lenovo Group Limited 22"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="c89931af72068948d9206fa7f80f34bb90faeb1d"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="true"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1"/>
|
|
||||||
<property name="Y" type="double" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="Fallback" type="empty">
|
|
||||||
<property name="eDP-1" type="string" value="Laptop">
|
|
||||||
<property name="Active" type="bool" value="false"/>
|
|
||||||
<property name="EDID" type="string" value="b523bc2cb14c5b55f5ea3aa234181e999627d08e"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60.002344822965867"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="false"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1"/>
|
|
||||||
<property name="Y" type="double" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="1920"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="HDMI-1" type="string" value="Lenovo Group Limited 22"">
|
|
||||||
<property name="Active" type="bool" value="true"/>
|
|
||||||
<property name="EDID" type="string" value="c89931af72068948d9206fa7f80f34bb90faeb1d"/>
|
|
||||||
<property name="Resolution" type="string" value="1920x1080"/>
|
|
||||||
<property name="RefreshRate" type="double" value="60"/>
|
|
||||||
<property name="Rotation" type="int" value="0"/>
|
|
||||||
<property name="Reflection" type="string" value="0"/>
|
|
||||||
<property name="Primary" type="bool" value="true"/>
|
|
||||||
<property name="Scale" type="empty">
|
|
||||||
<property name="X" type="double" value="1"/>
|
|
||||||
<property name="Y" type="double" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="Position" type="empty">
|
|
||||||
<property name="X" type="int" value="0"/>
|
|
||||||
<property name="Y" type="int" value="0"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="Notify" type="int" value="1"/>
|
|
||||||
<property name="AutoEnableProfiles" type="int" value="3"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="thunar" version="1.0">
|
|
||||||
<property name="last-location-bar" type="empty"/>
|
|
||||||
<property name="misc-change-window-icon" type="empty"/>
|
|
||||||
<property name="misc-full-path-in-title" type="empty"/>
|
|
||||||
<property name="misc-middle-click-in-tab" type="empty"/>
|
|
||||||
<property name="misc-volume-management" type="empty"/>
|
|
||||||
<property name="shortcuts-icon-size" type="empty"/>
|
|
||||||
<property name="last-view" type="string" value="ThunarDetailsView"/>
|
|
||||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_100_PERCENT"/>
|
|
||||||
<property name="last-separator-position" type="int" value="107"/>
|
|
||||||
<property name="last-window-maximized" type="bool" value="false"/>
|
|
||||||
<property name="last-window-width" type="int" value="829"/>
|
|
||||||
<property name="last-window-height" type="int" value="1021"/>
|
|
||||||
<property name="misc-confirm-close-multiple-tabs" type="bool" value="false"/>
|
|
||||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_25_PERCENT"/>
|
|
||||||
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
|
|
||||||
<property name="last-details-view-column-widths" type="string" value="50,50,121,116,50,81,50,50,386,50,50,69,50,458"/>
|
|
||||||
<property name="last-show-hidden" type="bool" value="true"/>
|
|
||||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
|
||||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,520 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-desktop" version="1.0">
|
|
||||||
<property name="desktop-icons" type="empty">
|
|
||||||
<property name="style" type="empty"/>
|
|
||||||
<property name="file-icons" type="empty">
|
|
||||||
<property name="show-home" type="empty"/>
|
|
||||||
<property name="show-filesystem" type="empty"/>
|
|
||||||
<property name="show-removable" type="empty"/>
|
|
||||||
<property name="show-trash" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="icon-size" type="empty"/>
|
|
||||||
<property name="tooltip-size" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="backdrop" type="empty">
|
|
||||||
<property name="screen0" type="empty">
|
|
||||||
<property name="monitor0" type="empty">
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-style" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitor1" type="empty">
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-style" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitor2" type="empty">
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-style" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitor3" type="empty">
|
|
||||||
<property name="image-path" type="empty"/>
|
|
||||||
<property name="image-style" type="empty"/>
|
|
||||||
<property name="image-show" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="monitoreDP-1" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace1" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace2" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace3" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace4" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace5" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace6" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace7" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace8" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace9" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace10" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace11" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace12" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace13" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace14" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace15" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace16" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace17" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace18" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace19" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace20" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace21" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace22" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace23" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace24" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace25" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace26" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace27" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace28" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace29" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace30" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace31" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace32" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace33" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace34" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace35" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace36" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace37" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace38" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace39" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace40" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace41" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace42" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace43" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace44" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace45" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace46" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="monitorHDMI-1" 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="/home/dakedres/.local/share/le_wallpaper/.HDMI-1.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace1" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace2" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace3" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace4" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace5" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace6" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace7" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace8" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace9" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace10" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace11" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace12" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace13" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace14" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace15" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace16" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace17" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace18" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace19" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace20" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace21" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace22" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace23" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace24" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace25" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace26" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace27" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace28" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace29" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace30" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace31" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace32" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace33" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace34" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace35" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace36" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace37" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace38" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace39" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace40" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace41" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace42" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace43" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace44" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace45" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
<property name="workspace46" 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/xfce4/backdrops/xubuntu-wallpaper.png"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="desktop-menu" type="empty">
|
|
||||||
<property name="show" type="empty"/>
|
|
||||||
</property>
|
|
||||||
<property name="last" type="empty">
|
|
||||||
<property name="window-width" type="int" value="615"/>
|
|
||||||
<property name="window-height" type="int" value="553"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-notifyd" version="1.0">
|
|
||||||
<property name="notify-location" type="string" value="bottom-right"/>
|
|
||||||
<property name="theme" type="empty"/>
|
|
||||||
<property name="initial-opacity" type="empty"/>
|
|
||||||
<property name="do-fadeout" type="empty"/>
|
|
||||||
<property name="log-max-size-enabled" type="bool" value="true"/>
|
|
||||||
<property name="applications" type="empty">
|
|
||||||
<property name="known_applications" type="array">
|
|
||||||
<value type="string" value="flameshot"/>
|
|
||||||
<value type="string" value="io.snapcraft.SessionAgent"/>
|
|
||||||
<value type="string" value="notify-send"/>
|
|
||||||
<value type="string" value="org.freedesktop.network-manager-applet"/>
|
|
||||||
<value type="string" value="org.xfce.Thunar"/>
|
|
||||||
<value type="string" value="telegram-desktop_telegram-desktop"/>
|
|
||||||
<value type="string" value="thunar-volman"/>
|
|
||||||
<value type="string" value="vesktop"/>
|
|
||||||
<value type="string" value="Xfce volume control"/>
|
|
||||||
<value type="string" value="xfce4-settings-helper"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="date-time-custom-format" type="string" value="%a %H:%M:%S"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-panel" version="1.0">
|
|
||||||
<property name="panels" type="array">
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<property name="panel-1" type="empty">
|
|
||||||
<property name="position" type="string" value="p=8;x=960;y=1067"/>
|
|
||||||
<property name="length" type="double" value="100"/>
|
|
||||||
<property name="position-locked" type="bool" value="true"/>
|
|
||||||
<property name="plugin-ids" type="array">
|
|
||||||
<value type="int" value="5"/>
|
|
||||||
<value type="int" value="12"/>
|
|
||||||
<value type="int" value="13"/>
|
|
||||||
<value type="int" value="6"/>
|
|
||||||
<value type="int" value="7"/>
|
|
||||||
<value type="int" value="8"/>
|
|
||||||
<value type="int" value="9"/>
|
|
||||||
<value type="int" value="1"/>
|
|
||||||
<value type="int" value="4"/>
|
|
||||||
<value type="int" value="2"/>
|
|
||||||
<value type="int" value="3"/>
|
|
||||||
<value type="int" value="10"/>
|
|
||||||
</property>
|
|
||||||
<property name="background-style" type="uint" value="0"/>
|
|
||||||
<property name="size" type="uint" value="24"/>
|
|
||||||
<property name="length-adjust" type="bool" value="true"/>
|
|
||||||
<property name="span-monitors" type="bool" value="false"/>
|
|
||||||
<property name="mode" type="uint" value="0"/>
|
|
||||||
<property name="autohide-behavior" type="uint" value="0"/>
|
|
||||||
<property name="output-name" type="string" value="Primary"/>
|
|
||||||
<property name="enable-struts" type="bool" value="false"/>
|
|
||||||
<property name="enter-opacity" type="uint" value="100"/>
|
|
||||||
<property name="leave-opacity" type="uint" value="100"/>
|
|
||||||
</property>
|
|
||||||
<property name="dark-mode" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugins" type="empty">
|
|
||||||
<property name="plugin-6" type="string" value="notification-plugin"/>
|
|
||||||
<property name="plugin-8" type="string" value="power-manager-plugin"/>
|
|
||||||
<property name="plugin-9" type="string" value="pulseaudio">
|
|
||||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
|
||||||
<property name="enable-mpris" type="bool" value="true"/>
|
|
||||||
<property name="enable-wnck" type="bool" value="true"/>
|
|
||||||
<property name="known-players" type="string" value=";firefox_firefox;org.gnome.Rhythmbox3;parole;qutebrowser;vlc"/>
|
|
||||||
<property name="mixer-command" type="string" value="pavucontrol"/>
|
|
||||||
<property name="persistent-players" type="string" value="parole;org.gnome.Rhythmbox3"/>
|
|
||||||
<property name="show-notifications" type="bool" value="true"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-10" type="string" value="clock">
|
|
||||||
<property name="digital-format" type="string" value=" %d %b, %H:%M "/>
|
|
||||||
<property name="digital-time-format" type="string" value="%I:%M %p"/>
|
|
||||||
<property name="digital-layout" type="uint" value="3"/>
|
|
||||||
<property name="mode" type="uint" value="2"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-12" type="string" value="separator">
|
|
||||||
<property name="expand" type="bool" value="true"/>
|
|
||||||
<property name="style" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-13" type="string" value="xfce4-clipman-plugin"/>
|
|
||||||
<property name="plugin-7" type="string" value="indicator">
|
|
||||||
<property name="known-indicators" type="array">
|
|
||||||
<value type="string" value="libayatana-application.so"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-1" type="string" value="directorymenu">
|
|
||||||
<property name="base-directory" type="string" value="/home/dakedres"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-2" type="string" value="actions">
|
|
||||||
<property name="appearance" type="uint" value="1"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-3" type="string" value="separator">
|
|
||||||
<property name="style" type="uint" value="2"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-4" type="string" value="separator">
|
|
||||||
<property name="style" type="uint" value="2"/>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-5" type="string" value="pager"/>
|
|
||||||
</property>
|
|
||||||
<property name="configver" type="int" value="2"/>
|
|
||||||
</channel>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-power-manager" version="1.0">
|
|
||||||
<property name="xfce4-power-manager" type="empty">
|
|
||||||
<property name="power-button-action" type="empty"/>
|
|
||||||
<property name="lock-screen-suspend-hibernate" type="empty"/>
|
|
||||||
<property name="logind-handle-lid-switch" type="empty"/>
|
|
||||||
<property name="blank-on-ac" type="empty"/>
|
|
||||||
<property name="blank-on-battery" type="int" value="15"/>
|
|
||||||
<property name="dpms-enabled" type="empty"/>
|
|
||||||
<property name="dpms-on-ac-sleep" type="empty"/>
|
|
||||||
<property name="dpms-on-ac-off" type="empty"/>
|
|
||||||
<property name="dpms-on-battery-sleep" type="uint" value="20"/>
|
|
||||||
<property name="dpms-on-battery-off" type="uint" value="30"/>
|
|
||||||
<property name="show-panel-label" type="int" value="1"/>
|
|
||||||
<property name="inactivity-sleep-mode-on-ac" type="empty"/>
|
|
||||||
<property name="inactivity-sleep-mode-on-battery" type="empty"/>
|
|
||||||
<property name="show-tray-icon" type="bool" value="false"/>
|
|
||||||
<property name="brightness-switch-restore-on-exit" type="int" value="1"/>
|
|
||||||
<property name="brightness-switch" type="int" value="0"/>
|
|
||||||
<property name="brightness-on-battery" type="uint" value="9"/>
|
|
||||||
<property name="brightness-level-on-battery" type="uint" value="15"/>
|
|
||||||
<property name="show-presentation-indicator" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?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="500"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfce4-taskmanager" version="1.0">
|
|
||||||
<property name="window-width" type="int" value="1908"/>
|
|
||||||
<property name="window-height" type="int" value="1043"/>
|
|
||||||
<property name="columns" type="empty">
|
|
||||||
<property name="sort-type" type="uint" value="0"/>
|
|
||||||
<property name="sort-id" type="uint" value="0"/>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,134 +0,0 @@
|
|||||||
<?xml version="1.1" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<channel name="xfwm4" version="1.0">
|
|
||||||
<property name="general" type="empty">
|
|
||||||
<property name="activate_action" type="empty"/>
|
|
||||||
<property name="box_move" type="empty"/>
|
|
||||||
<property name="box_resize" type="empty"/>
|
|
||||||
<property name="button_layout" type="empty"/>
|
|
||||||
<property name="button_offset" type="empty"/>
|
|
||||||
<property name="button_spacing" type="empty"/>
|
|
||||||
<property name="click_to_focus" type="bool" value="false"/>
|
|
||||||
<property name="cycle_apps_only" type="empty"/>
|
|
||||||
<property name="cycle_draw_frame" type="empty"/>
|
|
||||||
<property name="cycle_preview" type="empty"/>
|
|
||||||
<property name="double_click_distance" type="empty"/>
|
|
||||||
<property name="double_click_time" type="empty"/>
|
|
||||||
<property name="focus_delay" type="empty"/>
|
|
||||||
<property name="focus_new" type="empty"/>
|
|
||||||
<property name="frame_opacity" type="int" value="100"/>
|
|
||||||
<property name="full_width_title" type="empty"/>
|
|
||||||
<property name="maximized_offset" type="empty"/>
|
|
||||||
<property name="mousewheel_rollup" type="empty"/>
|
|
||||||
<property name="placement_mode" type="empty"/>
|
|
||||||
<property name="raise_delay" type="empty"/>
|
|
||||||
<property name="raise_on_click" type="empty"/>
|
|
||||||
<property name="raise_on_focus" type="empty"/>
|
|
||||||
<property name="repeat_urgent_blink" type="empty"/>
|
|
||||||
<property name="scroll_workspaces" type="empty"/>
|
|
||||||
<property name="shadow_delta_height" type="empty"/>
|
|
||||||
<property name="shadow_delta_width" type="empty"/>
|
|
||||||
<property name="shadow_delta_x" type="empty"/>
|
|
||||||
<property name="shadow_delta_y" type="empty"/>
|
|
||||||
<property name="shadow_opacity" type="empty"/>
|
|
||||||
<property name="show_app_icon" type="empty"/>
|
|
||||||
<property name="show_dock_shadow" type="empty"/>
|
|
||||||
<property name="show_frame_shadow" type="empty"/>
|
|
||||||
<property name="show_popup_shadow" type="empty"/>
|
|
||||||
<property name="snap_to_border" type="empty"/>
|
|
||||||
<property name="snap_to_windows" type="bool" value="false"/>
|
|
||||||
<property name="snap_width" type="empty"/>
|
|
||||||
<property name="theme" type="string" value="Ayu-Dark"/>
|
|
||||||
<property name="title_alignment" type="empty"/>
|
|
||||||
<property name="title_font" type="empty"/>
|
|
||||||
<property name="title_horizontal_offset" type="empty"/>
|
|
||||||
<property name="title_shadow_active" type="empty"/>
|
|
||||||
<property name="title_shadow_inactive" type="empty"/>
|
|
||||||
<property name="title_vertical_offset_active" type="empty"/>
|
|
||||||
<property name="title_vertical_offset_inactive" type="empty"/>
|
|
||||||
<property name="urgent_blink" type="empty"/>
|
|
||||||
<property name="use_compositing" type="empty"/>
|
|
||||||
<property name="workspace_count" type="int" value="1"/>
|
|
||||||
<property name="wrap_resistance" type="empty"/>
|
|
||||||
<property name="wrap_windows" type="bool" value="false"/>
|
|
||||||
<property name="wrap_workspaces" type="empty"/>
|
|
||||||
<property name="borderless_maximize" type="bool" value="true"/>
|
|
||||||
<property name="cycle_raise" type="bool" value="false"/>
|
|
||||||
<property name="cycle_hidden" type="bool" value="true"/>
|
|
||||||
<property name="cycle_minimum" type="bool" value="true"/>
|
|
||||||
<property name="cycle_minimized" type="bool" value="false"/>
|
|
||||||
<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="easy_click" type="string" value="Alt"/>
|
|
||||||
<property name="focus_hint" type="bool" value="true"/>
|
|
||||||
<property name="frame_border_top" type="int" value="0"/>
|
|
||||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
|
||||||
<property name="inactive_opacity" type="int" value="100"/>
|
|
||||||
<property name="move_opacity" type="int" value="93"/>
|
|
||||||
<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_with_any_button" type="bool" value="true"/>
|
|
||||||
<property name="resize_opacity" type="int" value="93"/>
|
|
||||||
<property name="snap_resist" type="bool" value="false"/>
|
|
||||||
<property name="vblank_mode" type="string" value="auto"/>
|
|
||||||
<property name="tile_on_move" type="bool" value="true"/>
|
|
||||||
<property name="titleless_maximize" type="bool" value="false"/>
|
|
||||||
<property name="toggle_workspaces" type="bool" value="false"/>
|
|
||||||
<property name="unredirect_overlays" type="bool" value="true"/>
|
|
||||||
<property name="wrap_cycle" type="bool" value="true"/>
|
|
||||||
<property name="wrap_layout" type="bool" value="true"/>
|
|
||||||
<property name="zoom_desktop" type="bool" value="true"/>
|
|
||||||
<property name="zoom_pointer" type="bool" value="true"/>
|
|
||||||
<property name="workspace_names" type="array">
|
|
||||||
<value type="string" value="1"/>
|
|
||||||
<value type="string" value="2"/>
|
|
||||||
<value type="string" value="3"/>
|
|
||||||
<value type="string" value="4"/>
|
|
||||||
<value type="string" value="5"/>
|
|
||||||
<value type="string" value="Desktop"/>
|
|
||||||
<value type="string" value="Workspace 7"/>
|
|
||||||
<value type="string" value="Workspace 8"/>
|
|
||||||
<value type="string" value="Workspace 9"/>
|
|
||||||
<value type="string" value="Workspace 10"/>
|
|
||||||
<value type="string" value="Workspace 11"/>
|
|
||||||
<value type="string" value="Workspace 12"/>
|
|
||||||
<value type="string" value="Workspace 13"/>
|
|
||||||
<value type="string" value="Workspace 14"/>
|
|
||||||
<value type="string" value="Workspace 15"/>
|
|
||||||
<value type="string" value="Workspace 16"/>
|
|
||||||
<value type="string" value="Workspace 17"/>
|
|
||||||
<value type="string" value="Workspace 18"/>
|
|
||||||
<value type="string" value="Workspace 19"/>
|
|
||||||
<value type="string" value="Workspace 20"/>
|
|
||||||
<value type="string" value="Workspace 21"/>
|
|
||||||
<value type="string" value="Workspace 22"/>
|
|
||||||
<value type="string" value="Workspace 23"/>
|
|
||||||
<value type="string" value="Workspace 24"/>
|
|
||||||
<value type="string" value="Workspace 25"/>
|
|
||||||
<value type="string" value="Workspace 26"/>
|
|
||||||
<value type="string" value="Workspace 27"/>
|
|
||||||
<value type="string" value="Workspace 28"/>
|
|
||||||
<value type="string" value="Workspace 29"/>
|
|
||||||
<value type="string" value="Workspace 30"/>
|
|
||||||
<value type="string" value="Workspace 31"/>
|
|
||||||
<value type="string" value="Workspace 32"/>
|
|
||||||
<value type="string" value="Workspace 33"/>
|
|
||||||
<value type="string" value="Workspace 34"/>
|
|
||||||
<value type="string" value="Workspace 35"/>
|
|
||||||
<value type="string" value="Workspace 36"/>
|
|
||||||
<value type="string" value="Workspace 37"/>
|
|
||||||
<value type="string" value="Workspace 38"/>
|
|
||||||
<value type="string" value="Workspace 39"/>
|
|
||||||
<value type="string" value="Workspace 40"/>
|
|
||||||
<value type="string" value="Workspace 41"/>
|
|
||||||
<value type="string" value="Workspace 42"/>
|
|
||||||
<value type="string" value="Workspace 43"/>
|
|
||||||
<value type="string" value="Workspace 44"/>
|
|
||||||
<value type="string" value="Workspace 45"/>
|
|
||||||
<value type="string" value="Workspace 46"/>
|
|
||||||
<value type="string" value="Workspace 47"/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
</channel>
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
// aurora
|
|
||||||
let left = `color0 #14191e
|
|
||||||
color8 #454459
|
|
||||||
color1 #e55c7a
|
|
||||||
color9 #cd5c60
|
|
||||||
color2 #31E183
|
|
||||||
color10 #7CF083
|
|
||||||
color3 #f5c791
|
|
||||||
color11 #dbac66
|
|
||||||
color4 #4ca6e8
|
|
||||||
color12 #91b9c7
|
|
||||||
color5 #9d81ba
|
|
||||||
color13 #6E6884
|
|
||||||
color6 #49bdb0
|
|
||||||
color14 #0D9C94
|
|
||||||
color7 #e6e6e8
|
|
||||||
color15 #f2f2f2`
|
|
||||||
.replaceAll(/\s+/g, ':')
|
|
||||||
.split('\n')
|
|
||||||
.map(e => e.toUpperCase().split(':') )
|
|
||||||
|
|
||||||
// normal
|
|
||||||
let right = `color0 #4B5254
|
|
||||||
color8 #879193
|
|
||||||
color1 #CD5C60
|
|
||||||
color9 #E36D5B
|
|
||||||
color2 #6FB593
|
|
||||||
color10 #72CCBA
|
|
||||||
color3 #DBAC66
|
|
||||||
color11 #F2C866
|
|
||||||
color4 #91B9C7
|
|
||||||
color12 #97B8DE
|
|
||||||
color5 #845A84
|
|
||||||
color13 #8C629C
|
|
||||||
color6 #4D9391
|
|
||||||
color14 #5096AB
|
|
||||||
color7 #E4E4E8
|
|
||||||
color15 #EFEFF1`
|
|
||||||
.replaceAll(/\s+/g, ':')
|
|
||||||
.split('\n')
|
|
||||||
.map(e => e.toUpperCase().split(':') )
|
|
||||||
|
|
||||||
left = new Map(left)
|
|
||||||
|
|
||||||
let source = `base00 = "#18181B"
|
|
||||||
base01 = "#222225"
|
|
||||||
base02 = "#4B5254"
|
|
||||||
base03 = "#545C5E"
|
|
||||||
base04 = "#879193"
|
|
||||||
base05 = "#9ba5a7"
|
|
||||||
base06 = "#d0d0d4"
|
|
||||||
base07 = "#E4E4E8"
|
|
||||||
base08 = "#CD5C60"
|
|
||||||
base09 = "#DBAC66"
|
|
||||||
base0A = "#F2C866"
|
|
||||||
base0B = "#6FB593"
|
|
||||||
base0C = "#4D9391"
|
|
||||||
base0D = "#91B9C7"
|
|
||||||
base0E = "#845A84"
|
|
||||||
base0F = "#E36D5B"`
|
|
||||||
|
|
||||||
for(let [ name, value ] of right) {
|
|
||||||
source = source.replaceAll(value, left.get(name))
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(source)
|
|
||||||
1
home/.basilisk
Submodule
1
home/.basilisk
Submodule
Submodule home/.basilisk added at 38c9b900a3
@@ -1,6 +1,6 @@
|
|||||||
(
|
(
|
||||||
output: "all",
|
output: "all",
|
||||||
source: Path("/var/home/dakedres/Pictures/wallpaper.jpg"),
|
source: Path("/usr/share/backgrounds/cosmic/otherworldly_earth_nasa_ISS064-E-29444.jpg"),
|
||||||
filter_by_theme: true,
|
filter_by_theme: true,
|
||||||
rotation_frequency: 300,
|
rotation_frequency: 300,
|
||||||
filter_method: Lanczos,
|
filter_method: Lanczos,
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
(
|
||||||
|
start_on_login: false,
|
||||||
|
show_overlay: false,
|
||||||
|
increment: 50,
|
||||||
|
view_moves: Continuously,
|
||||||
|
enable_mouse_zoom_shortcuts: true,
|
||||||
|
)
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
(
|
(
|
||||||
folders_first: false,
|
folders_first: false,
|
||||||
icon_sizes: (
|
icon_sizes: (
|
||||||
list: 100,
|
list: 175,
|
||||||
grid: 100,
|
grid: 100,
|
||||||
),
|
),
|
||||||
show_details: false,
|
show_details: false,
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
0.5
|
||||||
@@ -1,8 +1,4 @@
|
|||||||
Some(([
|
Some(([], [
|
||||||
"com.system76.CosmicAppletWorkspaces",
|
|
||||||
"com.system76.CosmicPanelWorkspacesButton",
|
|
||||||
"com.system76.CosmicPanelAppButton",
|
|
||||||
], [
|
|
||||||
"com.system76.CosmicAppletStatusArea",
|
"com.system76.CosmicAppletStatusArea",
|
||||||
"com.system76.CosmicAppletNotifications",
|
"com.system76.CosmicAppletNotifications",
|
||||||
"com.system76.CosmicAppletTiling",
|
"com.system76.CosmicAppletTiling",
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "v",
|
||||||
|
description: Some("anyrun"),
|
||||||
|
): Spawn("anyrun"),
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "q",
|
||||||
|
): Disable,
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "z",
|
||||||
|
): Minimize,
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "w",
|
||||||
|
): Close,
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "x",
|
||||||
|
): Maximize,
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Shift,
|
||||||
|
],
|
||||||
|
key: "Home",
|
||||||
|
): System(Screenshot),
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "Return",
|
||||||
|
): Spawn("xfce4-terminal"),
|
||||||
|
(
|
||||||
|
modifiers: [
|
||||||
|
Super,
|
||||||
|
],
|
||||||
|
key: "m",
|
||||||
|
): Disable,
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user