Initial commit with current state only

This commit is contained in:
Mike Kelly 2025-02-14 13:06:10 -08:00
commit fa59125c4e
138 changed files with 3803 additions and 0 deletions

1
.ignore Normal file
View File

@ -0,0 +1 @@
config

94
README.md Normal file
View File

@ -0,0 +1,94 @@
![nixbook os logo](https://github.com/user-attachments/assets/8511e040-ebf0-4090-b920-c051b23fcc9c)
**Convert your old computer (even chromebook) to a user friendly, lightweight, durable, and auto updating operating system build on top of NixOS.**
The goal is to create a "chromebook like" unbreakable computer to give to basic users who know nothing about Linux and won't need to ever worry about updates / upgrades.
---
The default **nixbook** version:
- ***32 gigs of storage and 4 gigs of ram recommended***
- configured cinnamon desktop and firefox base
- Chrome, Zoom, and Libreoffice installed by default flathub enabled out of the box.
- Automatic weekly OS updates with 4 weeks of roll backs
- Daily flatpak updates
The **nixbook lite** version:
- ***16 gigs of storage and 2 gigs of ram recommended***
- configured cinnamon desktop and firefox base
- Automatic weekly updates with 2 weeks of roll backs
![Screenshot from 2024-10-22 10-31-24](https://github.com/user-attachments/assets/53fc76ad-5861-46d8-895a-b4be1e1b2816)
## Step 1: Install NixOS, and choose the No Desktop option.
![Screenshot from 2024-10-12 10-24-21](https://github.com/user-attachments/assets/865760ec-fcd1-4133-be35-5fb5cf0e6638)
## Step 2: Enable unfree software
![Screenshot from 2024-10-12 10-24-31](https://github.com/user-attachments/assets/77b02843-4c3e-409c-82dc-7579578b2582)
## Step 3: Format your drive however you like (erase disk, swap, no hibernate)
![Screenshot from 2024-10-12 10-24-44](https://github.com/user-attachments/assets/968111d9-c018-4be5-8aaa-ee5c647b2617)
## Step 4: Reboot, login, and connect to wifi, then hit ESC
```
nmtui
```
## Step 5: Go to /etc and nix-shell git
```
cd /etc/
nix-shell -p git
```
## Step 6: Clone the nixbook repo (make sure you run as sudo and you're in /etc!)
```
sudo git clone https://github.com/mkellyxp/nixbook
```
## Step 7: Run the install script (run this with NO sudo)
```
cd nixbook
./install.sh
```
*or for nixbook lite*
```
cd nixbook
./install_lite.sh
```
## Step 8: Enjoy nixbook!
You can always manually run updates by running **Update and Reboot** in the menu.
If you want to completely reset this nixbook, wipe off your personal data to give it to someone else, or start fresh, run **Powerwash** from the menu.
---
Notes:
- The Nix channel will be updated from this git config once tested, and will auto apply to your machine within a week
- Simply reboot for OS updates to apply.
- Don't modify the .nix files in this repo, as they'll get overwritten on update. If you want to customize, put your nix changes directly into /etc/nixos/configuration.nix
![Screenshot from 2024-10-12 10-40-07](https://github.com/user-attachments/assets/3540074a-e11e-4a88-a812-4ef3d4c83f0b)
![Screenshot from 2024-10-12 10-40-36](https://github.com/user-attachments/assets/6f62f3da-4a4c-464a-b75b-2046ff4d9162)
---
This is a passion project of mine, that I'm using for friends, family, and my local community at large. If you have any feedback or suggestions, please feel free to open an issue, pull request or just message me.

108
base.nix Normal file
View File

@ -0,0 +1,108 @@
{ config, pkgs, ... }:
{
zramSwap.enable = true;
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Cinnamon Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.cinnamon.enable = true;
xdg.portal.enable = true;
# Enable Printing
services.printing.enable = true;
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
environment.systemPackages = with pkgs; [
git
firefox
libnotify
gawk
gnugrep
sudo
gnome.gnome-software
gnome.gnome-calculator
gnome.gnome-calendar
gnome.gnome-screenshot
flatpak
xdg-desktop-portal
xdg-desktop-portal-gtk
xdg-desktop-portal-gnome
];
services.flatpak.enable = true;
system.autoUpgrade = {
enable = true;
operation = "boot";
dates = "Mon 04:40";
channel = "https://nixos.org/channels/nixos-24.11";
};
nix.gc = {
automatic = true;
dates = "Mon 3:40";
options = "--delete-older-than 30d";
};
systemd.timers."auto-update-config" = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnBootSec = "1m";
OnCalendar = "daily";
Unit = "auto-update-config.service";
};
};
systemd.services."auto-update-config" = {
script = ''
set -eu
# Update nixbook configs
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook reset --hard
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook clean -fd
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook pull
# Flatpak Updates
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.flatpak}/bin/flatpak update --noninteractive --assumeyes
# Notify users if update or reboot hasn't been applied in 25 days
last_gen_time=$(${pkgs.nix}/bin/nix-env --list-generations --profile /nix/var/nix/profiles/system | ${pkgs.gawk}/bin/awk 'END {print $2, $3}')
last_gen_sec=$(date -d "$last_gen_time" +%s)
now=$(date +%s)
days_since_last_gen=$((($now - $last_gen_sec) / 86400))
if [ "$days_since_last_gen" -gt 25 ]; then
sessions=$(loginctl list-sessions --no-legend | ${pkgs.gawk}/bin/awk '{print $1}')
for session in $sessions; do
user=$(loginctl show-session "$session" -p Name | cut -d'=' -f2)
${pkgs.sudo}/bin/sudo -u "$user" "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u "$user")/bus" ${pkgs.libnotify}/bin/notify-send "System has not been updated recently" "Please run Update and Reboot or Update and Shutdown from the Start Menu under Administration."
done
else
uptime_seconds=$(cat /proc/uptime | ${pkgs.gawk}/bin/awk '{print $1}' | cut -d. -f1)
days=$((uptime_seconds / 86400))
if [ "$days" -gt 25 ]; then
sessions=$(loginctl list-sessions --no-legend | ${pkgs.gawk}/bin/awk '{print $1}')
for session in $sessions; do
user=$(loginctl show-session "$session" -p Name | cut -d'=' -f2)
${pkgs.sudo}/bin/sudo -u "$user" "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u "$user")/bus" ${pkgs.libnotify}/bin/notify-send "Please reboot to apply updates" "Updates have already been downloaded and installed. Simply reboot to apply these updates."
done
fi
fi
'';
serviceConfig = {
Type = "oneshot";
User = "root";
};
wantedBy = [ "multi-user.target" ]; # Ensure the service starts after rebuild
};
}

94
base_lite.nix Normal file
View File

@ -0,0 +1,94 @@
{ config, pkgs, ... }:
{
zramSwap.enable = true;
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Cinnamon Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.cinnamon.enable = true;
xdg.portal.enable = true;
environment.systemPackages = with pkgs; [
git
firefox
libnotify
gawk
sudo
gnome.gnome-calculator
gnome.gnome-calendar
gnome.gnome-screenshot
];
system.autoUpgrade = {
enable = true;
operation = "boot";
dates = "Mon 04:40";
channel = "https://nixos.org/channels/nixos-24.11";
};
nix.gc = {
automatic = true;
dates = "Mon 3:40";
options = "--delete-older-than 14d";
};
systemd.timers."auto-update-config" = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnBootSec = "1m";
OnCalendar = "daily";
Unit = "auto-update-config.service";
};
};
systemd.services."auto-update-config" = {
script = ''
set -eu
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook reset --hard
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook clean -fd
${pkgs.coreutils-full}/bin/nice -n 19 ${pkgs.util-linux}/bin/ionice -c 3 ${pkgs.git}/bin/git -C /etc/nixbook pull
# Get the timestamp of the current generation
last_gen_time=$(${pkgs.nix}/bin/nix-env --list-generations --profile /nix/var/nix/profiles/system | ${pkgs.gawk}/bin/awk 'END {print $2, $3}')
# Convert the timestamp to seconds since epoch
last_gen_sec=$(date -d "$last_gen_time" +%s)
# Get the current time in seconds since epoch
now=$(date +%s)
# Calculate the difference in days
days_since_last_gen=$((($now - $last_gen_sec) / 86400))
if [ "$days_since_last_gen" -gt 25 ]; then
sessions=$(loginctl list-sessions --no-legend | ${pkgs.gawk}/bin/awk '{print $1}')
for session in $sessions; do
user=$(loginctl show-session "$session" -p Name | cut -d'=' -f2)
${pkgs.sudo}/bin/sudo -u "$user" "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u "$user")/bus" ${pkgs.libnotify}/bin/notify-send "System has not been updated recently" "Please run Update and Reboot or Update and Shutdown from the Start Menu under Administration."
done
else
uptime_seconds=$(cat /proc/uptime | ${pkgs.gawk}/bin/awk '{print $1}' | cut -d. -f1)
days=$((uptime_seconds / 86400))
if [ "$days" -gt 25 ]; then
sessions=$(loginctl list-sessions --no-legend | ${pkgs.gawk}/bin/awk '{print $1}')
for session in $sessions; do
user=$(loginctl show-session "$session" -p Name | cut -d'=' -f2)
${pkgs.sudo}/bin/sudo -u "$user" "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u "$user")/bus" ${pkgs.libnotify}/bin/notify-send "Please reboot to apply updates" "Updates have already been downloaded and installed. Simply reboot to apply these updates."
done
fi
fi
'';
serviceConfig = {
Type = "oneshot";
User = "root";
};
wantedBy = [ "multi-user.target" ]; # Ensure the service starts after rebuild
};
}

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Powerwash
Comment=Run powerwash script
Exec=gnome-terminal -- /etc/nixbook/powerwash.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Update and Reboot
Comment=Run update and reboot script
Exec=gnome-terminal -- /etc/nixbook/update.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Update and Shut Down
Comment=Run update and shut down script
Exec=gnome-terminal -- /etc/nixbook/update_shutdown.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Powerwash
Comment=Run powerwash script
Exec=gnome-terminal -- /etc/nixbook/powerwash_lite.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Update and Reboot
Comment=Run update and reboot script
Exec=gnome-terminal -- /etc/nixbook/update_lite.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1,9 @@
[Desktop Entry]
Version=1.0
Name=Update and Shut Down
Comment=Run update and shut down script
Exec=gnome-terminal -- /etc/nixbook/update_shutdown_lite.sh
Icon=utilities-terminal
Terminal=true
Type=Application
Categories=System;Utility;

View File

@ -0,0 +1 @@
org.gnome.Terminal.desktop

View File

@ -0,0 +1,62 @@
{
"section1": {
"type": "section",
"description": "Display"
},
"show-events": {
"type": "switch",
"default": true,
"description": "Show calendar events",
"tooltip": "Check this to display events in the calendar.",
"value": true
},
"show-week-numbers": {
"type": "switch",
"default": false,
"description": "Show week numbers in calendar",
"tooltip": "Check this to show week numbers in the calendar.",
"value": false
},
"use-custom-format": {
"type": "switch",
"default": false,
"description": "Use a custom date format",
"tooltip": "Check this to define a custom format for the date in the calendar applet.",
"value": false
},
"custom-format": {
"type": "entry",
"default": "%A, %B %e, %H:%M",
"description": "Date format",
"dependency": "use-custom-format",
"tooltip": "Set your custom format here.",
"value": "%A, %B %e, %H:%M"
},
"custom-tooltip-format": {
"type": "entry",
"default": "%A, %B %e, %H:%M",
"description": "Date format for tooltip",
"dependency": "use-custom-format",
"tooltip": "Set your custom tooltip format here.",
"value": "%A, %B %e, %H:%M"
},
"format-button": {
"type": "button",
"description": "Show information on date format syntax",
"dependency": "use-custom-format",
"callback": "on_custom_format_button_pressed",
"tooltip": "Click this button to know more about the syntax for date formats."
},
"section2": {
"type": "section",
"description": "Keyboard shortcuts"
},
"keyOpen": {
"type": "keybinding",
"description": "Show calendar",
"default": "<Super>c",
"tooltip": "Set keybinding(s) to show the calendar.",
"value": "<Super>c"
},
"__md5__": "de90b5cca13fa5a4289009477b98b2f7"
}

View File

@ -0,0 +1,82 @@
{
"head": {
"type": "header",
"description": "Settings"
},
"click-action": {
"type": "combobox",
"description": "Click action",
"default": "show_desktop",
"options": {
"Show the desktop": "show_desktop",
"Show the desklets": "show_desklets",
"Show the workspace selector (Expo)": "show_expo",
"Show the window selector (Scale)": "show_scale"
},
"value": "show_desktop"
},
"middle-click-action": {
"type": "combobox",
"description": "Middle click action",
"default": "show_desklets",
"options": {
"Show the desktop": "show_desktop",
"Show the desklets": "show_desklets",
"Show the workspace selector (Expo)": "show_expo",
"Show the window selector (Scale)": "show_scale"
},
"value": "show_desklets"
},
"scroll-behavior": {
"type": "combobox",
"default": "none",
"description": "Scroll wheel behavior",
"options": {
"Nothing": "nothing",
"Switch workspaces": "normal",
"Switch workspaces (reversed)": "reversed"
},
"value": "none"
},
"peek-at-desktop": {
"type": "switch",
"default": false,
"description": "Peek at the desktop on hover",
"tooltip": "Peek at the desktop when hovering the applet",
"value": false
},
"peek-blur": {
"type": "switch",
"default": false,
"dependency": "peek-at-desktop",
"description": "Blur effect",
"tooltip": "Blur windows when peeking at the desktop",
"value": false
},
"peek-delay": {
"type": "spinbutton",
"default": 400,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "peek-at-desktop",
"description": "Hover delay",
"tooltip": "Delay before Peek shows desktop",
"value": 400
},
"peek-opacity": {
"type": "scale",
"default": 5,
"units": "%",
"digits": 0,
"min": 0,
"max": 100,
"step": 5,
"dependency": "peek-at-desktop",
"description": "Window opacity",
"tooltip": "Change the opacity of windows when peeking at the desktop",
"value": 5
},
"__md5__": "2a3b4c4bb5c6859baf3469c66fad8322"
}

View File

@ -0,0 +1,13 @@
{
"head": {
"type": "header",
"description": "Settings"
},
"show-full-uri": {
"type": "switch",
"default": false,
"description": "Display full paths in the list",
"value": false
},
"__md5__": "47cfb84ecf716b6b4756ccdac7f369e4"
}

View File

@ -0,0 +1,355 @@
{
"layout": {
"type": "layout",
"pages": [
"generalPage",
"panelPage",
"thumbnailsPage",
"contextMenuPage"
],
"generalPage": {
"type": "page",
"title": "General",
"sections": [
"generalSection",
"hotKeysSection"
]
},
"panelPage": {
"type": "page",
"title": "Panel",
"sections": [
"appButtonsSection"
]
},
"thumbnailsPage": {
"type": "page",
"title": "Thumbnails",
"sections": [
"thumbnailsSection",
"hoverPeekSection"
]
},
"contextMenuPage": {
"type": "page",
"title": "Context Menu",
"sections": [
"contextMenuSection"
]
},
"generalSection": {
"type": "section",
"title": "Behavior",
"keys": [
"group-apps",
"scroll-behavior",
"left-click-action",
"middle-click-action",
"show-all-workspaces"
]
},
"appButtonsSection": {
"type": "section",
"title": "Application Buttons",
"keys": [
"title-display",
"launcher-animation-effect",
"number-display",
"pinned-apps",
"enable-app-button-dragging"
]
},
"hotKeysSection": {
"type": "section",
"title": "Hot Keys",
"keys": [
"cycleMenusHotkey",
"show-apps-order-hotkey",
"show-apps-order-timeout",
"super-num-hotkeys"
]
},
"thumbnailsSection": {
"type": "section",
"title": "Thumbnails",
"keys": [
"thumbnail-scroll-behavior",
"show-thumbnails",
"animate-thumbnails",
"vertical-thumbnails",
"sort-thumbnails",
"highlight-last-focused-thumbnail",
"onclick-thumbnails",
"thumbnail-timeout",
"thumbnail-size"
]
},
"hoverPeekSection": {
"type": "section",
"title": "Hover Peek",
"keys": [
"enable-hover-peek",
"hover-peek-time-in",
"hover-peek-time-out",
"hover-peek-opacity"
]
},
"contextMenuSection": {
"type": "section",
"title": "",
"keys": [
"show-recent",
"autostart-menu-item",
"monitor-move-all-windows"
]
}
},
"number-display": {
"type": "checkbox",
"default": true,
"description": "Show window count numbers",
"value": true
},
"title-display": {
"type": "combobox",
"default": 1,
"description": "Button label",
"options": {
"None": 1,
"Application name": 2,
"Window title": 3,
"Window title (only for the focused window)": 4
},
"value": 1
},
"scroll-behavior": {
"type": "combobox",
"default": 1,
"description": "Mouse wheel scroll action",
"options": {
"None": 1,
"Cycle apps": 2,
"Cycle windows": 3
},
"value": 1
},
"left-click-action": {
"type": "combobox",
"default": 2,
"description": "Left click action",
"options": {
"None": 1,
"Toggle activation of last focused window": 2,
"Cycle windows": 3
},
"value": 2
},
"middle-click-action": {
"type": "combobox",
"default": 3,
"description": "Middle click action",
"options": {
"None": 1,
"Launch new app instance": 2,
"Close last focused window in group": 3
},
"value": 3
},
"pinned-apps": {
"type": "generic",
"default": [
"nemo.desktop",
"firefox.desktop",
"org.gnome.Terminal.desktop"
],
"value": [
"google-chrome.desktop",
"com.google.Chrome.desktop:flatpak"
]
},
"group-apps": {
"type": "checkbox",
"default": true,
"description": "Group windows by application",
"value": true
},
"show-all-workspaces": {
"type": "checkbox",
"default": false,
"description": "Show windows from all workspaces",
"value": false
},
"enable-app-button-dragging": {
"type": "checkbox",
"default": true,
"description": "Enable app button dragging",
"value": true
},
"launcher-animation-effect": {
"type": "combobox",
"default": 3,
"description": "Launcher animation",
"options": {
"None": 1,
"Fade": 2,
"Scale": 3
},
"value": 3
},
"cycleMenusHotkey": {
"type": "keybinding",
"default": "",
"description": "Global hotkey for cycling through thumbnail menus",
"value": ""
},
"show-apps-order-hotkey": {
"type": "keybinding",
"default": "<Super>grave",
"description": "Global hotkey to show the order of apps",
"value": "<Super>grave"
},
"show-apps-order-timeout": {
"type": "spinbutton",
"default": 2500,
"min": 100,
"max": 10000,
"step": 10,
"units": "milliseconds",
"description": "Duration of the apps order display on hotkey press",
"value": 2500
},
"super-num-hotkeys": {
"type": "checkbox",
"default": true,
"description": "Enable Super+<number> shortcut to switch/open apps",
"value": true
},
"thumbnail-timeout": {
"dependency": "!onclick-thumbnails",
"type": "combobox",
"default": 250,
"description": "Delay before showing thumbnails",
"options": {
"50 ms": 50,
"250 ms": 250,
"500 ms": 500
},
"value": 250
},
"thumbnail-size": {
"type": "combobox",
"default": 6,
"description": "Thumbnail size",
"options": {
"Small": 3,
"Medium": 6,
"Large": 9,
"Largest": 12
},
"value": 6
},
"thumbnail-scroll-behavior": {
"type": "checkbox",
"default": false,
"description": "Cycle windows on mouse wheel scroll",
"value": false
},
"show-thumbnails": {
"type": "checkbox",
"default": true,
"description": "Show thumbnails",
"value": true
},
"animate-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Animate thumbnails",
"value": false
},
"vertical-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Enable vertical thumbnails",
"value": false
},
"sort-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Sort thumbnails according to the last focused windows",
"value": false
},
"highlight-last-focused-thumbnail": {
"type": "checkbox",
"default": true,
"description": "Highlight the thumbnail of the last focused window",
"value": true
},
"onclick-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Click to show thumbnails",
"value": false
},
"show-recent": {
"type": "checkbox",
"default": true,
"description": "Show recent items",
"value": true
},
"autostart-menu-item": {
"type": "checkbox",
"default": false,
"description": "Show autostart option",
"value": false
},
"monitor-move-all-windows": {
"type": "checkbox",
"default": true,
"description": "Apply the monitor move option to all windows",
"tooltip": "When clicking \"Move to monitor\" in the context menu, this option will move all of an app's windows instead of just the last focused window from the app.",
"value": true
},
"enable-hover-peek": {
"type": "checkbox",
"default": true,
"description": "Show the window when hovering its thumbnail",
"value": true
},
"hover-peek-time-in": {
"dependency": "enable-hover-peek",
"type": "combobox",
"default": 300,
"description": "Window fade-in time",
"options": {
"150 ms": 150,
"300 ms": 300,
"450 ms": 450
},
"value": 300
},
"hover-peek-time-out": {
"dependency": "enable-hover-peek",
"type": "combobox",
"default": 0,
"description": "Window fade-out time",
"options": {
"None": 0,
"150 ms": 150,
"300 ms": 300,
"450 ms": 450
},
"value": 0
},
"hover-peek-opacity": {
"dependency": "enable-hover-peek",
"type": "spinbutton",
"default": 100,
"min": 0,
"max": 100,
"step": 1,
"units": "percent",
"description": "Window opacity",
"value": 100
},
"__md5__": "6f73ea938aeb5481595a809eb6cbe8e3"
}

View File

@ -0,0 +1,263 @@
{
"layout": {
"type": "layout",
"pages": [
"panel",
"menu"
],
"panel": {
"type": "page",
"title": "Panel",
"sections": [
"panel-appear",
"panel-behave"
]
},
"menu": {
"type": "page",
"title": "Menu",
"sections": [
"menu-layout",
"menu-behave"
]
},
"panel-appear": {
"type": "section",
"title": "Appearance",
"keys": [
"menu-custom",
"menu-icon",
"menu-icon-size",
"menu-label"
]
},
"panel-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"overlay-key",
"activate-on-hover",
"hover-delay",
"force-show-panel",
"enable-animation"
]
},
"menu-layout": {
"type": "section",
"title": "Layout and content",
"keys": [
"show-category-icons",
"category-icon-size",
"show-application-icons",
"application-icon-size",
"favbox-show",
"fav-icon-size",
"show-places",
"show-recents",
"menu-editor-button",
"reset-menu-size-button"
]
},
"menu-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"category-hover",
"enable-autoscroll",
"search-filesystem"
]
}
},
"overlay-key": {
"type": "keybinding",
"description": "Keyboard shortcut to open and close the menu",
"default": "Super_L::Super_R",
"value": "Super_L::Super_R"
},
"menu-custom": {
"type": "switch",
"default": false,
"description": "Use a custom icon and label",
"tooltip": "Check this to specify a custom icon and label",
"value": true
},
"menu-icon": {
"type": "iconfilechooser",
"default": "cinnamon-symbolic",
"description": "Icon",
"tooltip": "Select an icon to show in the panel.",
"default_icon": "cinnamon-symbolic",
"dependency": "menu-custom",
"value": "nix-snowflake-white"
},
"menu-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 96,
"step": 1,
"units": "px",
"description": "Icon size",
"dependency": "menu-custom",
"value": 24.0
},
"menu-label": {
"type": "entry",
"default": "Menu",
"description": "Text",
"tooltip": "Enter custom text to show in the panel.",
"dependency": "menu-custom",
"value": "Start"
},
"show-category-icons": {
"type": "switch",
"default": true,
"description": "Show category icons",
"tooltip": "Choose whether or not to show icons on categories.",
"value": false
},
"category-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Categories icon size",
"dependency": "show-category-icons",
"value": 22
},
"show-application-icons": {
"type": "switch",
"default": true,
"description": "Show application icons",
"tooltip": "Choose whether or not to show icons on applications.",
"value": true
},
"application-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Applications icon size",
"dependency": "show-application-icons",
"value": 22
},
"favbox-show": {
"type": "switch",
"default": true,
"description": "Show favorites and session buttons",
"tooltip": "Choose whether or not to show the left pane of the menu.",
"value": true
},
"fav-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 64,
"step": 1,
"units": "px",
"description": "Favorites icon size",
"dependency": "favbox-show",
"value": 32
},
"show-favorites": {
"type": "switch",
"default": true,
"description": "Show favorites",
"tooltip": "Choose whether or not to show favorite files in the menu.",
"value": true
},
"show-places": {
"type": "switch",
"default": true,
"description": "Show bookmarks and places",
"tooltip": "Choose whether or not to show bookmarks and places in the menu.",
"value": false
},
"show-recents": {
"type": "switch",
"default": true,
"description": "Show recents",
"tooltip": "Choose whether or not to show recents in the menu.",
"value": false
},
"category-hover": {
"type": "switch",
"default": true,
"description": "Change categories on hover",
"tooltip": "Choose whether or not to change categories by hovering.",
"value": false
},
"enable-autoscroll": {
"type": "switch",
"default": true,
"description": "Enable autoscrolling in application list",
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.",
"value": false
},
"search-filesystem": {
"type": "switch",
"default": false,
"description": "Enable filesystem path entry in search box",
"tooltip": "Allows path entry in the menu search box.",
"value": false
},
"force-show-panel": {
"type": "switch",
"default": true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).",
"value": true
},
"activate-on-hover": {
"type": "switch",
"default": false,
"description": "Open the menu when I move my mouse over it",
"tooltip": "Enable opening the menu when the mouse enters the applet",
"value": false
},
"hover-delay": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "activate-on-hover",
"description": "Menu hover delay",
"tooltip": "Delay before the menu opens when hovered",
"value": 0
},
"enable-animation": {
"type": "switch",
"default": false,
"description": "Use menu animations",
"tooltip": "Allow the menu to animate on open and close",
"value": false
},
"menu-editor-button": {
"type": "button",
"description": "Open the menu editor",
"callback": "_launch_editor",
"tooltip": "Press this button to customize your menu entries."
},
"popup-width": {
"type": "generic",
"default": 590,
"value": 590
},
"popup-height": {
"type": "generic",
"default": 515,
"value": 515
},
"reset-menu-size-button": {
"type": "button",
"description": "Restore the menu to its original size",
"callback": "_reset_menu_size"
},
"__md5__": "4795fe5ccdb24e51e3d4434908c26bd5"
}

View File

@ -0,0 +1,14 @@
{
"section1": {
"type": "section",
"description": "Menu"
},
"keyOpen": {
"type": "keybinding",
"description": "Show menu",
"default": "<Shift><Super>n",
"tooltip": "Set keybinding(s) to show the network applet menu.",
"value": "<Shift><Super>n"
},
"__md5__": "976b46e8430522899e7fe34f2abfee76"
}

View File

@ -0,0 +1,58 @@
{
"section1": {
"type": "section",
"description": "Behavior"
},
"ignoreTransientNotifications": {
"type": "switch",
"default": true,
"description": "Ignore transient notifications",
"tooltip": "Check this to ignore transient notifications.",
"value": true
},
"section2": {
"type": "section",
"description": "Display"
},
"showEmptyTray": {
"type": "switch",
"default": false,
"description": "Show empty tray",
"tooltip": "Check this to show the tray even when there are no new notifications.",
"value": false
},
"showNotificationCount": {
"type": "switch",
"default": true,
"description": "Show the number of notifications",
"value": true
},
"section3": {
"type": "section",
"description": "Keyboard shortcuts"
},
"keyOpen": {
"type": "keybinding",
"description": "Show notifications",
"default": "<Super>n",
"tooltip": "Set keybinding(s) to show the notification popup menu.",
"value": "<Super>n"
},
"keyClear": {
"type": "keybinding",
"description": "Clear notifications",
"default": "<Shift><Super>c",
"tooltip": "Set keybinding(s) to clear all notifications.",
"value": "<Shift><Super>c"
},
"section4": {
"type": "section",
"description": ""
},
"btnSystemSettings": {
"type": "button",
"description": "Open notification settings",
"callback": "on_btn_open_system_settings_clicked"
},
"__md5__": "cb9ad336b2e360509f8ba388e1d19b8f"
}

View File

@ -0,0 +1,22 @@
{
"labelinfo": {
"type": "combobox",
"description": "Display",
"default": "nothing",
"options": {
"Show percentage": "percentage",
"Show time remaining": "time",
"Show percentage and time remaining": "percentage_time",
"Hide label": "nothing"
},
"value": "percentage"
},
"showmulti": {
"type": "switch",
"default": false,
"description": "Always show all batteries",
"tooltip": "Check this to always show multiple batteries in the panel, regardless of whether one of them is marked primary.",
"value": false
},
"__md5__": "db29025b0930e93063f745d0adcc675a"
}

View File

@ -0,0 +1,19 @@
{
"section1": {
"type": "section",
"description": "Appearance"
},
"show-icon": {
"type": "radiogroup",
"default": "printers",
"description": "Show printer icon",
"options": {
"Always": "always",
"When printers exist": "printers",
"When printing": "jobs"
},
"tooltip": "Choose when to show the printer icon in the panel",
"value": "printers"
},
"__md5__": "93e5a8d56ccfdbf949efa8b7e5b6ef9d"
}

View File

@ -0,0 +1,116 @@
{
"section1": {
"type": "section",
"description": "Menu"
},
"playerControl": {
"type": "switch",
"default": true,
"description": "Control Players",
"value": true
},
"extendedPlayerControl": {
"type": "switch",
"default": false,
"description": "Show Loop and Shuffle controls",
"dependency": "playerControl",
"value": false
},
"keyOpen": {
"type": "keybinding",
"description": "Show menu",
"default": "<Shift><Super>s",
"tooltip": "Set keybinding(s) to show the sound applet menu.",
"value": "<Shift><Super>s"
},
"_knownPlayers": {
"type": "generic",
"default": [
"banshee",
"vlc",
"rhythmbox"
],
"value": [
"banshee",
"vlc",
"rhythmbox"
]
},
"section2": {
"type": "section",
"description": "Panel"
},
"showtrack": {
"type": "switch",
"default": false,
"description": "Show song information on the panel",
"dependency": "playerControl",
"value": false
},
"truncatetext": {
"type": "spinbutton",
"default": 30,
"min": 5,
"max": 512,
"units": "characters",
"step": 1,
"description": "Limit song information to",
"dependency": "showtrack",
"value": 30
},
"middleClickAction": {
"type": "combobox",
"default": "mute",
"options": {
"Toggle Mute": "mute",
"Toggle Mute output": "out_mute",
"Toggle Mute input": "in_mute",
"Toggle Play / Pause": "player"
},
"description": "Action on middle click",
"value": "mute"
},
"horizontalScroll": {
"type": "switch",
"default": false,
"description": "Use horizontal scrolling to move between tracks",
"dependency": "playerControl",
"value": false
},
"showalbum": {
"type": "switch",
"default": false,
"description": "Show album art as icon",
"dependency": "playerControl",
"value": false
},
"hideSystray": {
"type": "switch",
"description": "Hide system tray icons for compatible players",
"default": true,
"value": true
},
"section3": {
"type": "section",
"description": "Tooltip"
},
"tooltipShowVolume": {
"type": "switch",
"default": true,
"description": "Show volume in tooltip",
"value": true
},
"tooltipShowPlayer": {
"type": "switch",
"default": false,
"description": "Show player in tooltip",
"value": false
},
"tooltipShowArtistTitle": {
"type": "switch",
"default": false,
"description": "Show song artist and title in tooltip",
"value": false
},
"__md5__": "cd7a99af6fce1f04852ac27d13a3bf55"
}

BIN
config/config/dconf/user Normal file

Binary file not shown.

View File

@ -0,0 +1,53 @@
Graphics Backend used: svp
Passed Tests: 67
Quirky Tests: 35
Failed Tests: 1
Skipped Tests: 6
---Name of the tests that failed---
testDrawInvertN50WithRectangle
---Name of the tests that were Quirky---
testDrawRectWithLine
testDrawRectWithPolygon
testDrawRectWithPolyLine
testDrawRectWithPolyPolygon
testDrawRectWithPolyPolygonB2D
testDrawDiamondWithLine
testComplexDrawTransformedBitmap24bpp
testDashedLine
testLinearGradientBorder
testLinearGradientSteps
testRadialGradient
testRadialGradientOfs
testHalfEllipseWithPolyLine
testHalfEllipseAAWithPolyLine
testHalfEllipseAAWithPolyLineB2D
testHalfEllipseWithPolygon
testHalfEllipseAAWithPolygon
testDrawRectangleOnSize1028WithPixel
testDrawRectangleOnSize4096WithPixel
testDrawRectangleOnSize1028WithLine
testDrawRectangleOnSize4096WithLine
testDrawRectangleOnSize1028WithPolyLine
testDrawRectangleOnSize4096WithPolyLine
testDrawRectangleOnSize1028WithPolygon
testDrawRectangleOnSize4096WithPolygon
testDrawRectangleOnSize1028WithPolyLineB2D
testDrawRectangleOnSize4096WithPolyLineB2D
testDrawRectangleOnSize1028WithPolyPolygon
testDrawRectangleOnSize4096WithPolyPolygon
testDrawRectangleOnSize1028WithPolyPolygonB2D
testDrawRectangleOnSize4096WithPolygonPolygonB2D
testDrawOpenPolygonWithPolyLine
testDrawOpenPolygonWithPolygon
testDrawOpenPolygonWithPolyPolygon
testDrawOpenPolygonWithPolyPolygonB2D
---Name of the tests that were Skipped---
testDrawInvertTrackFrameWithRectangle
testDrawBitmap32bpp
testDrawTransformedBitmap32bpp
testDrawBitmapExWithAlpha32bpp
testDrawMask32bpp
testDrawBlend32bpp

Binary file not shown.

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****
Sub Main
End Sub</script:module>

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false"/>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/>
</library:library>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>

Binary file not shown.

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--This is a generated file. Do not alter this file!-->
<java xmlns="http://openoffice.org/2004/java/framework/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<enabled xsi:nil="true"></enabled>
<userClassPath xsi:nil="true"></userClassPath>
<vmParameters xsi:nil="true"></vmParameters>
<jreLocations xsi:nil="true"></jreLocations>
<javaInfo xsi:nil="true"></javaInfo>
</java>

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
50(Build:2)

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<oor:items xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="FirstRun" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="LastTipOfTheDayID" oor:op="fuse"><value>0</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="LastTipOfTheDayShown" oor:op="fuse"><value>20005</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="Persona" oor:op="fuse"><value>no</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="PersonaSettings" oor:op="fuse"><value></value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="ShowTipOfTheDay" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="UseOpenCL" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.Logging/Settings"><node oor:name="unopkg" oor:op="replace"><prop oor:name="LogLevel" oor:op="fuse"><value>2147483647</value></prop><prop oor:name="DefaultHandler" oor:op="fuse"><value>com.sun.star.logging.FileHandler</value></prop><node oor:name="HandlerSettings"><prop oor:name="FileURL" oor:op="fuse"><value>$(userurl)/$(loggername).log</value></prop></node><prop oor:name="DefaultFormatter" oor:op="fuse"><value>com.sun.star.logging.PlainTextFormatter</value></prop><node oor:name="FormatterSettings"></node></node></item>
<item oor:path="/org.openoffice.Office.Recovery/RecoveryInfo"><prop oor:name="SessionData" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.Recovery/RecoveryList"><node oor:name="recovery_item_1" oor:op="remove"/></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['GalleryDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.sheet.SpreadsheetDocument, any, visible</it><it>com.sun.star.drawing.DrawingDocument, any, visible</it><it>com.sun.star.presentation.PresentationDocument, any, visible</it><it>com.sun.star.text.TextDocument, any, visible</it><it>com.sun.star.text.GlobalDocument, any, visible</it><it>com.sun.star.text.WebDocument, any, visible</it><it>com.sun.star.xforms.XMLFormDocument, any, visible</it><it>com.sun.star.sdb.FormDesign, any, visible</it><it>com.sun.star.sdb.TextReportDesign, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['InspectorDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.text.TextDocument, any, visible</it><it>com.sun.star.text.GlobalDocument, any, visible</it><it>com.sun.star.text.WebDocument, any, visible</it><it>com.sun.star.xforms.XMLFormDocument, any, visible</it><it>com.sun.star.sdb.FormDesign, any, visible</it><it>com.sun.star.sdb.TextReportDesign, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['NavigatorDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.sheet.SpreadsheetDocument, any, visible</it><it>com.sun.star.drawing.DrawingDocument, any, visible</it><it>com.sun.star.presentation.PresentationDocument, any, visible</it><it>com.sun.star.text.TextDocument, any, visible</it><it>com.sun.star.text.GlobalDocument, any, visible</it><it>com.sun.star.text.WebDocument, any, visible</it><it>com.sun.star.xforms.XMLFormDocument, any, visible</it><it>com.sun.star.sdb.FormDesign, any, visible</it><it>com.sun.star.sdb.TextReportDesign, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['PropertyDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>any, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['StyleListDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.sheet.SpreadsheetDocument, any, visible</it><it>com.sun.star.drawing.DrawingDocument, any, visible</it><it>com.sun.star.presentation.PresentationDocument, any, visible</it><it>com.sun.star.text.TextDocument, any, visible</it><it>com.sun.star.text.GlobalDocument, any, visible</it><it>com.sun.star.text.WebDocument, any, visible</it><it>com.sun.star.xforms.XMLFormDocument, any, visible</it><it>com.sun.star.sdb.FormDesign, any, visible</it><it>com.sun.star.sdb.TextReportDesign, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['SwManageChangesDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.text.TextDocument, Annotation, visible</it><it>com.sun.star.text.GlobalDocument, Annotation, visible</it><it>com.sun.star.text.WebDocument, Annotation, visible</it><it>com.sun.star.xforms.XMLFormDocument, Annotation, visible</it><it>com.sun.star.sdb.FormDesign, Annotation, visible</it><it>com.sun.star.sdb.TextReportDesign, Annotation, visible</it><it>com.sun.star.text.TextDocument, DrawText, visible</it><it>com.sun.star.text.GlobalDocument, DrawText, visible</it><it>com.sun.star.text.WebDocument, DrawText, visible</it><it>com.sun.star.xforms.XMLFormDocument, DrawText, visible</it><it>com.sun.star.sdb.FormDesign, DrawText, visible</it><it>com.sun.star.sdb.TextReportDesign, DrawText, visible</it><it>com.sun.star.text.TextDocument, Table, visible</it><it>com.sun.star.text.GlobalDocument, Table, visible</it><it>com.sun.star.text.WebDocument, Table, visible</it><it>com.sun.star.xforms.XMLFormDocument, Table, visible</it><it>com.sun.star.sdb.FormDesign, Table, visible</it><it>com.sun.star.sdb.TextReportDesign, Table, visible</it><it>com.sun.star.text.TextDocument, Text, visible</it><it>com.sun.star.text.GlobalDocument, Text, visible</it><it>com.sun.star.text.WebDocument, Text, visible</it><it>com.sun.star.xforms.XMLFormDocument, Text, visible</it><it>com.sun.star.sdb.FormDesign, Text, visible</it><it>com.sun.star.sdb.TextReportDesign, Text, visible</it><it>com.sun.star.text.TextDocument, default, visible</it><it>com.sun.star.text.GlobalDocument, default, visible</it><it>com.sun.star.text.WebDocument, default, visible</it><it>com.sun.star.xforms.XMLFormDocument, default, visible</it><it>com.sun.star.sdb.FormDesign, default, visible</it><it>com.sun.star.sdb.TextReportDesign, default, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/DeckList/org.openoffice.Office.UI.Sidebar:Deck['WriterPageDeck']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.text.TextDocument, any, visible</it><it>com.sun.star.text.GlobalDocument, any, visible</it><it>com.sun.star.text.WebDocument, any, visible</it><it>com.sun.star.xforms.XMLFormDocument, any, visible</it><it>com.sun.star.sdb.FormDesign, any, visible</it><it>com.sun.star.sdb.TextReportDesign, any, visible</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content"><prop oor:name="LastActiveDeck" oor:op="fuse"><value><it>any,PropertyDeck</it><it>com.sun.star.formula.FormulaProperties,ElementsDeck</it><it>com.sun.star.text.TextDocument,PropertyDeck</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/PanelList/org.openoffice.Office.UI.Sidebar:Panel['ParaPropertyPanel']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, 3DObject, hidden, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, 3DObject, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:ParagraphDialog</it><it>com.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.TextDocument, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.GlobalDocument, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.WebDocument, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.FormDesign, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.TextDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.GlobalDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.WebDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.FormDesign, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.TextDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.GlobalDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.WebDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.xforms.XMLFormDocument, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.FormDesign, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.TextReportDesign, Table, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.TextDocument, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.GlobalDocument, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.WebDocument, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.xforms.XMLFormDocument, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.FormDesign, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.TextReportDesign, Text, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.TextDocument, default, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.GlobalDocument, default, visible, .uno:ParagraphDialog</it><it>com.sun.star.text.WebDocument, default, visible, .uno:ParagraphDialog</it><it>com.sun.star.xforms.XMLFormDocument, default, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.FormDesign, default, visible, .uno:ParagraphDialog</it><it>com.sun.star.sdb.TextReportDesign, default, visible, .uno:ParagraphDialog</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/PanelList/org.openoffice.Office.UI.Sidebar:Panel['StylesPropertyPanel']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.text.TextDocument, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.text.GlobalDocument, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.text.WebDocument, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.sdb.FormDesign, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:EditStyle</it><it>com.sun.star.text.TextDocument, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.text.GlobalDocument, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.text.WebDocument, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.sdb.FormDesign, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:EditStyle</it><it>com.sun.star.text.TextDocument, Table, visible, .uno:EditStyle</it><it>com.sun.star.text.GlobalDocument, Table, visible, .uno:EditStyle</it><it>com.sun.star.text.WebDocument, Table, visible, .uno:EditStyle</it><it>com.sun.star.xforms.XMLFormDocument, Table, visible, .uno:EditStyle</it><it>com.sun.star.sdb.FormDesign, Table, visible, .uno:EditStyle</it><it>com.sun.star.sdb.TextReportDesign, Table, visible, .uno:EditStyle</it><it>com.sun.star.text.TextDocument, Text, visible, .uno:EditStyle</it><it>com.sun.star.text.GlobalDocument, Text, visible, .uno:EditStyle</it><it>com.sun.star.text.WebDocument, Text, visible, .uno:EditStyle</it><it>com.sun.star.xforms.XMLFormDocument, Text, visible, .uno:EditStyle</it><it>com.sun.star.sdb.FormDesign, Text, visible, .uno:EditStyle</it><it>com.sun.star.sdb.TextReportDesign, Text, visible, .uno:EditStyle</it><it>com.sun.star.text.TextDocument, default, visible, .uno:EditStyle</it><it>com.sun.star.text.GlobalDocument, default, visible, .uno:EditStyle</it><it>com.sun.star.text.WebDocument, default, visible, .uno:EditStyle</it><it>com.sun.star.xforms.XMLFormDocument, default, visible, .uno:EditStyle</it><it>com.sun.star.sdb.FormDesign, default, visible, .uno:EditStyle</it><it>com.sun.star.sdb.TextReportDesign, default, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:EditStyle</it><it>com.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:EditStyle</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.Sidebar/Content/PanelList/org.openoffice.Office.UI.Sidebar:Panel['TextPropertyPanel']"><prop oor:name="ContextList" oor:op="fuse"><value><it>com.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:CellTextDlg</it><it>com.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:CellTextDlg</it><it>com.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:CellTextDlg</it><it>com.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:FontDialog</it><it>com.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:FontDialog</it><it>com.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:CellTextDlg</it><it>com.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, OutlineText, visible, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, OutlineText, visible, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:FontDialog</it><it>com.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:FontDialog</it><it>com.sun.star.text.TextDocument, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.text.GlobalDocument, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.text.WebDocument, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.sdb.FormDesign, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:FontDialog</it><it>com.sun.star.text.TextDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.text.GlobalDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.text.WebDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.sdb.FormDesign, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:FontDialog</it><it>com.sun.star.text.TextDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.text.GlobalDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.text.WebDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.xforms.XMLFormDocument, Table, visible, .uno:FontDialog</it><it>com.sun.star.sdb.FormDesign, Table, visible, .uno:FontDialog</it><it>com.sun.star.sdb.TextReportDesign, Table, visible, .uno:FontDialog</it><it>com.sun.star.text.TextDocument, Text, visible, .uno:FontDialog</it><it>com.sun.star.text.GlobalDocument, Text, visible, .uno:FontDialog</it><it>com.sun.star.text.WebDocument, Text, visible, .uno:FontDialog</it><it>com.sun.star.xforms.XMLFormDocument, Text, visible, .uno:FontDialog</it><it>com.sun.star.sdb.FormDesign, Text, visible, .uno:FontDialog</it><it>com.sun.star.sdb.TextReportDesign, Text, visible, .uno:FontDialog</it><it>com.sun.star.text.TextDocument, default, visible, .uno:FontDialog</it><it>com.sun.star.text.GlobalDocument, default, visible, .uno:FontDialog</it><it>com.sun.star.text.WebDocument, default, visible, .uno:FontDialog</it><it>com.sun.star.xforms.XMLFormDocument, default, visible, .uno:FontDialog</it><it>com.sun.star.sdb.FormDesign, default, visible, .uno:FontDialog</it><it>com.sun.star.sdb.TextReportDesign, default, visible, .uno:FontDialog</it></value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="ContextActive" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="ContextSensitive" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="DockPos" oor:op="fuse"><value>0,0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Docked" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="DockingArea" oor:op="fuse"><value>0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="HideFromToolbarMenu" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Locked" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="NoClose" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Pos" oor:op="fuse"><value>2147483647,2147483647</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Size" oor:op="fuse"><value>0,0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="SoftClose" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Style" oor:op="fuse"><value>0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']/UIName"><value xml:lang="en-US">Standard</value></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/standardbar']"><prop oor:name="Visible" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="ContextActive" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="ContextSensitive" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="DockPos" oor:op="fuse"><value>0,1</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Docked" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="DockingArea" oor:op="fuse"><value>0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="HideFromToolbarMenu" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Locked" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="NoClose" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Pos" oor:op="fuse"><value>2147483647,2147483647</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Size" oor:op="fuse"><value>0,0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="SoftClose" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Style" oor:op="fuse"><value>0</value></prop></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']/UIName"><value xml:lang="en-US">Formatting</value></item>
<item oor:path="/org.openoffice.Office.UI.WriterWindowState/UIElements/States/org.openoffice.Office.UI.WindowState:WindowStateType['private:resource/toolbar/textobjectbar']"><prop oor:name="Visible" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Office.Views/Windows"><node oor:name="SplitWindow0" oor:op="replace"><prop oor:name="Visible" oor:op="fuse"><value xsi:nil="true"/></prop><node oor:name="UserData"><prop oor:name="UserItem" oor:op="fuse" oor:type="xs:string"><value>V1,2,0</value></prop></node><prop oor:name="WindowState" oor:op="fuse"><value xsi:nil="true"/></prop></node></item>
<item oor:path="/org.openoffice.Office.Views/Windows"><node oor:name="SplitWindow1" oor:op="replace"><prop oor:name="Visible" oor:op="fuse"><value xsi:nil="true"/></prop><node oor:name="UserData"><prop oor:name="UserItem" oor:op="fuse" oor:type="xs:string"><value>V1,2,0</value></prop></node><prop oor:name="WindowState" oor:op="fuse"><value xsi:nil="true"/></prop></node></item>
<item oor:path="/org.openoffice.Office.Views/Windows"><node oor:name="SplitWindow2" oor:op="replace"><prop oor:name="Visible" oor:op="fuse"><value xsi:nil="true"/></prop><node oor:name="UserData"><prop oor:name="UserItem" oor:op="fuse" oor:type="xs:string"><value>V1,2,1,0,10336</value></prop></node><prop oor:name="WindowState" oor:op="fuse"><value xsi:nil="true"/></prop></node></item>
<item oor:path="/org.openoffice.Office.Views/Windows"><node oor:name="SplitWindow3" oor:op="replace"><prop oor:name="Visible" oor:op="fuse"><value xsi:nil="true"/></prop><node oor:name="UserData"><prop oor:name="UserItem" oor:op="fuse" oor:type="xs:string"><value>V1,2,0</value></prop></node><prop oor:name="WindowState" oor:op="fuse"><value xsi:nil="true"/></prop></node></item>
<item oor:path="/org.openoffice.Office.Views/Windows/org.openoffice.Office.Views:WindowType['swriter/10336']/UserData"><prop oor:name="Data" oor:op="fuse" oor:type="xs:string"><value>V2,V,0,AL:(5,16,0/0/49/450,49;450)</value></prop></item>
<item oor:path="/org.openoffice.Office.Views/Windows/org.openoffice.Office.Views:WindowType['swriter/10336']"><prop oor:name="WindowState" oor:op="fuse"><value></value></prop></item>
<item oor:path="/org.openoffice.Office.Views/Windows"><node oor:name="swriter/10365" oor:op="replace"><prop oor:name="Visible" oor:op="fuse"><value xsi:nil="true"/></prop><node oor:name="UserData"><prop oor:name="Data" oor:op="fuse" oor:type="xs:string"><value>V2,V,128</value></prop></node><prop oor:name="WindowState" oor:op="fuse"><value></value></prop></node></item>
<item oor:path="/org.openoffice.Setup/L10N"><prop oor:name="ooLocale" oor:op="fuse"><value>en-US</value></prop></item>
<item oor:path="/org.openoffice.Setup/Office/Factories/org.openoffice.Setup:Factory['com.sun.star.text.TextDocument']"><prop oor:name="ooSetupFactoryWindowAttributes" oor:op="fuse"><value>-482,-110,1921,1009;5;0,32,1441,829;</value></prop></item>
<item oor:path="/org.openoffice.Setup/Office"><prop oor:name="LastCompatibilityCheckID" oor:op="fuse"><value>50(Build:2)</value></prop></item>
<item oor:path="/org.openoffice.Setup/Office"><prop oor:name="OfficeRestartInProgress" oor:op="fuse"><value>false</value></prop></item>
<item oor:path="/org.openoffice.Setup/Office"><prop oor:name="ooSetupInstCompleted" oor:op="fuse"><value>true</value></prop></item>
<item oor:path="/org.openoffice.Setup/Product"><prop oor:name="LastTimeDonateShown" oor:op="fuse"><value>1728504492</value></prop></item>
<item oor:path="/org.openoffice.Setup/Product"><prop oor:name="LastTimeGetInvolvedShown" oor:op="fuse"><value>1728504492</value></prop></item>
<item oor:path="/org.openoffice.Setup/Product"><prop oor:name="ooSetupLastVersion" oor:op="fuse"><value>7.6</value></prop></item>
</oor:items>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,64 @@
[Default Applications]
text/html=google-chrome.desktop
x-scheme-handler/http=google-chrome.desktop
x-scheme-handler/https=google-chrome.desktop
x-scheme-handler/about=google-chrome.desktop
x-scheme-handler/unknown=google-chrome.desktop
inode/directory=nemo.desktop
image/avif=xviewer.desktop
image/bmp=xviewer.desktop
image/gif=xviewer.desktop
image/heif=xviewer.desktop
image/jpeg=xviewer.desktop
image/jpg=xviewer.desktop
image/pjpeg=xviewer.desktop
image/png=xviewer.desktop
image/svg+xml=xviewer.desktop
image/svg+xml-compressed=xviewer.desktop
image/tiff=xviewer.desktop
image/vnd.wap.wbmp=xviewer.desktop
image/webp=xviewer.desktop
image/x-bmp=xviewer.desktop
image/x-gray=xviewer.desktop
image/x-icb=xviewer.desktop
image/x-ico=xviewer.desktop
image/x-pcx=xviewer.desktop
image/x-png=xviewer.desktop
image/x-portable-anymap=xviewer.desktop
image/x-portable-bitmap=xviewer.desktop
image/x-portable-graymap=xviewer.desktop
image/x-portable-pixmap=xviewer.desktop
image/x-xbitmap=xviewer.desktop
image/x-xpixmap=xviewer.desktop
application/pdf=xreader.desktop
text/plain=xed.desktop
[Added Associations]
inode/directory=nemo.desktop;
image/avif=xviewer.desktop;
image/bmp=xviewer.desktop;
image/gif=xviewer.desktop;
image/heif=xviewer.desktop;
image/jpeg=xviewer.desktop;
image/jpg=xviewer.desktop;
image/pjpeg=xviewer.desktop;
image/png=xviewer.desktop;
image/svg+xml=xviewer.desktop;
image/svg+xml-compressed=xviewer.desktop;
image/tiff=xviewer.desktop;
image/vnd.wap.wbmp=xviewer.desktop;
image/webp=xviewer.desktop;
image/x-bmp=xviewer.desktop;
image/x-gray=xviewer.desktop;
image/x-icb=xviewer.desktop;
image/x-ico=xviewer.desktop;
image/x-pcx=xviewer.desktop;
image/x-png=xviewer.desktop;
image/x-portable-anymap=xviewer.desktop;
image/x-portable-bitmap=xviewer.desktop;
image/x-portable-graymap=xviewer.desktop;
image/x-portable-pixmap=xviewer.desktop;
image/x-xbitmap=xviewer.desktop;
image/x-xpixmap=xviewer.desktop;
application/pdf=xreader.desktop;
text/plain=xed.desktop;

View File

@ -0,0 +1,15 @@
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/"
XDG_PUBLICSHARE_DIR="$HOME/"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/"

View File

@ -0,0 +1 @@
en_US

View File

@ -0,0 +1 @@
org.gnome.Terminal.desktop

View File

@ -0,0 +1 @@
org.gnome.Terminal.desktop

View File

@ -0,0 +1,62 @@
{
"section1": {
"type": "section",
"description": "Display"
},
"show-events": {
"type": "switch",
"default": true,
"description": "Show calendar events",
"tooltip": "Check this to display events in the calendar.",
"value": true
},
"show-week-numbers": {
"type": "switch",
"default": false,
"description": "Show week numbers in calendar",
"tooltip": "Check this to show week numbers in the calendar.",
"value": false
},
"use-custom-format": {
"type": "switch",
"default": false,
"description": "Use a custom date format",
"tooltip": "Check this to define a custom format for the date in the calendar applet.",
"value": false
},
"custom-format": {
"type": "entry",
"default": "%A, %B %e, %H:%M",
"description": "Date format",
"dependency": "use-custom-format",
"tooltip": "Set your custom format here.",
"value": "%A, %B %e, %H:%M"
},
"custom-tooltip-format": {
"type": "entry",
"default": "%A, %B %e, %H:%M",
"description": "Date format for tooltip",
"dependency": "use-custom-format",
"tooltip": "Set your custom tooltip format here.",
"value": "%A, %B %e, %H:%M"
},
"format-button": {
"type": "button",
"description": "Show information on date format syntax",
"dependency": "use-custom-format",
"callback": "on_custom_format_button_pressed",
"tooltip": "Click this button to know more about the syntax for date formats."
},
"section2": {
"type": "section",
"description": "Keyboard shortcuts"
},
"keyOpen": {
"type": "keybinding",
"description": "Show calendar",
"default": "<Super>c",
"tooltip": "Set keybinding(s) to show the calendar.",
"value": "<Super>c"
},
"__md5__": "de90b5cca13fa5a4289009477b98b2f7"
}

View File

@ -0,0 +1,82 @@
{
"head": {
"type": "header",
"description": "Settings"
},
"click-action": {
"type": "combobox",
"description": "Click action",
"default": "show_desktop",
"options": {
"Show the desktop": "show_desktop",
"Show the desklets": "show_desklets",
"Show the workspace selector (Expo)": "show_expo",
"Show the window selector (Scale)": "show_scale"
},
"value": "show_desktop"
},
"middle-click-action": {
"type": "combobox",
"description": "Middle click action",
"default": "show_desklets",
"options": {
"Show the desktop": "show_desktop",
"Show the desklets": "show_desklets",
"Show the workspace selector (Expo)": "show_expo",
"Show the window selector (Scale)": "show_scale"
},
"value": "show_desklets"
},
"scroll-behavior": {
"type": "combobox",
"default": "none",
"description": "Scroll wheel behavior",
"options": {
"Nothing": "nothing",
"Switch workspaces": "normal",
"Switch workspaces (reversed)": "reversed"
},
"value": "none"
},
"peek-at-desktop": {
"type": "switch",
"default": false,
"description": "Peek at the desktop on hover",
"tooltip": "Peek at the desktop when hovering the applet",
"value": false
},
"peek-blur": {
"type": "switch",
"default": false,
"dependency": "peek-at-desktop",
"description": "Blur effect",
"tooltip": "Blur windows when peeking at the desktop",
"value": false
},
"peek-delay": {
"type": "spinbutton",
"default": 400,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "peek-at-desktop",
"description": "Hover delay",
"tooltip": "Delay before Peek shows desktop",
"value": 400
},
"peek-opacity": {
"type": "scale",
"default": 5,
"units": "%",
"digits": 0,
"min": 0,
"max": 100,
"step": 5,
"dependency": "peek-at-desktop",
"description": "Window opacity",
"tooltip": "Change the opacity of windows when peeking at the desktop",
"value": 5
},
"__md5__": "2a3b4c4bb5c6859baf3469c66fad8322"
}

View File

@ -0,0 +1,13 @@
{
"head": {
"type": "header",
"description": "Settings"
},
"show-full-uri": {
"type": "switch",
"default": false,
"description": "Display full paths in the list",
"value": false
},
"__md5__": "47cfb84ecf716b6b4756ccdac7f369e4"
}

View File

@ -0,0 +1,356 @@
{
"layout": {
"type": "layout",
"pages": [
"generalPage",
"panelPage",
"thumbnailsPage",
"contextMenuPage"
],
"generalPage": {
"type": "page",
"title": "General",
"sections": [
"generalSection",
"hotKeysSection"
]
},
"panelPage": {
"type": "page",
"title": "Panel",
"sections": [
"appButtonsSection"
]
},
"thumbnailsPage": {
"type": "page",
"title": "Thumbnails",
"sections": [
"thumbnailsSection",
"hoverPeekSection"
]
},
"contextMenuPage": {
"type": "page",
"title": "Context Menu",
"sections": [
"contextMenuSection"
]
},
"generalSection": {
"type": "section",
"title": "Behavior",
"keys": [
"group-apps",
"scroll-behavior",
"left-click-action",
"middle-click-action",
"show-all-workspaces"
]
},
"appButtonsSection": {
"type": "section",
"title": "Application Buttons",
"keys": [
"title-display",
"launcher-animation-effect",
"number-display",
"pinned-apps",
"enable-app-button-dragging"
]
},
"hotKeysSection": {
"type": "section",
"title": "Hot Keys",
"keys": [
"cycleMenusHotkey",
"show-apps-order-hotkey",
"show-apps-order-timeout",
"super-num-hotkeys"
]
},
"thumbnailsSection": {
"type": "section",
"title": "Thumbnails",
"keys": [
"thumbnail-scroll-behavior",
"show-thumbnails",
"animate-thumbnails",
"vertical-thumbnails",
"sort-thumbnails",
"highlight-last-focused-thumbnail",
"onclick-thumbnails",
"thumbnail-timeout",
"thumbnail-size"
]
},
"hoverPeekSection": {
"type": "section",
"title": "Hover Peek",
"keys": [
"enable-hover-peek",
"hover-peek-time-in",
"hover-peek-time-out",
"hover-peek-opacity"
]
},
"contextMenuSection": {
"type": "section",
"title": "",
"keys": [
"show-recent",
"autostart-menu-item",
"monitor-move-all-windows"
]
}
},
"number-display": {
"type": "checkbox",
"default": true,
"description": "Show window count numbers",
"value": true
},
"title-display": {
"type": "combobox",
"default": 1,
"description": "Button label",
"options": {
"None": 1,
"Application name": 2,
"Window title": 3,
"Window title (only for the focused window)": 4
},
"value": 1
},
"scroll-behavior": {
"type": "combobox",
"default": 1,
"description": "Mouse wheel scroll action",
"options": {
"None": 1,
"Cycle apps": 2,
"Cycle windows": 3
},
"value": 1
},
"left-click-action": {
"type": "combobox",
"default": 2,
"description": "Left click action",
"options": {
"None": 1,
"Toggle activation of last focused window": 2,
"Cycle windows": 3
},
"value": 2
},
"middle-click-action": {
"type": "combobox",
"default": 3,
"description": "Middle click action",
"options": {
"None": 1,
"Launch new app instance": 2,
"Close last focused window in group": 3
},
"value": 3
},
"pinned-apps": {
"type": "generic",
"default": [
"nemo.desktop",
"firefox.desktop",
"org.gnome.Terminal.desktop"
],
"value": [
"google-chrome.desktop",
"com.google.Chrome.desktop:flatpak",
"firefox.desktop"
]
},
"group-apps": {
"type": "checkbox",
"default": true,
"description": "Group windows by application",
"value": true
},
"show-all-workspaces": {
"type": "checkbox",
"default": false,
"description": "Show windows from all workspaces",
"value": false
},
"enable-app-button-dragging": {
"type": "checkbox",
"default": true,
"description": "Enable app button dragging",
"value": true
},
"launcher-animation-effect": {
"type": "combobox",
"default": 3,
"description": "Launcher animation",
"options": {
"None": 1,
"Fade": 2,
"Scale": 3
},
"value": 3
},
"cycleMenusHotkey": {
"type": "keybinding",
"default": "",
"description": "Global hotkey for cycling through thumbnail menus",
"value": ""
},
"show-apps-order-hotkey": {
"type": "keybinding",
"default": "<Super>grave",
"description": "Global hotkey to show the order of apps",
"value": "<Super>grave"
},
"show-apps-order-timeout": {
"type": "spinbutton",
"default": 2500,
"min": 100,
"max": 10000,
"step": 10,
"units": "milliseconds",
"description": "Duration of the apps order display on hotkey press",
"value": 2500
},
"super-num-hotkeys": {
"type": "checkbox",
"default": true,
"description": "Enable Super+<number> shortcut to switch/open apps",
"value": true
},
"thumbnail-timeout": {
"dependency": "!onclick-thumbnails",
"type": "combobox",
"default": 250,
"description": "Delay before showing thumbnails",
"options": {
"50 ms": 50,
"250 ms": 250,
"500 ms": 500
},
"value": 250
},
"thumbnail-size": {
"type": "combobox",
"default": 6,
"description": "Thumbnail size",
"options": {
"Small": 3,
"Medium": 6,
"Large": 9,
"Largest": 12
},
"value": 6
},
"thumbnail-scroll-behavior": {
"type": "checkbox",
"default": false,
"description": "Cycle windows on mouse wheel scroll",
"value": false
},
"show-thumbnails": {
"type": "checkbox",
"default": true,
"description": "Show thumbnails",
"value": true
},
"animate-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Animate thumbnails",
"value": false
},
"vertical-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Enable vertical thumbnails",
"value": false
},
"sort-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Sort thumbnails according to the last focused windows",
"value": false
},
"highlight-last-focused-thumbnail": {
"type": "checkbox",
"default": true,
"description": "Highlight the thumbnail of the last focused window",
"value": true
},
"onclick-thumbnails": {
"type": "checkbox",
"default": false,
"description": "Click to show thumbnails",
"value": false
},
"show-recent": {
"type": "checkbox",
"default": true,
"description": "Show recent items",
"value": true
},
"autostart-menu-item": {
"type": "checkbox",
"default": false,
"description": "Show autostart option",
"value": false
},
"monitor-move-all-windows": {
"type": "checkbox",
"default": true,
"description": "Apply the monitor move option to all windows",
"tooltip": "When clicking \"Move to monitor\" in the context menu, this option will move all of an app's windows instead of just the last focused window from the app.",
"value": true
},
"enable-hover-peek": {
"type": "checkbox",
"default": true,
"description": "Show the window when hovering its thumbnail",
"value": true
},
"hover-peek-time-in": {
"dependency": "enable-hover-peek",
"type": "combobox",
"default": 300,
"description": "Window fade-in time",
"options": {
"150 ms": 150,
"300 ms": 300,
"450 ms": 450
},
"value": 300
},
"hover-peek-time-out": {
"dependency": "enable-hover-peek",
"type": "combobox",
"default": 0,
"description": "Window fade-out time",
"options": {
"None": 0,
"150 ms": 150,
"300 ms": 300,
"450 ms": 450
},
"value": 0
},
"hover-peek-opacity": {
"dependency": "enable-hover-peek",
"type": "spinbutton",
"default": 100,
"min": 0,
"max": 100,
"step": 1,
"units": "percent",
"description": "Window opacity",
"value": 100
},
"__md5__": "6f73ea938aeb5481595a809eb6cbe8e3"
}

View File

@ -0,0 +1,263 @@
{
"layout": {
"type": "layout",
"pages": [
"panel",
"menu"
],
"panel": {
"type": "page",
"title": "Panel",
"sections": [
"panel-appear",
"panel-behave"
]
},
"menu": {
"type": "page",
"title": "Menu",
"sections": [
"menu-layout",
"menu-behave"
]
},
"panel-appear": {
"type": "section",
"title": "Appearance",
"keys": [
"menu-custom",
"menu-icon",
"menu-icon-size",
"menu-label"
]
},
"panel-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"overlay-key",
"activate-on-hover",
"hover-delay",
"force-show-panel",
"enable-animation"
]
},
"menu-layout": {
"type": "section",
"title": "Layout and content",
"keys": [
"show-category-icons",
"category-icon-size",
"show-application-icons",
"application-icon-size",
"favbox-show",
"fav-icon-size",
"show-places",
"show-recents",
"menu-editor-button",
"reset-menu-size-button"
]
},
"menu-behave": {
"type": "section",
"title": "Behavior",
"keys": [
"category-hover",
"enable-autoscroll",
"search-filesystem"
]
}
},
"overlay-key": {
"type": "keybinding",
"description": "Keyboard shortcut to open and close the menu",
"default": "Super_L::Super_R",
"value": "Super_L::Super_R"
},
"menu-custom": {
"type": "switch",
"default": false,
"description": "Use a custom icon and label",
"tooltip": "Check this to specify a custom icon and label",
"value": true
},
"menu-icon": {
"type": "iconfilechooser",
"default": "cinnamon-symbolic",
"description": "Icon",
"tooltip": "Select an icon to show in the panel.",
"default_icon": "cinnamon-symbolic",
"dependency": "menu-custom",
"value": "nix-snowflake-white"
},
"menu-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 96,
"step": 1,
"units": "px",
"description": "Icon size",
"dependency": "menu-custom",
"value": 24.0
},
"menu-label": {
"type": "entry",
"default": "Menu",
"description": "Text",
"tooltip": "Enter custom text to show in the panel.",
"dependency": "menu-custom",
"value": "Start"
},
"show-category-icons": {
"type": "switch",
"default": true,
"description": "Show category icons",
"tooltip": "Choose whether or not to show icons on categories.",
"value": false
},
"category-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Categories icon size",
"dependency": "show-category-icons",
"value": 22
},
"show-application-icons": {
"type": "switch",
"default": true,
"description": "Show application icons",
"tooltip": "Choose whether or not to show icons on applications.",
"value": true
},
"application-icon-size": {
"type": "spinbutton",
"default": 22,
"min": 16,
"max": 48,
"step": 1,
"units": "px",
"description": "Applications icon size",
"dependency": "show-application-icons",
"value": 22
},
"favbox-show": {
"type": "switch",
"default": true,
"description": "Show favorites and session buttons",
"tooltip": "Choose whether or not to show the left pane of the menu.",
"value": true
},
"fav-icon-size": {
"type": "spinbutton",
"default": 32,
"min": 16,
"max": 64,
"step": 1,
"units": "px",
"description": "Favorites icon size",
"dependency": "favbox-show",
"value": 32
},
"show-favorites": {
"type": "switch",
"default": true,
"description": "Show favorites",
"tooltip": "Choose whether or not to show favorite files in the menu.",
"value": true
},
"show-places": {
"type": "switch",
"default": true,
"description": "Show bookmarks and places",
"tooltip": "Choose whether or not to show bookmarks and places in the menu.",
"value": false
},
"show-recents": {
"type": "switch",
"default": true,
"description": "Show recents",
"tooltip": "Choose whether or not to show recents in the menu.",
"value": false
},
"category-hover": {
"type": "switch",
"default": true,
"description": "Change categories on hover",
"tooltip": "Choose whether or not to change categories by hovering.",
"value": false
},
"enable-autoscroll": {
"type": "switch",
"default": true,
"description": "Enable autoscrolling in application list",
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list.",
"value": false
},
"search-filesystem": {
"type": "switch",
"default": false,
"description": "Enable filesystem path entry in search box",
"tooltip": "Allows path entry in the menu search box.",
"value": false
},
"force-show-panel": {
"type": "switch",
"default": true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden).",
"value": true
},
"activate-on-hover": {
"type": "switch",
"default": false,
"description": "Open the menu when I move my mouse over it",
"tooltip": "Enable opening the menu when the mouse enters the applet",
"value": false
},
"hover-delay": {
"type": "spinbutton",
"default": 0,
"min": 0,
"max": 1000,
"step": 50,
"units": "milliseconds",
"dependency": "activate-on-hover",
"description": "Menu hover delay",
"tooltip": "Delay before the menu opens when hovered",
"value": 0
},
"enable-animation": {
"type": "switch",
"default": false,
"description": "Use menu animations",
"tooltip": "Allow the menu to animate on open and close",
"value": false
},
"menu-editor-button": {
"type": "button",
"description": "Open the menu editor",
"callback": "_launch_editor",
"tooltip": "Press this button to customize your menu entries."
},
"popup-width": {
"type": "generic",
"default": 590,
"value": 590
},
"popup-height": {
"type": "generic",
"default": 515,
"value": 515
},
"reset-menu-size-button": {
"type": "button",
"description": "Restore the menu to its original size",
"callback": "_reset_menu_size"
},
"__md5__": "4795fe5ccdb24e51e3d4434908c26bd5"
}

View File

@ -0,0 +1,14 @@
{
"section1": {
"type": "section",
"description": "Menu"
},
"keyOpen": {
"type": "keybinding",
"description": "Show menu",
"default": "<Shift><Super>n",
"tooltip": "Set keybinding(s) to show the network applet menu.",
"value": "<Shift><Super>n"
},
"__md5__": "976b46e8430522899e7fe34f2abfee76"
}

View File

@ -0,0 +1,58 @@
{
"section1": {
"type": "section",
"description": "Behavior"
},
"ignoreTransientNotifications": {
"type": "switch",
"default": true,
"description": "Ignore transient notifications",
"tooltip": "Check this to ignore transient notifications.",
"value": true
},
"section2": {
"type": "section",
"description": "Display"
},
"showEmptyTray": {
"type": "switch",
"default": false,
"description": "Show empty tray",
"tooltip": "Check this to show the tray even when there are no new notifications.",
"value": false
},
"showNotificationCount": {
"type": "switch",
"default": true,
"description": "Show the number of notifications",
"value": true
},
"section3": {
"type": "section",
"description": "Keyboard shortcuts"
},
"keyOpen": {
"type": "keybinding",
"description": "Show notifications",
"default": "<Super>n",
"tooltip": "Set keybinding(s) to show the notification popup menu.",
"value": "<Super>n"
},
"keyClear": {
"type": "keybinding",
"description": "Clear notifications",
"default": "<Shift><Super>c",
"tooltip": "Set keybinding(s) to clear all notifications.",
"value": "<Shift><Super>c"
},
"section4": {
"type": "section",
"description": ""
},
"btnSystemSettings": {
"type": "button",
"description": "Open notification settings",
"callback": "on_btn_open_system_settings_clicked"
},
"__md5__": "cb9ad336b2e360509f8ba388e1d19b8f"
}

View File

@ -0,0 +1,22 @@
{
"labelinfo": {
"type": "combobox",
"description": "Display",
"default": "nothing",
"options": {
"Show percentage": "percentage",
"Show time remaining": "time",
"Show percentage and time remaining": "percentage_time",
"Hide label": "nothing"
},
"value": "percentage"
},
"showmulti": {
"type": "switch",
"default": false,
"description": "Always show all batteries",
"tooltip": "Check this to always show multiple batteries in the panel, regardless of whether one of them is marked primary.",
"value": false
},
"__md5__": "db29025b0930e93063f745d0adcc675a"
}

View File

@ -0,0 +1,19 @@
{
"section1": {
"type": "section",
"description": "Appearance"
},
"show-icon": {
"type": "radiogroup",
"default": "printers",
"description": "Show printer icon",
"options": {
"Always": "always",
"When printers exist": "printers",
"When printing": "jobs"
},
"tooltip": "Choose when to show the printer icon in the panel",
"value": "printers"
},
"__md5__": "93e5a8d56ccfdbf949efa8b7e5b6ef9d"
}

View File

@ -0,0 +1,135 @@
{
"section1": {
"type": "section",
"description": "Menu"
},
"playerControl": {
"type": "switch",
"default": true,
"description": "Control Players",
"value": true
},
"extendedPlayerControl": {
"type": "switch",
"default": false,
"description": "Show Loop and Shuffle controls",
"dependency": "playerControl",
"value": false
},
"keyOpen": {
"type": "keybinding",
"description": "Show menu",
"default": "<Shift><Super>s",
"tooltip": "Set keybinding(s) to show the sound applet menu.",
"value": "<Shift><Super>s"
},
"alwaysShowMuteInput": {
"type": "switch",
"description": "Always show input switch",
"tooltip": "Always show the 'Mute input' switch in the context menu.",
"default": false,
"value": false
},
"_knownPlayers": {
"type": "generic",
"default": [
"banshee",
"vlc",
"rhythmbox"
],
"value": [
"banshee",
"vlc",
"rhythmbox"
]
},
"section2": {
"type": "section",
"description": "Panel"
},
"showtrack": {
"type": "switch",
"default": false,
"description": "Show song information on the panel",
"dependency": "playerControl",
"value": false
},
"truncatetext": {
"type": "spinbutton",
"default": 30,
"min": 5,
"max": 512,
"units": "characters",
"step": 1,
"description": "Limit song information to",
"dependency": "showtrack",
"value": 30
},
"middleClickAction": {
"type": "combobox",
"default": "mute",
"options": {
"Toggle Mute": "mute",
"Toggle Mute output": "out_mute",
"Toggle Mute input": "in_mute",
"Toggle Play / Pause": "player"
},
"description": "Action on middle click",
"value": "mute"
},
"middleShiftClickAction": {
"type": "combobox",
"default": "in_mute",
"options": {
"Toggle Mute": "mute",
"Toggle Mute output": "out_mute",
"Toggle Mute input": "in_mute",
"Toggle Play / Pause": "player"
},
"description": "Action on shift+middle click",
"value": "in_mute"
},
"horizontalScroll": {
"type": "switch",
"default": false,
"description": "Use horizontal scrolling to move between tracks",
"dependency": "playerControl",
"value": false
},
"showalbum": {
"type": "switch",
"default": false,
"description": "Show album art as icon",
"dependency": "playerControl",
"value": false
},
"hideSystray": {
"type": "switch",
"description": "Hide system tray icons for compatible players",
"default": true,
"value": true
},
"section3": {
"type": "section",
"description": "Tooltip"
},
"tooltipShowVolume": {
"type": "switch",
"default": true,
"description": "Show volume in tooltip",
"value": true
},
"tooltipShowPlayer": {
"type": "switch",
"default": false,
"description": "Show player in tooltip",
"value": false
},
"tooltipShowArtistTitle": {
"type": "switch",
"default": false,
"description": "Show song artist and title in tooltip",
"value": false
},
"__md5__": "ceea7709f6c96376c9f83b9b8ddce0b5"
}

Binary file not shown.

View File

@ -0,0 +1,53 @@
Graphics Backend used: svp
Passed Tests: 67
Quirky Tests: 35
Failed Tests: 1
Skipped Tests: 6
---Name of the tests that failed---
testDrawInvertN50WithRectangle
---Name of the tests that were Quirky---
testDrawRectWithLine
testDrawRectWithPolygon
testDrawRectWithPolyLine
testDrawRectWithPolyPolygon
testDrawRectWithPolyPolygonB2D
testDrawDiamondWithLine
testComplexDrawTransformedBitmap24bpp
testDashedLine
testLinearGradientBorder
testLinearGradientSteps
testRadialGradient
testRadialGradientOfs
testHalfEllipseWithPolyLine
testHalfEllipseAAWithPolyLine
testHalfEllipseAAWithPolyLineB2D
testHalfEllipseWithPolygon
testHalfEllipseAAWithPolygon
testDrawRectangleOnSize1028WithPixel
testDrawRectangleOnSize4096WithPixel
testDrawRectangleOnSize1028WithLine
testDrawRectangleOnSize4096WithLine
testDrawRectangleOnSize1028WithPolyLine
testDrawRectangleOnSize4096WithPolyLine
testDrawRectangleOnSize1028WithPolygon
testDrawRectangleOnSize4096WithPolygon
testDrawRectangleOnSize1028WithPolyLineB2D
testDrawRectangleOnSize4096WithPolyLineB2D
testDrawRectangleOnSize1028WithPolyPolygon
testDrawRectangleOnSize4096WithPolyPolygon
testDrawRectangleOnSize1028WithPolyPolygonB2D
testDrawRectangleOnSize4096WithPolygonPolygonB2D
testDrawOpenPolygonWithPolyLine
testDrawOpenPolygonWithPolygon
testDrawOpenPolygonWithPolyPolygon
testDrawOpenPolygonWithPolyPolygonB2D
---Name of the tests that were Skipped---
testDrawInvertTrackFrameWithRectangle
testDrawBitmap32bpp
testDrawTransformedBitmap32bpp
testDrawBitmapExWithAlpha32bpp
testDrawMask32bpp
testDrawBlend32bpp

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<!--
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****
Sub Main
End Sub</script:module>

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false"/>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="Standard" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/>
</library:library>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:libraries PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "libraries.dtd">
<library:libraries xmlns:library="http://openoffice.org/2000/library" xmlns:xlink="http://www.w3.org/1999/xlink">
<library:library library:name="Standard" library:link="false"/>
</library:libraries>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--This is a generated file. Do not alter this file!-->
<java xmlns="http://openoffice.org/2004/java/framework/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<enabled xsi:nil="true"></enabled>
<userClassPath xsi:nil="true"></userClassPath>
<vmParameters xsi:nil="true"></vmParameters>
<jreLocations xsi:nil="true"></jreLocations>
<javaInfo xsi:nil="true"></javaInfo>
</java>

View File

@ -0,0 +1 @@
50(Build:2)

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<conf:configuration-backend-db xmlns:conf="http://openoffice.org/extensionmanager/configuration-registry/2010"/>

View File

@ -0,0 +1,2 @@
<?xml version="1.0"?>
<help:help-backend-db xmlns:help="http://openoffice.org/extensionmanager/help-registry/2010"/>

Some files were not shown because too many files have changed in this diff Show More