commit fa59125c4eee47880c369f8b728a585688c1ffea Author: Mike Kelly Date: Fri Feb 14 13:06:10 2025 -0800 Initial commit with current state only diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..04204c7 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +config diff --git a/README.md b/README.md new file mode 100644 index 0000000..1d72e78 --- /dev/null +++ b/README.md @@ -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. diff --git a/base.nix b/base.nix new file mode 100644 index 0000000..a3fe82c --- /dev/null +++ b/base.nix @@ -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 + }; +} diff --git a/base_lite.nix b/base_lite.nix new file mode 100644 index 0000000..20082e0 --- /dev/null +++ b/base_lite.nix @@ -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 + }; +} diff --git a/config/applications/powerwash.desktop b/config/applications/powerwash.desktop new file mode 100644 index 0000000..ff703c7 --- /dev/null +++ b/config/applications/powerwash.desktop @@ -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; diff --git a/config/applications/update.desktop b/config/applications/update.desktop new file mode 100644 index 0000000..11b09e5 --- /dev/null +++ b/config/applications/update.desktop @@ -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; diff --git a/config/applications/update_shutdown.desktop b/config/applications/update_shutdown.desktop new file mode 100644 index 0000000..9c75f98 --- /dev/null +++ b/config/applications/update_shutdown.desktop @@ -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; diff --git a/config/applications_lite/powerwash.desktop b/config/applications_lite/powerwash.desktop new file mode 100644 index 0000000..fe9d735 --- /dev/null +++ b/config/applications_lite/powerwash.desktop @@ -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; diff --git a/config/applications_lite/update.desktop b/config/applications_lite/update.desktop new file mode 100644 index 0000000..51ae8ec --- /dev/null +++ b/config/applications_lite/update.desktop @@ -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; diff --git a/config/applications_lite/update_shutdown.desktop b/config/applications_lite/update_shutdown.desktop new file mode 100644 index 0000000..f4c6895 --- /dev/null +++ b/config/applications_lite/update_shutdown.desktop @@ -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; diff --git a/config/config/X-Cinnamon-xdg-terminals.list b/config/config/X-Cinnamon-xdg-terminals.list new file mode 100644 index 0000000..b6e3341 --- /dev/null +++ b/config/config/X-Cinnamon-xdg-terminals.list @@ -0,0 +1 @@ +org.gnome.Terminal.desktop diff --git a/config/config/cinnamon/spices/calendar@cinnamon.org/13.json b/config/config/cinnamon/spices/calendar@cinnamon.org/13.json new file mode 100644 index 0000000..e1901a6 --- /dev/null +++ b/config/config/cinnamon/spices/calendar@cinnamon.org/13.json @@ -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": "c", + "tooltip": "Set keybinding(s) to show the calendar.", + "value": "c" + }, + "__md5__": "de90b5cca13fa5a4289009477b98b2f7" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/cornerbar@cinnamon.org/14.json b/config/config/cinnamon/spices/cornerbar@cinnamon.org/14.json new file mode 100644 index 0000000..12c9abf --- /dev/null +++ b/config/config/cinnamon/spices/cornerbar@cinnamon.org/14.json @@ -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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/favorites@cinnamon.org/9.json b/config/config/cinnamon/spices/favorites@cinnamon.org/9.json new file mode 100644 index 0000000..ed51ca4 --- /dev/null +++ b/config/config/cinnamon/spices/favorites@cinnamon.org/9.json @@ -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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/grouped-window-list@cinnamon.org/2.json b/config/config/cinnamon/spices/grouped-window-list@cinnamon.org/2.json new file mode 100644 index 0000000..1335755 --- /dev/null +++ b/config/config/cinnamon/spices/grouped-window-list@cinnamon.org/2.json @@ -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": "grave", + "description": "Global hotkey to show the order of apps", + "value": "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+ 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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/menu@cinnamon.org/0.json b/config/config/cinnamon/spices/menu@cinnamon.org/0.json new file mode 100644 index 0000000..0a65d07 --- /dev/null +++ b/config/config/cinnamon/spices/menu@cinnamon.org/0.json @@ -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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json b/config/config/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json new file mode 100644 index 0000000..07237ea --- /dev/null +++ b/config/config/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json @@ -0,0 +1,14 @@ +{ + "section1": { + "type": "section", + "description": "Menu" + }, + "keyOpen": { + "type": "keybinding", + "description": "Show menu", + "default": "n", + "tooltip": "Set keybinding(s) to show the network applet menu.", + "value": "n" + }, + "__md5__": "976b46e8430522899e7fe34f2abfee76" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json b/config/config/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json new file mode 100644 index 0000000..428b0ad --- /dev/null +++ b/config/config/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json @@ -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": "n", + "tooltip": "Set keybinding(s) to show the notification popup menu.", + "value": "n" + }, + "keyClear": { + "type": "keybinding", + "description": "Clear notifications", + "default": "c", + "tooltip": "Set keybinding(s) to clear all notifications.", + "value": "c" + }, + "section4": { + "type": "section", + "description": "" + }, + "btnSystemSettings": { + "type": "button", + "description": "Open notification settings", + "callback": "on_btn_open_system_settings_clicked" + }, + "__md5__": "cb9ad336b2e360509f8ba388e1d19b8f" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json b/config/config/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json new file mode 100644 index 0000000..000c9f5 --- /dev/null +++ b/config/config/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json @@ -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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/printers@cinnamon.org/6.json b/config/config/cinnamon/spices/printers@cinnamon.org/6.json new file mode 100644 index 0000000..64eb33f --- /dev/null +++ b/config/config/cinnamon/spices/printers@cinnamon.org/6.json @@ -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" +} \ No newline at end of file diff --git a/config/config/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json b/config/config/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json new file mode 100644 index 0000000..bdd8625 --- /dev/null +++ b/config/config/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json @@ -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": "s", + "tooltip": "Set keybinding(s) to show the sound applet menu.", + "value": "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" +} \ No newline at end of file diff --git a/config/config/dconf/user b/config/config/dconf/user new file mode 100644 index 0000000..0b3a013 Binary files /dev/null and b/config/config/dconf/user differ diff --git a/config/config/libreoffice/4/user/GraphicsRenderTests.log b/config/config/libreoffice/4/user/GraphicsRenderTests.log new file mode 100644 index 0000000..e316ff3 --- /dev/null +++ b/config/config/libreoffice/4/user/GraphicsRenderTests.log @@ -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 diff --git a/config/config/libreoffice/4/user/autotext/mytexts.bau b/config/config/libreoffice/4/user/autotext/mytexts.bau new file mode 100644 index 0000000..2d06487 Binary files /dev/null and b/config/config/libreoffice/4/user/autotext/mytexts.bau differ diff --git a/config/config/libreoffice/4/user/basic/Standard/Module1.xba b/config/config/libreoffice/4/user/basic/Standard/Module1.xba new file mode 100644 index 0000000..3424c16 --- /dev/null +++ b/config/config/libreoffice/4/user/basic/Standard/Module1.xba @@ -0,0 +1,24 @@ + + + +REM ***** BASIC ***** + +Sub Main + +End Sub \ No newline at end of file diff --git a/config/config/libreoffice/4/user/basic/Standard/dialog.xlb b/config/config/libreoffice/4/user/basic/Standard/dialog.xlb new file mode 100644 index 0000000..669529d --- /dev/null +++ b/config/config/libreoffice/4/user/basic/Standard/dialog.xlb @@ -0,0 +1,3 @@ + + + diff --git a/config/config/libreoffice/4/user/basic/Standard/script.xlb b/config/config/libreoffice/4/user/basic/Standard/script.xlb new file mode 100644 index 0000000..67c9503 --- /dev/null +++ b/config/config/libreoffice/4/user/basic/Standard/script.xlb @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config/libreoffice/4/user/basic/dialog.xlc b/config/config/libreoffice/4/user/basic/dialog.xlc new file mode 100644 index 0000000..34064e8 --- /dev/null +++ b/config/config/libreoffice/4/user/basic/dialog.xlc @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config/libreoffice/4/user/basic/script.xlc b/config/config/libreoffice/4/user/basic/script.xlc new file mode 100644 index 0000000..34064e8 --- /dev/null +++ b/config/config/libreoffice/4/user/basic/script.xlc @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config/libreoffice/4/user/config/autotbl.fmt b/config/config/libreoffice/4/user/config/autotbl.fmt new file mode 100644 index 0000000..611ac0d Binary files /dev/null and b/config/config/libreoffice/4/user/config/autotbl.fmt differ diff --git a/config/config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml b/config/config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml new file mode 100644 index 0000000..d18aa9c --- /dev/null +++ b/config/config/libreoffice/4/user/config/javasettings_Linux_X86_64.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/config/config/libreoffice/4/user/database/biblio.odb b/config/config/libreoffice/4/user/database/biblio.odb new file mode 100644 index 0000000..9e70744 Binary files /dev/null and b/config/config/libreoffice/4/user/database/biblio.odb differ diff --git a/config/config/libreoffice/4/user/database/biblio/biblio.dbf b/config/config/libreoffice/4/user/database/biblio/biblio.dbf new file mode 100644 index 0000000..2715f99 Binary files /dev/null and b/config/config/libreoffice/4/user/database/biblio/biblio.dbf differ diff --git a/config/config/libreoffice/4/user/database/biblio/biblio.dbt b/config/config/libreoffice/4/user/database/biblio/biblio.dbt new file mode 100644 index 0000000..0ad4067 Binary files /dev/null and b/config/config/libreoffice/4/user/database/biblio/biblio.dbt differ diff --git a/config/config/libreoffice/4/user/database/evolocal.odb b/config/config/libreoffice/4/user/database/evolocal.odb new file mode 100644 index 0000000..82f486a Binary files /dev/null and b/config/config/libreoffice/4/user/database/evolocal.odb differ diff --git a/config/config/libreoffice/4/user/extensions/buildid b/config/config/libreoffice/4/user/extensions/buildid new file mode 100644 index 0000000..160a9f3 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/buildid @@ -0,0 +1 @@ +50(Build:2) \ No newline at end of file diff --git a/config/config/libreoffice/4/user/extensions/bundled/lastsynchronized b/config/config/libreoffice/4/user/extensions/bundled/lastsynchronized new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/bundled/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/extensions/shared/lastsynchronized b/config/config/libreoffice/4/user/extensions/shared/lastsynchronized new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/shared/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/gallery/sg30.sdv b/config/config/libreoffice/4/user/gallery/sg30.sdv new file mode 100644 index 0000000..fc17dd9 Binary files /dev/null and b/config/config/libreoffice/4/user/gallery/sg30.sdv differ diff --git a/config/config/libreoffice/4/user/gallery/sg30.thm b/config/config/libreoffice/4/user/gallery/sg30.thm new file mode 100644 index 0000000..9bf97d6 Binary files /dev/null and b/config/config/libreoffice/4/user/gallery/sg30.thm differ diff --git a/config/config/libreoffice/4/user/pack/ExtensionInfo.pack b/config/config/libreoffice/4/user/pack/ExtensionInfo.pack new file mode 100644 index 0000000..02b6c98 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/ExtensionInfo.pack differ diff --git a/config/config/libreoffice/4/user/pack/autotext/mytexts.pack b/config/config/libreoffice/4/user/pack/autotext/mytexts.pack new file mode 100644 index 0000000..28991dc Binary files /dev/null and b/config/config/libreoffice/4/user/pack/autotext/mytexts.pack differ diff --git a/config/config/libreoffice/4/user/pack/basic/Standard/Module1.pack b/config/config/libreoffice/4/user/pack/basic/Standard/Module1.pack new file mode 100644 index 0000000..d7944bf Binary files /dev/null and b/config/config/libreoffice/4/user/pack/basic/Standard/Module1.pack differ diff --git a/config/config/libreoffice/4/user/pack/basic/Standard/dialog.pack b/config/config/libreoffice/4/user/pack/basic/Standard/dialog.pack new file mode 100644 index 0000000..db56d38 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/basic/Standard/dialog.pack differ diff --git a/config/config/libreoffice/4/user/pack/basic/Standard/script.pack b/config/config/libreoffice/4/user/pack/basic/Standard/script.pack new file mode 100644 index 0000000..763901c Binary files /dev/null and b/config/config/libreoffice/4/user/pack/basic/Standard/script.pack differ diff --git a/config/config/libreoffice/4/user/pack/basic/dialog.pack b/config/config/libreoffice/4/user/pack/basic/dialog.pack new file mode 100644 index 0000000..275025b Binary files /dev/null and b/config/config/libreoffice/4/user/pack/basic/dialog.pack differ diff --git a/config/config/libreoffice/4/user/pack/basic/script.pack b/config/config/libreoffice/4/user/pack/basic/script.pack new file mode 100644 index 0000000..275025b Binary files /dev/null and b/config/config/libreoffice/4/user/pack/basic/script.pack differ diff --git a/config/config/libreoffice/4/user/pack/config/autotbl.pack b/config/config/libreoffice/4/user/pack/config/autotbl.pack new file mode 100644 index 0000000..c0060a0 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/config/autotbl.pack differ diff --git a/config/config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack b/config/config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack new file mode 100644 index 0000000..7af6b37 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack differ diff --git a/config/config/libreoffice/4/user/pack/database/biblio.pack b/config/config/libreoffice/4/user/pack/database/biblio.pack new file mode 100644 index 0000000..d895355 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/database/biblio.pack differ diff --git a/config/config/libreoffice/4/user/pack/database/biblio/biblio.pack b/config/config/libreoffice/4/user/pack/database/biblio/biblio.pack new file mode 100644 index 0000000..6216fb7 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/database/biblio/biblio.pack differ diff --git a/config/config/libreoffice/4/user/pack/database/evolocal.pack b/config/config/libreoffice/4/user/pack/database/evolocal.pack new file mode 100644 index 0000000..07987aa Binary files /dev/null and b/config/config/libreoffice/4/user/pack/database/evolocal.pack differ diff --git a/config/config/libreoffice/4/user/pack/registrymodifications.pack b/config/config/libreoffice/4/user/pack/registrymodifications.pack new file mode 100644 index 0000000..eae8a23 Binary files /dev/null and b/config/config/libreoffice/4/user/pack/registrymodifications.pack differ diff --git a/config/config/libreoffice/4/user/registrymodifications.xcu b/config/config/libreoffice/4/user/registrymodifications.xcu new file mode 100644 index 0000000..f4536d6 --- /dev/null +++ b/config/config/libreoffice/4/user/registrymodifications.xcu @@ -0,0 +1,67 @@ + + +false +0 +20005 +no + +false +false +2147483647com.sun.star.logging.FileHandler$(userurl)/$(loggername).logcom.sun.star.logging.PlainTextFormatter +false + +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +any, any, visible +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.text.TextDocument, Annotation, visiblecom.sun.star.text.GlobalDocument, Annotation, visiblecom.sun.star.text.WebDocument, Annotation, visiblecom.sun.star.xforms.XMLFormDocument, Annotation, visiblecom.sun.star.sdb.FormDesign, Annotation, visiblecom.sun.star.sdb.TextReportDesign, Annotation, visiblecom.sun.star.text.TextDocument, DrawText, visiblecom.sun.star.text.GlobalDocument, DrawText, visiblecom.sun.star.text.WebDocument, DrawText, visiblecom.sun.star.xforms.XMLFormDocument, DrawText, visiblecom.sun.star.sdb.FormDesign, DrawText, visiblecom.sun.star.sdb.TextReportDesign, DrawText, visiblecom.sun.star.text.TextDocument, Table, visiblecom.sun.star.text.GlobalDocument, Table, visiblecom.sun.star.text.WebDocument, Table, visiblecom.sun.star.xforms.XMLFormDocument, Table, visiblecom.sun.star.sdb.FormDesign, Table, visiblecom.sun.star.sdb.TextReportDesign, Table, visiblecom.sun.star.text.TextDocument, Text, visiblecom.sun.star.text.GlobalDocument, Text, visiblecom.sun.star.text.WebDocument, Text, visiblecom.sun.star.xforms.XMLFormDocument, Text, visiblecom.sun.star.sdb.FormDesign, Text, visiblecom.sun.star.sdb.TextReportDesign, Text, visiblecom.sun.star.text.TextDocument, default, visiblecom.sun.star.text.GlobalDocument, default, visiblecom.sun.star.text.WebDocument, default, visiblecom.sun.star.xforms.XMLFormDocument, default, visiblecom.sun.star.sdb.FormDesign, default, visiblecom.sun.star.sdb.TextReportDesign, default, visible +com.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +any,PropertyDeckcom.sun.star.formula.FormulaProperties,ElementsDeckcom.sun.star.text.TextDocument,PropertyDeck +com.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, default, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:ParagraphDialog +com.sun.star.text.TextDocument, Annotation, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Annotation, visible, .uno:EditStylecom.sun.star.text.WebDocument, Annotation, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Annotation, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:EditStylecom.sun.star.text.TextDocument, DrawText, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, DrawText, visible, .uno:EditStylecom.sun.star.text.WebDocument, DrawText, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, DrawText, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:EditStylecom.sun.star.text.TextDocument, Table, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Table, visible, .uno:EditStylecom.sun.star.text.WebDocument, Table, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Table, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Table, visible, .uno:EditStylecom.sun.star.text.TextDocument, Text, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Text, visible, .uno:EditStylecom.sun.star.text.WebDocument, Text, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Text, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Text, visible, .uno:EditStylecom.sun.star.text.TextDocument, default, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, default, visible, .uno:EditStylecom.sun.star.text.WebDocument, default, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, default, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, default, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, default, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:EditStyle +com.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:FontDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Table, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Table, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Text, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Text, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:FontDialogcom.sun.star.text.TextDocument, default, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:FontDialogcom.sun.star.text.WebDocument, default, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:FontDialog +true +true +0,0 +true +0 +false +true +false +2147483647,2147483647 +0,0 +false +0 +Standard +true +true +true +0,1 +true +0 +false +true +false +2147483647,2147483647 +0,0 +false +0 +Formatting +true +V1,2,0 +V1,2,0 +V1,2,1,0,10336 +V1,2,0 +V2,V,0,AL:(5,16,0/0/49/450,49;450) + +V2,V,128 +en-US +-482,-110,1921,1009;5;0,32,1441,829; +50(Build:2) +false +true +1728504492 +1728504492 +7.6 + diff --git a/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config/mimeapps.list b/config/config/mimeapps.list new file mode 100644 index 0000000..be64304 --- /dev/null +++ b/config/config/mimeapps.list @@ -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; diff --git a/config/config/user-dirs.dirs b/config/config/user-dirs.dirs new file mode 100644 index 0000000..aee4e55 --- /dev/null +++ b/config/config/user-dirs.dirs @@ -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/" diff --git a/config/config/user-dirs.locale b/config/config/user-dirs.locale new file mode 100644 index 0000000..3e0b419 --- /dev/null +++ b/config/config/user-dirs.locale @@ -0,0 +1 @@ +en_US \ No newline at end of file diff --git a/config/config/xdg-terminals.list b/config/config/xdg-terminals.list new file mode 100644 index 0000000..b6e3341 --- /dev/null +++ b/config/config/xdg-terminals.list @@ -0,0 +1 @@ +org.gnome.Terminal.desktop diff --git a/config/config_lite/X-Cinnamon-xdg-terminals.list b/config/config_lite/X-Cinnamon-xdg-terminals.list new file mode 100644 index 0000000..b6e3341 --- /dev/null +++ b/config/config_lite/X-Cinnamon-xdg-terminals.list @@ -0,0 +1 @@ +org.gnome.Terminal.desktop diff --git a/config/config_lite/cinnamon/spices/calendar@cinnamon.org/13.json b/config/config_lite/cinnamon/spices/calendar@cinnamon.org/13.json new file mode 100644 index 0000000..e1901a6 --- /dev/null +++ b/config/config_lite/cinnamon/spices/calendar@cinnamon.org/13.json @@ -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": "c", + "tooltip": "Set keybinding(s) to show the calendar.", + "value": "c" + }, + "__md5__": "de90b5cca13fa5a4289009477b98b2f7" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/cornerbar@cinnamon.org/14.json b/config/config_lite/cinnamon/spices/cornerbar@cinnamon.org/14.json new file mode 100644 index 0000000..12c9abf --- /dev/null +++ b/config/config_lite/cinnamon/spices/cornerbar@cinnamon.org/14.json @@ -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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/favorites@cinnamon.org/9.json b/config/config_lite/cinnamon/spices/favorites@cinnamon.org/9.json new file mode 100644 index 0000000..ed51ca4 --- /dev/null +++ b/config/config_lite/cinnamon/spices/favorites@cinnamon.org/9.json @@ -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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/grouped-window-list@cinnamon.org/2.json b/config/config_lite/cinnamon/spices/grouped-window-list@cinnamon.org/2.json new file mode 100644 index 0000000..2506f05 --- /dev/null +++ b/config/config_lite/cinnamon/spices/grouped-window-list@cinnamon.org/2.json @@ -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": "grave", + "description": "Global hotkey to show the order of apps", + "value": "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+ 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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/menu@cinnamon.org/0.json b/config/config_lite/cinnamon/spices/menu@cinnamon.org/0.json new file mode 100644 index 0000000..0a65d07 --- /dev/null +++ b/config/config_lite/cinnamon/spices/menu@cinnamon.org/0.json @@ -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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json b/config/config_lite/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json new file mode 100644 index 0000000..07237ea --- /dev/null +++ b/config/config_lite/cinnamon/spices/network@cinnamon.org/network@cinnamon.org.json @@ -0,0 +1,14 @@ +{ + "section1": { + "type": "section", + "description": "Menu" + }, + "keyOpen": { + "type": "keybinding", + "description": "Show menu", + "default": "n", + "tooltip": "Set keybinding(s) to show the network applet menu.", + "value": "n" + }, + "__md5__": "976b46e8430522899e7fe34f2abfee76" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json b/config/config_lite/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json new file mode 100644 index 0000000..428b0ad --- /dev/null +++ b/config/config_lite/cinnamon/spices/notifications@cinnamon.org/notifications@cinnamon.org.json @@ -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": "n", + "tooltip": "Set keybinding(s) to show the notification popup menu.", + "value": "n" + }, + "keyClear": { + "type": "keybinding", + "description": "Clear notifications", + "default": "c", + "tooltip": "Set keybinding(s) to clear all notifications.", + "value": "c" + }, + "section4": { + "type": "section", + "description": "" + }, + "btnSystemSettings": { + "type": "button", + "description": "Open notification settings", + "callback": "on_btn_open_system_settings_clicked" + }, + "__md5__": "cb9ad336b2e360509f8ba388e1d19b8f" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json b/config/config_lite/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json new file mode 100644 index 0000000..000c9f5 --- /dev/null +++ b/config/config_lite/cinnamon/spices/power@cinnamon.org/power@cinnamon.org.json @@ -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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/printers@cinnamon.org/6.json b/config/config_lite/cinnamon/spices/printers@cinnamon.org/6.json new file mode 100644 index 0000000..64eb33f --- /dev/null +++ b/config/config_lite/cinnamon/spices/printers@cinnamon.org/6.json @@ -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" +} \ No newline at end of file diff --git a/config/config_lite/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json b/config/config_lite/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json new file mode 100644 index 0000000..bc78c5f --- /dev/null +++ b/config/config_lite/cinnamon/spices/sound@cinnamon.org/sound@cinnamon.org.json @@ -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": "s", + "tooltip": "Set keybinding(s) to show the sound applet menu.", + "value": "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" +} \ No newline at end of file diff --git a/config/config_lite/dconf/user b/config/config_lite/dconf/user new file mode 100644 index 0000000..77a1b70 Binary files /dev/null and b/config/config_lite/dconf/user differ diff --git a/config/config_lite/libreoffice/4/user/GraphicsRenderTests.log b/config/config_lite/libreoffice/4/user/GraphicsRenderTests.log new file mode 100644 index 0000000..e316ff3 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/GraphicsRenderTests.log @@ -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 diff --git a/config/config_lite/libreoffice/4/user/autotext/mytexts.bau b/config/config_lite/libreoffice/4/user/autotext/mytexts.bau new file mode 100644 index 0000000..2d06487 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/autotext/mytexts.bau differ diff --git a/config/config_lite/libreoffice/4/user/basic/Standard/Module1.xba b/config/config_lite/libreoffice/4/user/basic/Standard/Module1.xba new file mode 100644 index 0000000..3424c16 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/basic/Standard/Module1.xba @@ -0,0 +1,24 @@ + + + +REM ***** BASIC ***** + +Sub Main + +End Sub \ No newline at end of file diff --git a/config/config_lite/libreoffice/4/user/basic/Standard/dialog.xlb b/config/config_lite/libreoffice/4/user/basic/Standard/dialog.xlb new file mode 100644 index 0000000..669529d --- /dev/null +++ b/config/config_lite/libreoffice/4/user/basic/Standard/dialog.xlb @@ -0,0 +1,3 @@ + + + diff --git a/config/config_lite/libreoffice/4/user/basic/Standard/script.xlb b/config/config_lite/libreoffice/4/user/basic/Standard/script.xlb new file mode 100644 index 0000000..67c9503 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/basic/Standard/script.xlb @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config_lite/libreoffice/4/user/basic/dialog.xlc b/config/config_lite/libreoffice/4/user/basic/dialog.xlc new file mode 100644 index 0000000..34064e8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/basic/dialog.xlc @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config_lite/libreoffice/4/user/basic/script.xlc b/config/config_lite/libreoffice/4/user/basic/script.xlc new file mode 100644 index 0000000..34064e8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/basic/script.xlc @@ -0,0 +1,5 @@ + + + + + diff --git a/config/config_lite/libreoffice/4/user/config/autotbl.fmt b/config/config_lite/libreoffice/4/user/config/autotbl.fmt new file mode 100644 index 0000000..611ac0d Binary files /dev/null and b/config/config_lite/libreoffice/4/user/config/autotbl.fmt differ diff --git a/config/config_lite/libreoffice/4/user/config/javasettings_Linux_X86_64.xml b/config/config_lite/libreoffice/4/user/config/javasettings_Linux_X86_64.xml new file mode 100644 index 0000000..d18aa9c --- /dev/null +++ b/config/config_lite/libreoffice/4/user/config/javasettings_Linux_X86_64.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/config/config_lite/libreoffice/4/user/database/biblio.odb b/config/config_lite/libreoffice/4/user/database/biblio.odb new file mode 100644 index 0000000..9e70744 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/database/biblio.odb differ diff --git a/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbf b/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbf new file mode 100644 index 0000000..2715f99 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbf differ diff --git a/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbt b/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbt new file mode 100644 index 0000000..0ad4067 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/database/biblio/biblio.dbt differ diff --git a/config/config_lite/libreoffice/4/user/database/evolocal.odb b/config/config_lite/libreoffice/4/user/database/evolocal.odb new file mode 100644 index 0000000..82f486a Binary files /dev/null and b/config/config_lite/libreoffice/4/user/database/evolocal.odb differ diff --git a/config/config_lite/libreoffice/4/user/extensions/buildid b/config/config_lite/libreoffice/4/user/extensions/buildid new file mode 100644 index 0000000..160a9f3 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/buildid @@ -0,0 +1 @@ +50(Build:2) \ No newline at end of file diff --git a/config/config_lite/libreoffice/4/user/extensions/bundled/lastsynchronized b/config/config_lite/libreoffice/4/user/extensions/bundled/lastsynchronized new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/bundled/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/bundled/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/extensions/shared/lastsynchronized b/config/config_lite/libreoffice/4/user/extensions/shared/lastsynchronized new file mode 100644 index 0000000..56a6051 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/shared/lastsynchronized @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/shared/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/extensions/tmp/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/gallery/sg30.sdv b/config/config_lite/libreoffice/4/user/gallery/sg30.sdv new file mode 100644 index 0000000..fc17dd9 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/gallery/sg30.sdv differ diff --git a/config/config_lite/libreoffice/4/user/gallery/sg30.thm b/config/config_lite/libreoffice/4/user/gallery/sg30.thm new file mode 100644 index 0000000..9bf97d6 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/gallery/sg30.thm differ diff --git a/config/config_lite/libreoffice/4/user/pack/ExtensionInfo.pack b/config/config_lite/libreoffice/4/user/pack/ExtensionInfo.pack new file mode 100644 index 0000000..02b6c98 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/ExtensionInfo.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/autotext/mytexts.pack b/config/config_lite/libreoffice/4/user/pack/autotext/mytexts.pack new file mode 100644 index 0000000..28991dc Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/autotext/mytexts.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/basic/Standard/Module1.pack b/config/config_lite/libreoffice/4/user/pack/basic/Standard/Module1.pack new file mode 100644 index 0000000..d7944bf Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/basic/Standard/Module1.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/basic/Standard/dialog.pack b/config/config_lite/libreoffice/4/user/pack/basic/Standard/dialog.pack new file mode 100644 index 0000000..db56d38 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/basic/Standard/dialog.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/basic/Standard/script.pack b/config/config_lite/libreoffice/4/user/pack/basic/Standard/script.pack new file mode 100644 index 0000000..763901c Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/basic/Standard/script.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/basic/dialog.pack b/config/config_lite/libreoffice/4/user/pack/basic/dialog.pack new file mode 100644 index 0000000..275025b Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/basic/dialog.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/basic/script.pack b/config/config_lite/libreoffice/4/user/pack/basic/script.pack new file mode 100644 index 0000000..275025b Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/basic/script.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/config/autotbl.pack b/config/config_lite/libreoffice/4/user/pack/config/autotbl.pack new file mode 100644 index 0000000..c0060a0 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/config/autotbl.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack b/config/config_lite/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack new file mode 100644 index 0000000..7af6b37 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/config/javasettings_Linux_X86_64.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/database/biblio.pack b/config/config_lite/libreoffice/4/user/pack/database/biblio.pack new file mode 100644 index 0000000..d895355 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/database/biblio.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/database/biblio/biblio.pack b/config/config_lite/libreoffice/4/user/pack/database/biblio/biblio.pack new file mode 100644 index 0000000..6216fb7 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/database/biblio/biblio.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/database/evolocal.pack b/config/config_lite/libreoffice/4/user/pack/database/evolocal.pack new file mode 100644 index 0000000..07987aa Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/database/evolocal.pack differ diff --git a/config/config_lite/libreoffice/4/user/pack/registrymodifications.pack b/config/config_lite/libreoffice/4/user/pack/registrymodifications.pack new file mode 100644 index 0000000..eae8a23 Binary files /dev/null and b/config/config_lite/libreoffice/4/user/pack/registrymodifications.pack differ diff --git a/config/config_lite/libreoffice/4/user/registrymodifications.xcu b/config/config_lite/libreoffice/4/user/registrymodifications.xcu new file mode 100644 index 0000000..f4536d6 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/registrymodifications.xcu @@ -0,0 +1,67 @@ + + +false +0 +20005 +no + +false +false +2147483647com.sun.star.logging.FileHandler$(userurl)/$(loggername).logcom.sun.star.logging.PlainTextFormatter +false + +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +any, any, visible +com.sun.star.sheet.SpreadsheetDocument, any, visiblecom.sun.star.drawing.DrawingDocument, any, visiblecom.sun.star.presentation.PresentationDocument, any, visiblecom.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +com.sun.star.text.TextDocument, Annotation, visiblecom.sun.star.text.GlobalDocument, Annotation, visiblecom.sun.star.text.WebDocument, Annotation, visiblecom.sun.star.xforms.XMLFormDocument, Annotation, visiblecom.sun.star.sdb.FormDesign, Annotation, visiblecom.sun.star.sdb.TextReportDesign, Annotation, visiblecom.sun.star.text.TextDocument, DrawText, visiblecom.sun.star.text.GlobalDocument, DrawText, visiblecom.sun.star.text.WebDocument, DrawText, visiblecom.sun.star.xforms.XMLFormDocument, DrawText, visiblecom.sun.star.sdb.FormDesign, DrawText, visiblecom.sun.star.sdb.TextReportDesign, DrawText, visiblecom.sun.star.text.TextDocument, Table, visiblecom.sun.star.text.GlobalDocument, Table, visiblecom.sun.star.text.WebDocument, Table, visiblecom.sun.star.xforms.XMLFormDocument, Table, visiblecom.sun.star.sdb.FormDesign, Table, visiblecom.sun.star.sdb.TextReportDesign, Table, visiblecom.sun.star.text.TextDocument, Text, visiblecom.sun.star.text.GlobalDocument, Text, visiblecom.sun.star.text.WebDocument, Text, visiblecom.sun.star.xforms.XMLFormDocument, Text, visiblecom.sun.star.sdb.FormDesign, Text, visiblecom.sun.star.sdb.TextReportDesign, Text, visiblecom.sun.star.text.TextDocument, default, visiblecom.sun.star.text.GlobalDocument, default, visiblecom.sun.star.text.WebDocument, default, visiblecom.sun.star.xforms.XMLFormDocument, default, visiblecom.sun.star.sdb.FormDesign, default, visiblecom.sun.star.sdb.TextReportDesign, default, visible +com.sun.star.text.TextDocument, any, visiblecom.sun.star.text.GlobalDocument, any, visiblecom.sun.star.text.WebDocument, any, visiblecom.sun.star.xforms.XMLFormDocument, any, visiblecom.sun.star.sdb.FormDesign, any, visiblecom.sun.star.sdb.TextReportDesign, any, visible +any,PropertyDeckcom.sun.star.formula.FormulaProperties,ElementsDeckcom.sun.star.text.TextDocument,PropertyDeck +com.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, 3DObject, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:ParagraphDialogcom.sun.star.text.TextDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:ParagraphDialogcom.sun.star.text.WebDocument, default, visible, .uno:ParagraphDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:ParagraphDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:ParagraphDialog +com.sun.star.text.TextDocument, Annotation, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Annotation, visible, .uno:EditStylecom.sun.star.text.WebDocument, Annotation, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Annotation, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:EditStylecom.sun.star.text.TextDocument, DrawText, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, DrawText, visible, .uno:EditStylecom.sun.star.text.WebDocument, DrawText, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, DrawText, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:EditStylecom.sun.star.text.TextDocument, Table, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Table, visible, .uno:EditStylecom.sun.star.text.WebDocument, Table, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Table, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Table, visible, .uno:EditStylecom.sun.star.text.TextDocument, Text, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, Text, visible, .uno:EditStylecom.sun.star.text.WebDocument, Text, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, Text, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, Text, visible, .uno:EditStylecom.sun.star.text.TextDocument, default, visible, .uno:EditStylecom.sun.star.text.GlobalDocument, default, visible, .uno:EditStylecom.sun.star.text.WebDocument, default, visible, .uno:EditStylecom.sun.star.xforms.XMLFormDocument, default, visible, .uno:EditStylecom.sun.star.sdb.FormDesign, default, visible, .uno:EditStylecom.sun.star.sdb.TextReportDesign, default, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:EditStylecom.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:EditStyle +com.sun.star.sheet.SpreadsheetDocument, Auditing, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, Cell, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, default, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, EditCell, visible, .uno:FontDialogcom.sun.star.sheet.SpreadsheetDocument, Pivot, visible, .uno:CellTextDlgcom.sun.star.sheet.SpreadsheetDocument, Sparkline, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Draw, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Draw, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawFontwork, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawFontwork, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, DrawLine, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Graphic, hidden, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, OutlineText, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, Table, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, Table, visible, .uno:FontDialogcom.sun.star.drawing.DrawingDocument, TextObject, visible, .uno:FontDialogcom.sun.star.presentation.PresentationDocument, TextObject, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Annotation, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Annotation, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Annotation, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Annotation, visible, .uno:FontDialogcom.sun.star.text.TextDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, DrawText, visible, .uno:FontDialogcom.sun.star.text.WebDocument, DrawText, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, DrawText, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, DrawText, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Table, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Table, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Table, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Table, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Table, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Table, visible, .uno:FontDialogcom.sun.star.text.TextDocument, Text, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, Text, visible, .uno:FontDialogcom.sun.star.text.WebDocument, Text, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, Text, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, Text, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, Text, visible, .uno:FontDialogcom.sun.star.text.TextDocument, default, visible, .uno:FontDialogcom.sun.star.text.GlobalDocument, default, visible, .uno:FontDialogcom.sun.star.text.WebDocument, default, visible, .uno:FontDialogcom.sun.star.xforms.XMLFormDocument, default, visible, .uno:FontDialogcom.sun.star.sdb.FormDesign, default, visible, .uno:FontDialogcom.sun.star.sdb.TextReportDesign, default, visible, .uno:FontDialog +true +true +0,0 +true +0 +false +true +false +2147483647,2147483647 +0,0 +false +0 +Standard +true +true +true +0,1 +true +0 +false +true +false +2147483647,2147483647 +0,0 +false +0 +Formatting +true +V1,2,0 +V1,2,0 +V1,2,1,0,10336 +V1,2,0 +V2,V,0,AL:(5,16,0/0/49/450,49;450) + +V2,V,128 +en-US +-482,-110,1921,1009;5;0,32,1441,829; +50(Build:2) +false +true +1728504492 +1728504492 +7.6 + diff --git a/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..fb4de4d --- /dev/null +++ b/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.configuration.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml b/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml new file mode 100644 index 0000000..496c8c8 --- /dev/null +++ b/config/config_lite/libreoffice/4/user/uno_packages/cache/registry/com.sun.star.comp.deployment.help.PackageRegistryBackend/backenddb.xml @@ -0,0 +1,2 @@ + + diff --git a/config/config_lite/mimeapps.list b/config/config_lite/mimeapps.list new file mode 100644 index 0000000..be64304 --- /dev/null +++ b/config/config_lite/mimeapps.list @@ -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; diff --git a/config/config_lite/user-dirs.dirs b/config/config_lite/user-dirs.dirs new file mode 100644 index 0000000..aee4e55 --- /dev/null +++ b/config/config_lite/user-dirs.dirs @@ -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/" diff --git a/config/config_lite/user-dirs.locale b/config/config_lite/user-dirs.locale new file mode 100644 index 0000000..3e0b419 --- /dev/null +++ b/config/config_lite/user-dirs.locale @@ -0,0 +1 @@ +en_US \ No newline at end of file diff --git a/config/config_lite/xdg-terminals.list b/config/config_lite/xdg-terminals.list new file mode 100644 index 0000000..b6e3341 --- /dev/null +++ b/config/config_lite/xdg-terminals.list @@ -0,0 +1 @@ +org.gnome.Terminal.desktop diff --git a/config/desktop/Getting Started.pdf b/config/desktop/Getting Started.pdf new file mode 120000 index 0000000..17bb74d --- /dev/null +++ b/config/desktop/Getting Started.pdf @@ -0,0 +1 @@ +/etc/nixbook/guides/Getting Started.pdf \ No newline at end of file diff --git a/config/desktop/com.google.Chrome.desktop b/config/desktop/com.google.Chrome.desktop new file mode 100755 index 0000000..dab6e22 --- /dev/null +++ b/config/desktop/com.google.Chrome.desktop @@ -0,0 +1,219 @@ +[Desktop Entry] +Version=1.0 +Name=Google Chrome +GenericName=Web Browser +GenericName[ar]=متصفح الشبكة +GenericName[bg]=Уеб браузър +GenericName[ca]=Navegador web +GenericName[cs]=WWW prohlížeč +GenericName[da]=Browser +GenericName[de]=Web-Browser +GenericName[el]=Περιηγητής ιστού +GenericName[en_GB]=Web Browser +GenericName[es]=Navegador web +GenericName[et]=Veebibrauser +GenericName[fi]=WWW-selain +GenericName[fr]=Navigateur Web +GenericName[gu]=વેબ બ્રાઉઝર +GenericName[he]=דפדפן אינטרנט +GenericName[hi]=वेब ब्राउज़र +GenericName[hu]=Webböngésző +GenericName[it]=Browser Web +GenericName[ja]=ウェブブラウザ +GenericName[kn]=ಜಾಲ ವೀಕ್ಷಕ +GenericName[ko]=웹 브라우저 +GenericName[lt]=Žiniatinklio naršyklė +GenericName[lv]=Tīmekļa pārlūks +GenericName[ml]=വെബ് ബ്രൌസര്‍ +GenericName[mr]=वेब ब्राऊजर +GenericName[nb]=Nettleser +GenericName[nl]=Webbrowser +GenericName[pl]=Przeglądarka WWW +GenericName[pt]=Navegador Web +GenericName[pt_BR]=Navegador da Internet +GenericName[ro]=Navigator de Internet +GenericName[ru]=Веб-браузер +GenericName[sl]=Spletni brskalnik +GenericName[sv]=Webbläsare +GenericName[ta]=இணைய உலாவி +GenericName[th]=เว็บเบราว์เซอร์ +GenericName[tr]=Web Tarayıcı +GenericName[uk]=Навігатор Тенет +GenericName[zh_CN]=网页浏览器 +GenericName[zh_HK]=網頁瀏覽器 +GenericName[zh_TW]=網頁瀏覽器 +GenericName[bn]=ওয়েব ব্রাউজার +GenericName[fil]=Web Browser +GenericName[hr]=Web preglednik +GenericName[id]=Browser Web +GenericName[or]=ଓ୍ବେବ ବ୍ରାଉଜର +GenericName[sk]=WWW prehliadač +GenericName[sr]=Интернет прегледник +GenericName[te]=మహాతల అన్వేషి +GenericName[vi]=Bộ duyệt Web +Comment=Access the Internet +Comment[ar]=الدخول إلى الإنترنت +Comment[bg]=Достъп до интернет +Comment[bn]=ইন্টারনেটটি অ্যাক্সেস করুন +Comment[ca]=Accedeix a Internet +Comment[cs]=Přístup k internetu +Comment[da]=Få adgang til internettet +Comment[de]=Internetzugriff +Comment[el]=Πρόσβαση στο Διαδίκτυο +Comment[en_GB]=Access the Internet +Comment[es]=Accede a Internet. +Comment[et]=Pääs Internetti +Comment[fi]=Käytä internetiä +Comment[fil]=I-access ang Internet +Comment[fr]=Accéder à Internet +Comment[gu]=ઇંટરનેટ ઍક્સેસ કરો +Comment[he]=גישה אל האינטרנט +Comment[hi]=इंटरनेट तक पहुंच स्थापित करें +Comment[hr]=Pristup Internetu +Comment[hu]=Internetelérés +Comment[id]=Akses Internet +Comment[it]=Accesso a Internet +Comment[ja]=インターネットにアクセス +Comment[kn]=ಇಂಟರ್ನೆಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ +Comment[ko]=인터넷 연결 +Comment[lt]=Interneto prieiga +Comment[lv]=Piekļūt internetam +Comment[ml]=ഇന്റര്‍‌നെറ്റ് ആക്‌സസ് ചെയ്യുക +Comment[mr]=इंटरनेटमध्ये प्रवेश करा +Comment[nb]=Gå til Internett +Comment[nl]=Verbinding maken met internet +Comment[or]=ଇଣ୍ଟର୍ନେଟ୍ ପ୍ରବେଶ କରନ୍ତୁ +Comment[pl]=Skorzystaj z internetu +Comment[pt]=Aceder à Internet +Comment[pt_BR]=Acessar a internet +Comment[ro]=Accesaţi Internetul +Comment[ru]=Доступ в Интернет +Comment[sk]=Prístup do siete Internet +Comment[sl]=Dostop do interneta +Comment[sr]=Приступите Интернету +Comment[sv]=Gå ut på Internet +Comment[ta]=இணையத்தை அணுகுதல் +Comment[te]=ఇంటర్నెట్‌ను ఆక్సెస్ చెయ్యండి +Comment[th]=เข้าถึงอินเทอร์เน็ต +Comment[tr]=İnternet'e erişin +Comment[uk]=Доступ до Інтернету +Comment[vi]=Truy cập Internet +Comment[zh_CN]=访问互联网 +Comment[zh_HK]=連線到網際網路 +Comment[zh_TW]=連線到網際網路 +Exec=flatpak run --branch=stable --arch=x86_64 --command=/app/bin/chrome --file-forwarding com.google.Chrome @@u %U @@ +StartupNotify=true +Terminal=false +Icon=com.google.Chrome +Type=Application +Categories=Network;WebBrowser; +MimeType=application/pdf;application/rdf+xml;application/rss+xml;application/xhtml+xml;application/xhtml_xml;application/xml;image/gif;image/jpeg;image/png;image/webp;text/html;text/xml;x-scheme-handler/http;x-scheme-handler/https; +Actions=new-window;new-private-window; +X-Flatpak-Tags=proprietary; +X-Flatpak=com.google.Chrome + +[Desktop Action new-window] +Name=New Window +Name[am]=አዲስ መስኮት +Name[ar]=نافذة جديدة +Name[bg]=Нов прозорец +Name[bn]=নতুন উইন্ডো +Name[ca]=Finestra nova +Name[cs]=Nové okno +Name[da]=Nyt vindue +Name[de]=Neues Fenster +Name[el]=Νέο Παράθυρο +Name[en_GB]=New Window +Name[es]=Nueva ventana +Name[et]=Uus aken +Name[fa]=پنجره جدید +Name[fi]=Uusi ikkuna +Name[fil]=New Window +Name[fr]=Nouvelle fenêtre +Name[gu]=નવી વિંડો +Name[hi]=नई विंडो +Name[hr]=Novi prozor +Name[hu]=Új ablak +Name[id]=Jendela Baru +Name[it]=Nuova finestra +Name[iw]=חלון חדש +Name[ja]=新規ウインドウ +Name[kn]=ಹೊಸ ವಿಂಡೊ +Name[ko]=새 창 +Name[lt]=Naujas langas +Name[lv]=Jauns logs +Name[ml]=പുതിയ വിന്‍ഡോ +Name[mr]=नवीन विंडो +Name[nl]=Nieuw venster +Name[no]=Nytt vindu +Name[pl]=Nowe okno +Name[pt]=Nova janela +Name[pt_BR]=Nova janela +Name[ro]=Fereastră nouă +Name[ru]=Новое окно +Name[sk]=Nové okno +Name[sl]=Novo okno +Name[sr]=Нови прозор +Name[sv]=Nytt fönster +Name[sw]=Dirisha Jipya +Name[ta]=புதிய சாளரம் +Name[te]=క్రొత్త విండో +Name[th]=หน้าต่างใหม่ +Name[tr]=Yeni Pencere +Name[uk]=Нове вікно +Name[vi]=Cửa sổ Mới +Name[zh_CN]=新建窗口 +Name[zh_TW]=開新視窗 +Exec=flatpak run --branch=stable --arch=x86_64 --command=/app/bin/chrome com.google.Chrome + +[Desktop Action new-private-window] +Name=New Incognito Window +Name[ar]=نافذة جديدة للتصفح المتخفي +Name[bg]=Нов прозорец „инкогнито“ +Name[bn]=নতুন ছদ্মবেশী উইন্ডো +Name[ca]=Finestra d'incògnit nova +Name[cs]=Nové anonymní okno +Name[da]=Nyt inkognitovindue +Name[de]=Neues Inkognito-Fenster +Name[el]=Νέο παράθυρο για ανώνυμη περιήγηση +Name[en_GB]=New Incognito window +Name[es]=Nueva ventana de incógnito +Name[et]=Uus inkognito aken +Name[fa]=پنجره جدید حالت ناشناس +Name[fi]=Uusi incognito-ikkuna +Name[fil]=Bagong Incognito window +Name[fr]=Nouvelle fenêtre de navigation privée +Name[gu]=નવી છુપી વિંડો +Name[hi]=नई गुप्त विंडो +Name[hr]=Novi anoniman prozor +Name[hu]=Új Inkognitóablak +Name[id]=Jendela Penyamaran baru +Name[it]=Nuova finestra di navigazione in incognito +Name[iw]=חלון חדש לגלישה בסתר +Name[ja]=新しいシークレット ウィンドウ +Name[kn]=ಹೊಸ ಅಜ್ಞಾತ ವಿಂಡೋ +Name[ko]=새 시크릿 창 +Name[lt]=Naujas inkognito langas +Name[lv]=Jauns inkognito režīma logs +Name[ml]=പുതിയ വേഷ പ്രച്ഛന്ന വിന്‍ഡോ +Name[mr]=नवीन गुप्त विंडो +Name[nl]=Nieuw incognitovenster +Name[no]=Nytt inkognitovindu +Name[pl]=Nowe okno incognito +Name[pt]=Nova janela de navegação anónima +Name[pt_BR]=Nova janela anônima +Name[ro]=Fereastră nouă incognito +Name[ru]=Новое окно в режиме инкогнито +Name[sk]=Nové okno inkognito +Name[sl]=Novo okno brez beleženja zgodovine +Name[sr]=Нови прозор за прегледање без архивирања +Name[sv]=Nytt inkognitofönster +Name[ta]=புதிய மறைநிலைச் சாளரம் +Name[te]=క్రొత్త అజ్ఞాత విండో +Name[th]=หน้าต่างใหม่ที่ไม่ระบุตัวตน +Name[tr]=Yeni Gizli pencere +Name[uk]=Нове вікно в режимі анонімного перегляду +Name[vi]=Cửa sổ ẩn danh mới +Name[zh_CN]=新建隐身窗口 +Name[zh_TW]=新增無痕式視窗 +Exec=flatpak run --branch=stable --arch=x86_64 --command=/app/bin/chrome com.google.Chrome --incognito diff --git a/config/desktop/org.libreoffice.LibreOffice.writer.desktop b/config/desktop/org.libreoffice.LibreOffice.writer.desktop new file mode 100755 index 0000000..5849673 --- /dev/null +++ b/config/desktop/org.libreoffice.LibreOffice.writer.desktop @@ -0,0 +1,387 @@ +[Desktop Entry] +Version=1.0 +Terminal=false +Icon=org.libreoffice.LibreOffice.writer +Type=Application +Categories=Office;WordProcessor;X-Red-Hat-Base; +Exec=flatpak run --branch=stable --arch=x86_64 --command=libreoffice --file-forwarding org.libreoffice.LibreOffice --writer @@u %U @@ +MimeType=application/clarisworks;application/docbook+xml;application/macwriteii;application/msword;application/prs.plucker;application/rtf;application/vnd.apple.pages;application/vnd.lotus-wordpro;application/vnd.ms-word;application/vnd.ms-word.document.macroEnabled.12;application/vnd.ms-word.template.macroEnabled.12;application/vnd.ms-works;application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-flat-xml;application/vnd.oasis.opendocument.text-master;application/vnd.oasis.opendocument.text-master-template;application/vnd.oasis.opendocument.text-template;application/vnd.oasis.opendocument.text-web;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.openxmlformats-officedocument.wordprocessingml.template;application/vnd.palm;application/vnd.stardivision.writer-global;application/vnd.stardivision.writer-global;application/vnd.sun.xml.writer;application/vnd.sun.xml.writer.global;application/vnd.sun.xml.writer.template;application/vnd.wordperfect;application/wordperfect;application/x-abiword;application/x-aportisdoc;application/x-doc;application/x-extension-txt;application/x-fictionbook+xml;application/x-hwp;application/x-iwork-pages-sffpages;application/x-mswrite;application/x-pocket-word;application/x-sony-bbeb;application/x-starwriter;application/x-starwriter-global;application/x-t602;text/rtf; +Name=LibreOffice Writer +GenericName=Word Processor +GenericName[af]=Woordverwerker +GenericName[am]=ቃላት ማቀናበሪያ +GenericName[ar]=معالج المستندات +GenericName[as]=Word প্ৰচেছৰ +GenericName[ast]=Procesador de testos +GenericName[be]=Тэкставы працэсар +GenericName[bg]=Текстообработка +GenericName[bn]=ওয়ার্ড প্রসেসর +GenericName[bn_IN]=ওয়ার্ড প্রসেসর +GenericName[bo]=ཡི་གེ་སྒྲིག་གཅོད་ཆས། +GenericName[br]=Kewerier testenn +GenericName[brx]=Word Processor +GenericName[bs]=Program za obradu teksta +GenericName[ca]=Processador de textos +GenericName[ca_valencia]=Processador de textos +GenericName[ckb]=چارەسەرکەری وۆرد +GenericName[cs]=Textový procesor +GenericName[cy]=Prosesydd Geiriau +GenericName[da]=Tekstbehandling +GenericName[de]=Textverarbeitung +GenericName[dgo]=वर्डप्रोसेसर +GenericName[dsb]=Tekstowe wobźěłanje +GenericName[dz]=Word Processor +GenericName[el]=Επεξεργαστής Word +GenericName[en]=Word Processor +GenericName[en_GB]=Word Processor +GenericName[en_ZA]=Word Processor +GenericName[eo]=Vortprocesilo +GenericName[es]=Procesador de texto +GenericName[et]=Tekstitöötlus +GenericName[eu]=Testu prozesatzailea +GenericName[fa]=واژه‌پرداز +GenericName[fi]=Tekstinkäsittely +GenericName[fr]=Traitement de texte +GenericName[fur]=Word Processor +GenericName[fy]=Tekst ferwurker +GenericName[ga]=Próiseálaí Focal +GenericName[gd]=Giullachair teacsa +GenericName[gl]=Procesador de textos +GenericName[gu]=વર્ડ પ્રોસેસર +GenericName[gug]=Procesador Moñe'ẽrãgui +GenericName[he]=מעבד תמלילים +GenericName[hi]=वर्ड प्रोसेसर +GenericName[hr]=Program za obradu teksta +GenericName[hsb]=Tekstowe wobdźěłanje +GenericName[hu]=Szövegszerkesztő +GenericName[hy]=Բառամշակիչ +GenericName[id]=Pengolah Kata +GenericName[is]=Ritvinnsluforrit +GenericName[it]=Elaboratore di testo +GenericName[ja]=ワードプロセッサ +GenericName[ka]=ტექსტური პროცესორი +GenericName[kab]=Amsesfer n uḍris +GenericName[kk]=Мәтіндік процессор +GenericName[km]=កម្មវិធី​វាយ​អត្ថបទ +GenericName[kmr_Latn]=Kiryarê Peyvan +GenericName[kn]=ವರ್ಡ್ ಪ್ರೊಸೆಸರ್ +GenericName[ko]=워드 프로세서 +GenericName[kok]=वर्ड प्रोसेसरSobd Prokriyik +GenericName[ks]=Word Processor +GenericName[lb]=Word Processor +GenericName[lo]=ໂປຣແກຣມປະມວນຜົນຄຳ +GenericName[lt]=Tekstų rengyklė +GenericName[lv]=Tekstapstrādes programma +GenericName[mai]=Word Processor +GenericName[mk]=Обработка на текст +GenericName[ml]=വേര്‍ഡ് പ്രൊസസ്സര്‍ +GenericName[mn]=Ворд боловсруулагч +GenericName[mni]=ৱার্দ প্রোসেসর +GenericName[mr]=वर्ड प्रोसेसर +GenericName[my]=စာစီစာရိုက် +GenericName[nb]=Skriveprogram +GenericName[ne]=वर्ड प्रोसेसर +GenericName[nl]=Tekstverwerker +GenericName[nn]=Teksthandsamar +GenericName[nr]=Word Processor +GenericName[nso]=Sebopi sa mantšu +GenericName[oc]=Tractament de tèxte +GenericName[om]=Hujeessaa Jecha +GenericName[or]=ଶବ୍ଦ ସଞ୍ଚାଳକ +GenericName[pa_IN]=ਵਰਡ ਪਰੋਸੈਸਰ +GenericName[pl]=Procesor tekstu +GenericName[pt]=Processador de texto +GenericName[pt_BR]=Editor de texto +GenericName[ro]=Procesor de text +GenericName[ru]=Текстовый процессор +GenericName[rw]=Musesenguramagambo +GenericName[sa_IN]=वर्ड् प्रोसेसर् +GenericName[sat]=साबाद् का़मी होचोवाक् . +GenericName[sd]=ورڊ پروسيسر +GenericName[si]=ලිපි සකසනය +GenericName[sid]=Qaalisaancho +GenericName[sk]=Textový procesor +GenericName[sl]=Urejevalnik besedila +GenericName[sq]=Zgjedh fjalën +GenericName[sr]=Уређивач текста +GenericName[sr_Latn]=Uređivač teksta +GenericName[ss]=Word Processor +GenericName[st]=Word Processor +GenericName[sv]=Ordbehandlare +GenericName[sw_TZ]=Word Processor +GenericName[szl]=Word Processor +GenericName[ta]=சொற்செயலி +GenericName[te]=వర్డ్ ప్రాసెసర్ +GenericName[tg]=Word Processor +GenericName[th]=โปรแกรมประมวลผลคำ +GenericName[tn]=Word Processor +GenericName[tr]=Kelime İşlemci +GenericName[ts]=Word Processor +GenericName[tt]=Word Processor +GenericName[ug]=يېزىق بىر تەرەپ قىلىش +GenericName[uk]=Текстовий процесор +GenericName[uz]=Matn protsessori +GenericName[ve]=Word Processor +GenericName[vec]=Prosesador de testo +GenericName[vi]=Xử lý từ +GenericName[xh]=Word Processor +GenericName[zh_CN]=文字处理软件 +GenericName[zh_TW]=文書處理器 +GenericName[zu]=Word Processor +Comment=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[af]=Skep en redigeer teks en grafika in briewe, verslae, dokumente en Web blaaie. +Comment[am]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ar]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[as]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ast]=Crea y edita testos ya imáxenes en cartes, informes, documentos y páxines Web. +Comment[be]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[bg]=Създаване и редактиране на текст и изображения в писма, отчети, документи и уебстраници. +Comment[bn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[bn_IN]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[bo]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[br]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[brx]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[bs]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ca]=Creeu i editeu textos i imatges en cartes, informes, documents i pàgines web. +Comment[ca_valencia]=Creeu i editeu textos i imatges en cartes, informes, documents i pàgines web. +Comment[ckb]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[cs]=Umožňuje vytvářet a upravovat text a grafiku v dopisech, zprávách, dokumentech a webových stránkách. +Comment[cy]=Creu a golygu testun a graffigau mewn llythyron, adroddiadau, dogfennau a thudalennau Gwe. +Comment[da]=Opret og redigér tekst og grafik i breve, rapporter, dokumenter og websider. +Comment[de]=Erstellen und bearbeiten Sie Texte und Grafiken in Briefen, Berichten, Dokumenten und Webseiten. +Comment[dgo]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[dsb]=Napórajśo a wobźěłajśo tekst a wobraze w listach, rozpšawach a na webbokach. +Comment[dz]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[el]=Δημιουργία και επεξεργασία κειμένου και γραφικών σε γράμματα, αναφορές, έγγραφα και ιστοσελίδες. +Comment[en]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[en_GB]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[en_ZA]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[eo]=Krei kaj redakti tekston kaj grafikaĵojn en leteroj, raportoj, dokumentoj kaj TTT-paĝoj. +Comment[es]=Cree y edite texto e imágenes en cartas, informes, documentos y páginas Web. +Comment[et]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[eu]=Sortu eta editatu testuak eta grafikoak eskutitzetan, txostenetan, dokumentuetan eta web-orrietan. +Comment[fa]=ایجاد و ویرایش متن و گرافیک ها در نامه ها، گزارش ها، سندها و صفحات وب. +Comment[fi]=Luo ja muokkaa tekstiä ja grafiikkaa kirjeisiin, raportteihin, asiakirjoihin ja verkkosivuihin. +Comment[fr]=Créer et modifier du texte et des graphiques dans des lettres, des rapports, des documents et des pages Web. +Comment[fur]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[fy]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ga]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[gd]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[gl]=Cree e edite texto e imaxes en cartas, informes, documentos e páxinas da Web. +Comment[gu]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[gug]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[he]=יצירה ועריכה של טקסט וגרפיקה במכתבים, דוחות, מסמכים ואתרים. +Comment[hi]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[hr]=Stvorite i uredite tekst i slike u pismima, izvještajima, dokumentima i web stranicama. +Comment[hsb]=Wutworće a wobdźěłajće tekst a grafiki w listach, rozprawach, dokumentach a webstronach. +Comment[hu]=Levelek, jelentések, dokumentumok és weboldalak szövegének és képeinek létrehozása és szerkesztése. +Comment[hy]=Ստեղծեք և խմբագրեք տեքստ և գրաֆիկա նամակներում, հաշվետվություններում, փաստաթղթերում և վեբ էջերում: +Comment[id]=Membuat dan menyunting teks dan gambar pada surat, laporan, dokumen, dan halaman Web. +Comment[is]=Búðu til og breyttu texta og myndefni í bréfum, skýrslum, skjölum og vefsíðum. +Comment[it]=Crea e modifica il testo e le immagini di lettere, rapporti, documenti e pagine web. +Comment[ja]=手紙、レポート、文書、Webページなどのテキストや画像の作成と編集を行います。 +Comment[ka]=შექმენით და ჩაასწორეთ ტექსტი და გრაფიკა წერილებში, ანგარიშებში, დოკუმენტებში და ვებგვერდებში. +Comment[kab]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[kk]=Хаттар, есептер, құжаттар және Web-беттердегі мәтін мен графиканы жасау және өңдеу. +Comment[km]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[kmr_Latn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[kn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ko]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[kok]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ks]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[lb]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[lo]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[lt]=Tekstų rengykle galima kurti laiškus, ataskaitas, kitus dokumentus ir tinklalapius, įterpti į juos paveikslus. +Comment[lv]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[mai]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[mk]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ml]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[mn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[mni]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[mr]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[my]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[nb]=Lag og rediger tekst og grafikk i brev, rapporter, dokumenter og websider. +Comment[ne]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[nl]=Maak en bewerk tekst en afbeeldingen in brieven, rapporten, documenten en webpagina's. +Comment[nn]=Lag og rediger tekst og bilete i brev, rapportar, dokument og nettsider. +Comment[nr]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[nso]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[oc]=Creatz e modificatz de tèxtes e grafics en letras, rapòrts, documents e paginas web. +Comment[om]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[or]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[pa_IN]=ਪੱਤਰਾਂ, ਰਿਪੋਰਟਾਂ, ਦਸਤਾਵੇਜ਼ਾਂ ਅਤੇ ਵੈੱਬ ਸਫ਼ਿਆਂ ਵਿੱਚ ਲਿਖਤਾਂ ਬਣਾਓ ਅਤੇ ਸੋਧੋ। +Comment[pl]=Twórz i edytuj tekst i obrazy w listach, raportach, dokumentach i na stronach internetowych. +Comment[pt]=Crie e edite textos e imagens em cartas, relatórios, documentos e páginas web. +Comment[pt_BR]=Crie e edite textos e figuras em cartas, relatórios, documentos e páginas da internet. +Comment[ro]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ru]=Создание и редактирование текста и изображений в письмах, отчётах, документах и веб-страницах. +Comment[rw]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sa_IN]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sat]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sd]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[si]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sid]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sk]=Umožňuje vytvárať a upravovať text a grafiku v správach, dokumentoch a webových stránkach. +Comment[sl]=Ustvarjajte in urejajte besedilo in slike v pismih, poročilih, dokumentih in spletnih straneh. +Comment[sq]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sr]=Направите или уредите текст и графику за писма, извештаје, документе и веб странице. +Comment[sr_Latn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ss]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[st]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[sv]=Skapa och redigera text och grafik i brev, rapporter, dokument och webbsidor. +Comment[sw_TZ]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[szl]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ta]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[te]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[tg]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[th]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[tn]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[tr]=Mektuplar, raporlar, belgeler ve Web sayfalarında metin ve grafik oluştur ve düzenle. +Comment[ts]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[tt]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ug]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[uk]=Створення і редагування тексту та зображень у листах, звітах, документах і веб-сторінках. +Comment[uz]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[ve]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[vec]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[vi]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[xh]=Create and edit text and graphics in letters, reports, documents and Web pages. +Comment[zh_CN]=创建和编辑信函、报表、文档以及网页中的文本和图片。 +Comment[zh_TW]=建立與編輯信函、報告、文件與網頁中的文字與圖形。 +Comment[zu]=Create and edit text and graphics in letters, reports, documents and Web pages. +StartupNotify=true +X-GIO-NoFuse=true +Keywords=Text;Letter;Fax;Document;OpenDocument Text;Microsoft Word;Microsoft Works;Lotus WordPro;OpenOffice Writer;CV;odt;doc;docx;rtf; +InitialPreference=5 +StartupWMClass=libreoffice-writer +X-KDE-Protocols=file,http,webdav,webdavs +Actions=NewDocument; +X-Desktop-File-Install-Version=0.27 +X-Endless-Alias=libreoffice-writer +X-Flatpak-RenamedFrom=libreoffice-writer.desktop;org.libreoffice.LibreOffice-writer.desktop; +X-Flatpak=org.libreoffice.LibreOffice + +[Desktop Action NewDocument] +Name=New Document +Name[af]=Nuwe dokument +Name[am]=አዲስ ሰነድ +Name[ar]=مستند جديد +Name[as]=নতুন দস্তাবেজ +Name[ast]=Documentu nuevu +Name[be]=Новы дакумент +Name[bg]=Нов документ +Name[bn]=নতুন নথি +Name[bn_IN]=নতুন ডকুমেন্ট +Name[bo]=གསར་བཟོས་ཡིག་ཚགས། +Name[br]=Teul nevez +Name[brx]=New Document +Name[bs]=Novi dokument +Name[ca]=Document nou +Name[ca_valencia]=Document nou +Name[ckb]=بەڵگەنامەی نوێ +Name[cs]=Nový dokument +Name[cy]=Dogfen Newydd +Name[da]=Nyt dokument +Name[de]=Neues Dokument +Name[dgo]=नमां दस्तावेज +Name[dsb]=Nowy dokument +Name[dz]=ཡིག་ཆ་གསརཔ། +Name[el]=Νέο έγγραφο +Name[en]=New Document +Name[en_GB]=New Document +Name[en_ZA]=New Document +Name[eo]=Nova dokumento +Name[es]=Documento nuevo +Name[et]=Uus dokument +Name[eu]=Dokumentu berria +Name[fa]=پرونده جدید +Name[fi]=Uusi asiakirja +Name[fr]=Nouveau document +Name[fur]=New Document +Name[fy]=Nij dokumint +Name[ga]=Cáipéis Nua +Name[gd]=Sgrìobhainn ùr +Name[gl]=Novo documento +Name[gu]=નવું દસ્તાવેજ +Name[gug]=Documento Pyahu +Name[he]=מסמך חדש +Name[hi]=नया दस्तावेज़ +Name[hr]=Novi dokument +Name[hsb]=Nowy dokument +Name[hu]=Új dokumentum +Name[hy]=Նոր փաստաթուղթ +Name[id]=Dokumen Baru +Name[is]=Nýtt skjal +Name[it]=Nuovo documento +Name[ja]=新規の文書ドキュメント +Name[ka]=ახალი დოკუმენტი +Name[kab]=Rnu isemli +Name[kk]=Құжатты жасау +Name[km]=ឯកសារ​ថ្មី +Name[kmr_Latn]=Belgeya Nû +Name[kn]=ಹೊಸ ದಸ್ತಾವೇಜು +Name[ko]=새 문서 +Name[kok]=नवीन दस्तावेज +Name[ks]=نئی دستاویز +Name[lb]=Neit Dokument +Name[lo]=ເອກະສານໃໝ່ +Name[lt]=Naujas dokumentas +Name[lv]=Jauns dokuments +Name[mai]=नवीन दस्तावेज +Name[mk]=Нов документ +Name[ml]=പുതിയ രേഖ +Name[mn]=Шинэ баримт +Name[mni]=অনৌবা দোকুমেন্ত +Name[mr]=नवीन दस्तऐवज +Name[my]=~မှတ်တမ်းမှတ်ရာ အသစ် +Name[nb]=Nytt dokument +Name[ne]=नयाँ कागजात +Name[nl]=Nieuw document +Name[nn]=Nytt dokument +Name[nr]=Umtlolo Omutjha +Name[nso]=Tokumente e mpsha +Name[oc]=Document novèl +Name[om]=Faayilii Haara +Name[or]=ନୂଆ ଦଲିଲ +Name[pa_IN]=ਨਵਾਂ ਦਸਤਾਵੇਜ +Name[pl]=Nowy dokument +Name[pt]=Novo documento +Name[pt_BR]=Novo documento +Name[ro]=Document nou +Name[ru]=Создать документ +Name[rw]=Inyandiko Nshya +Name[sa_IN]=नूतनलेख्यपत्रम् +Name[sat]=नावा दोलिलनावा दोलिल . +Name[sd]=نئون دستاويز +Name[si]=නව ලේඛනය (~N) +Name[sid]=Haaro Bortaje +Name[sk]=Nový dokument +Name[sl]=Nov dokument +Name[sq]=Dokument i ri +Name[sr]=Нови документ +Name[sr_Latn]=Novi dokument +Name[ss]=Idokhumenti lensha +Name[st]=New Document +Name[sv]=Nytt dokument +Name[sw_TZ]=New Document +Name[szl]=Nowy dokumynt +Name[ta]=புதிய ஆவணம் +Name[te]=కొత్త పత్రం +Name[tg]=Ҳуҷҷати нав +Name[th]=เอกสารใหม่ +Name[tn]=New Document +Name[tr]=Yeni Belge +Name[ts]=Dokumente yintshwa +Name[tt]=Яңа документ +Name[ug]=يېڭى پۈتۈك +Name[uk]=~Створити документ +Name[uz]=New Document +Name[ve]=Ḽiṅwalwa Ḽiswa +Name[vec]=Documento novo +Name[vi]=Tài liệu mới +Name[xh]=Uxwebhu Olutsha +Name[zh_CN]=新建文档 +Name[zh_TW]=新增文件 +Name[zu]=Ushicilelo olusha +Icon=document-new +Exec=flatpak run --branch=stable --arch=x86_64 --command=libreoffice org.libreoffice.LibreOffice --writer diff --git a/config/desktop_lite/Getting Started.pdf b/config/desktop_lite/Getting Started.pdf new file mode 120000 index 0000000..7f2d59c --- /dev/null +++ b/config/desktop_lite/Getting Started.pdf @@ -0,0 +1 @@ +/etc/nixbook/guides/Getting Started Lite.pdf \ No newline at end of file diff --git a/config/desktop_lite/firefox (copy).desktop b/config/desktop_lite/firefox (copy).desktop new file mode 100755 index 0000000..0eabdf4 --- /dev/null +++ b/config/desktop_lite/firefox (copy).desktop @@ -0,0 +1,25 @@ +[Desktop Entry] +Actions=new-private-window;new-window;profile-manager-window +Categories=Network;WebBrowser +Exec=firefox --name firefox %U +GenericName=Web Browser +Icon=firefox +MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;x-scheme-handler/http;x-scheme-handler/https +Name=Firefox +StartupNotify=true +StartupWMClass=firefox +Terminal=false +Type=Application +Version=1.4 + +[Desktop Action new-private-window] +Exec=firefox --private-window %U +Name=New Private Window + +[Desktop Action new-window] +Exec=firefox --new-window %U +Name=New Window + +[Desktop Action profile-manager-window] +Exec=firefox --ProfileManager +Name=Profile Manager diff --git a/guides/Getting Started Lite.pdf b/guides/Getting Started Lite.pdf new file mode 100644 index 0000000..c424a14 Binary files /dev/null and b/guides/Getting Started Lite.pdf differ diff --git a/guides/Getting Started.pdf b/guides/Getting Started.pdf new file mode 100644 index 0000000..0b2f1ab Binary files /dev/null and b/guides/Getting Started.pdf differ diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..47caeb8 --- /dev/null +++ b/install.sh @@ -0,0 +1,36 @@ +echo "This will delete ALL local files and convert this machine to a Nixbook!"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Installing NixBook..." + + # Set up local files + rm -rf ~/ + mkdir ~/Desktop + mkdir ~/Documents + mkdir ~/Downloads + mkdir ~/Pictures + mkdir ~/.local + mkdir ~/.local/share + cp -R /etc/nixbook/config/config ~/.config + cp /etc/nixbook/config/desktop/* ~/Desktop/ + cp -R /etc/nixbook/config/applications ~/.local/share/applications + + # The rest of the install should be hands off + # Add Nixbook config and rebuild + sudo sed -i '/hardware-configuration\.nix/a\ /etc/nixbook/base.nix' /etc/nixos/configuration.nix + + # Set up flathub repo while we have sudo + nix-shell -p flatpak --run 'sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo' + + sudo nixos-rebuild switch + + # Add flathub and some apps + flatpak install flathub com.google.Chrome -y + flatpak install flathub us.zoom.Zoom -y + flatpak install flathub org.libreoffice.LibreOffice -y + + reboot +else + echo "Nixbook Install Cancelled!" +fi diff --git a/install_lite.sh b/install_lite.sh new file mode 100755 index 0000000..ccf3cca --- /dev/null +++ b/install_lite.sh @@ -0,0 +1,29 @@ +echo "This will delete ALL local files and convert this machine to a Nixbook Lite!"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Installing NixBook Lite..." + + # Set up local files + rm -rf ~/ + mkdir ~/Desktop + mkdir ~/Documents + mkdir ~/Downloads + mkdir ~/Pictures + mkdir ~/.local + mkdir ~/.local/share + cp -R /etc/nixbook/config/config_lite ~/.config + cp /etc/nixbook/config/desktop_lite/* ~/Desktop/ + cp -R /etc/nixbook/config/applications_lite ~/.local/share/applications + + # Add Nixbook config and rebuild + sudo sed -i '/hardware-configuration\.nix/a\ /etc/nixbook/base_lite.nix' /etc/nixos/configuration.nix + sudo nixos-rebuild switch + + # Lite has no flathub to save space + + reboot +else + echo "Nixbook Lite Install Cancelled!" +fi + diff --git a/list-generations.sh b/list-generations.sh new file mode 100755 index 0000000..9b414db --- /dev/null +++ b/list-generations.sh @@ -0,0 +1 @@ +sudo nix-env --list-generations --profile /nix/var/nix/profiles/system diff --git a/powerwash.sh b/powerwash.sh new file mode 100755 index 0000000..9daf195 --- /dev/null +++ b/powerwash.sh @@ -0,0 +1,37 @@ +echo "This will delete ALL local files and reset this Nixbook!"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then +echo "Powerwashing NixBook..." + # Get latest nixbook code + sudo git -C /etc/nixbook pull + + # Erase data and set up home directory again + rm -rf ~/ + mkdir ~/Desktop + mkdir ~/Documents + mkdir ~/Downloads + mkdir ~/Pictures + mkdir ~/.local + mkdir ~/.local/share + cp -R /etc/nixbook/config/config ~/.config + cp /etc/nixbook/config/desktop/* ~/Desktop/ + cp -R /etc/nixbook/config/applications ~/.local/share/applications + + sudo rm -r /var/lib/flatpak + + # Clear space and rebuild + sudo nix-collect-garbage -d + sudo nixos-rebuild switch --upgrade + sudo nixos-rebuild list-generations + + # Add flathub and some apps + sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo + flatpak install flathub com.google.Chrome -y + flatpak install flathub us.zoom.Zoom -y + flatpak install flathub org.libreoffice.LibreOffice -y + + reboot +else + echo "Powerwashing Cancelled!" +fi diff --git a/powerwash_lite.sh b/powerwash_lite.sh new file mode 100755 index 0000000..65069f7 --- /dev/null +++ b/powerwash_lite.sh @@ -0,0 +1,30 @@ + +echo "This will delete ALL local files and reset this Nixbook Lite!"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then +echo "Powerwashing NixBook Lite..." + # Get latest nixbook code + sudo git -C /etc/nixbook pull + + # Erase data and set up home directory again + rm -rf ~/ + mkdir ~/Desktop + mkdir ~/Documents + mkdir ~/Downloads + mkdir ~/Pictures + mkdir ~/.local + mkdir ~/.local/share + cp -R /etc/nixbook/config/config_lite ~/.config + cp /etc/nixbook/config/desktop_lite/* ~/Desktop/ + cp -R /etc/nixbook/config/applications_lite ~/.local/share/applications + + # Clear space and rebuild + sudo nix-collect-garbage -d + sudo nixos-rebuild boot --upgrade + sudo nixos-rebuild list-generations + + reboot +else + echo "Powerwashing Cancelled!" +fi diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..a8a1cb2 --- /dev/null +++ b/update.sh @@ -0,0 +1,29 @@ +echo "This will update your Nixbook and reboot"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Updating Nixbook..." + + # Download the latest nixbook changes + sudo git -C /etc/nixbook reset --hard + sudo git -C /etc/nixbook clean -fd + sudo git -C /etc/nixbook pull + + # Update the nixos nix-channel to be the same as config.system.autoUpgrade.channel in base.nix or base_lite.nix + AUTOUPDATE_CHANNEL="$(sudo nix-instantiate --eval '' -A config.system.autoUpgrade.channel | tr -d '"')" + sudo nix-channel --add "${AUTOUPDATE_CHANNEL}" nixos + + # Free up space before updates + nix-collect-garbage --delete-older-than 30d + + # get the updates + flatpak update -y + sudo nixos-rebuild boot --upgrade + + # free up a little more space with hard links + nix-store --optimise + + reboot +else + echo "Update Cancelled!" +fi diff --git a/update_lite.sh b/update_lite.sh new file mode 100755 index 0000000..4e8d3f4 --- /dev/null +++ b/update_lite.sh @@ -0,0 +1,28 @@ +echo "This will update your Nixbook and reboot"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Updating Nixbook..." + + # Download the latest nixbook changes + sudo git -C /etc/nixbook reset --hard + sudo git -C /etc/nixbook clean -fd + sudo git -C /etc/nixbook pull + + # Update the nixos nix-channel to be the same as config.system.autoUpgrade.channel in base.nix or base_lite.nix + AUTOUPDATE_CHANNEL="$(sudo nix-instantiate --eval '' -A config.system.autoUpgrade.channel | tr -d '"')" + sudo nix-channel --add "${AUTOUPDATE_CHANNEL}" nixos + + # Free up space before updates + nix-collect-garbage --delete-older-than 14d + + # get the updates + sudo nixos-rebuild boot --upgrade + + # free up a little more space with hard links + nix-store --optimise + + reboot +else + echo "Update Cancelled!" +fi diff --git a/update_shutdown.sh b/update_shutdown.sh new file mode 100755 index 0000000..5678219 --- /dev/null +++ b/update_shutdown.sh @@ -0,0 +1,29 @@ +echo "This will update your Nixbook and shut down"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Updating Nixbook..." + + # Download the latest nixbook changes + sudo git -C /etc/nixbook reset --hard + sudo git -C /etc/nixbook clean -fd + sudo git -C /etc/nixbook pull + + # Update the nixos nix-channel to be the same as config.system.autoUpgrade.channel in base.nix or base_lite.nix + AUTOUPDATE_CHANNEL="$(sudo nix-instantiate --eval '' -A config.system.autoUpgrade.channel | tr -d '"')" + sudo nix-channel --add "${AUTOUPDATE_CHANNEL}" nixos + + # Free up space before updates + nix-collect-garbage --delete-older-than 30d + + # get the updates + flatpak update -y + sudo nixos-rebuild boot --upgrade + + # free up a little more space with hard links + nix-store --optimise + + systemctl poweroff +else + echo "Update Cancelled!" +fi diff --git a/update_shutdown_lite.sh b/update_shutdown_lite.sh new file mode 100755 index 0000000..328b47b --- /dev/null +++ b/update_shutdown_lite.sh @@ -0,0 +1,28 @@ +echo "This will update your Nixbook and shut down"; +read -p "Do you want to continue? (y/n): " answer + +if [[ "$answer" =~ ^[Yy]$ ]]; then + echo "Updating Nixbook..." + + # Download the latest nixbook changes + sudo git -C /etc/nixbook reset --hard + sudo git -C /etc/nixbook clean -fd + sudo git -C /etc/nixbook pull + + # Update the nixos nix-channel to be the same as config.system.autoUpgrade.channel in base.nix or base_lite.nix + AUTOUPDATE_CHANNEL="$(sudo nix-instantiate --eval '' -A config.system.autoUpgrade.channel | tr -d '"')" + sudo nix-channel --add "${AUTOUPDATE_CHANNEL}" nixos + + # Free up space before updates + nix-collect-garbage --delete-older-than 14d + + # get the updates + sudo nixos-rebuild boot --upgrade + + # free up a little more space with hard links + nix-store --optimise + + systemctl poweroff +else + echo "Update Cancelled!" +fi