commit 71b2eb960a3c1b8a70bab1e2fc9c9800a9755491 Author: Nikolai Papin Date: Wed May 14 02:34:47 2025 +0300 Initial commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6b1ec7d --- /dev/null +++ b/LICENSE @@ -0,0 +1,8 @@ +Copyright 2025 Nikolai Papin + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..cfc2492 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Kolinux Themer + +A script for organization and control of themes (or rices) with an understandable file structure. Also contains examples of flexible and portable configurations. + +This was made by me for my own use, but I'll be glad if it's going to be useful for someone else as well. + +# Installation + +# Usage + +# Creating a theme diff --git a/themes/blueleaves/bspwm_options.sh b/themes/blueleaves/bspwm_options.sh new file mode 100644 index 0000000..90c6cd3 --- /dev/null +++ b/themes/blueleaves/bspwm_options.sh @@ -0,0 +1,4 @@ +#!/bin/bash +bspc config focused_border_color \#027C9B +bspc config presel_feedback_color \#027C9B +bspc config marked_border_color \#027C9B diff --git a/themes/blueleaves/dunstrc b/themes/blueleaves/dunstrc new file mode 100644 index 0000000..896aafb --- /dev/null +++ b/themes/blueleaves/dunstrc @@ -0,0 +1,488 @@ +# See dunst(5) for all configuration options + +[global] + ### Display ### + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = none + + ### Geometry ### + + # dynamic width from 0 to 300 + # width = (0, 300) + # constant width of 300 + width = 300 + + # The maximum height of a single notification, excluding the frame. + height = 300 + + # Position the notification in the top right corner + origin = top-right + + # Offset from the origin + offset = 10x32 + + # Scale factor. It is auto-detected if value is 0. + scale = 0 + + # Maximum number of notification (0 means no limit) + notification_limit = 20 + + ### Progress bar ### + + # Turn on the progress bar. It appears when a progress hint is passed with + # for example dunstify -h int:value:12 + progress_bar = true + + # Set the progress bar height. This includes the frame, so make sure + # it's at least twice as big as the frame width. + progress_bar_height = 10 + + # Set the frame width of the progress bar + progress_bar_frame_width = 1 + + # Set the minimum width for the progress bar + progress_bar_min_width = 150 + + # Set the maximum width for the progress bar + progress_bar_max_width = 300 + + # Corner radius for the progress bar. 0 disables rounded corners. + progress_bar_corner_radius = 0 + + # Define which corners to round when drawing the progress bar. If progress_bar_corner_radius + # is set to 0 this option will be ignored. + progress_bar_corners = all + + # Corner radius for the icon image. + icon_corner_radius = 10 + + # Define which corners to round when drawing the icon image. If icon_corner_radius + # is set to 0 this option will be ignored. + icon_corners = all + + # Show how many messages are currently hidden (because of + # notification_limit). + indicate_hidden = yes + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). (X11 only) + transparency = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + # If gap_size is greater than 0, this setting will be ignored. + separator_height = 2 + + # Padding between text and separator. + padding = 8 + + # Horizontal padding. + horizontal_padding = 8 + + # Padding between text and icon. + text_icon_padding = 0 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 2 + + # Defines color of the frame around the notification window. + frame_color = "#027c9b" + + # Size of gap to display between notifications - requires a compositor. + # If value is greater than 0, separator_height will be ignored and a border + # of size frame_width will be drawn around each notification instead. + # Click events on gaps do not currently propagate to applications below. + gap_size = 0 + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = frame + + # Sort type. + # possible values are: + # * id: sort by id + # * urgency_ascending: sort by urgency (low then normal then critical) + # * urgency_descending: sort by urgency (critical then normal then low) + # * update: sort by update (most recent always at the top) + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # A client can set the 'transient' hint to bypass this. See the rules + # section for how to disable this if necessary + # idle_threshold = 120 + + ### Text ### + + font = Monospace 8 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 0 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + format = "%s\n%b" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # Vertical alignment of message text and icon. + # Possible values are "top", "center" and "bottom". + vertical_alignment = center + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Specify where to make an ellipsis in long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications. + ignore_newline = no + + # Stack together notifications with the same content + stack_duplicates = true + + # Hide the count of stacked notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A). + show_indicators = yes + + ### Icons ### + + # Recursive icon lookup. You can set a single theme, instead of having to + # define all lookup paths. + enable_recursive_icon_lookup = true + + # Set icon theme (only used for recursive icon lookup) + icon_theme = Adwaita + # You can also set multiple icon themes, with the leftmost one being used first. + # icon_theme = "Adwaita, breeze" + + # Align icons left/right/top/off + icon_position = left + + # Scale small icons up to this size, set to 0 to disable. Helpful + # for e.g. small files or high-dpi screens. In case of conflict, + # max_icon_size takes precedence over this. + min_icon_size = 32 + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 48 + + # Paths to default icons (only necessary when not using recursive icon lookup) + icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do. + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu path. + dmenu = /usr/bin/dmenu -p dunst: + + # Browser for opening urls in context menu. + browser = /usr/bin/xdg-open + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst (X11 only) + title = Dunst + + # Define the class of the windows spawned by dunst (X11 only) + class = Dunst + + # Define the corner radius of the notification window + # in pixel size. If the radius is 0, you have no rounded + # corners. + # The radius will be automatically lowered if it exceeds half of the + # notification height to avoid clipping text and/or icons. + corner_radius = 15 + + # Define which corners to round when drawing the window. If the corner radius + # is set to 0 this option will be ignored. + # + # Comma-separated list of the corners. The accepted corner values are bottom-right, + # bottom-left, top-right, top-left, top, bottom, left, right or all. + corners = all + + # Ignore the dbus closeNotification message. + # Useful to enforce the timeout set by dunst configuration. Without this + # parameter, an application may close the notification sent before the + # user defined timeout. + ignore_dbusclose = false + + ### Wayland ### + # These settings are Wayland-specific. They have no effect when using X11 + + # Uncomment this if you want to let notifications appear under fullscreen + # applications (default: overlay) + # layer = top + + # Set this to true to use X11 output on Wayland. + force_xwayland = false + + ### Legacy + + # Use the Xinerama extension instead of RandR for multi-monitor support. + # This setting is provided for compatibility with older nVidia drivers that + # do not support RandR and using it on systems that support RandR is highly + # discouraged. + # + # By enabling this setting dunst will not be able to detect when a monitor + # is connected or disconnected which might break follow mode if the screen + # layout changes. + force_xinerama = false + + ### mouse + + # Defines list of actions for each mouse event + # Possible values are: + # * none: Don't do anything. + # * do_action: Invoke the action determined by the action_name rule. If there is no + # such action, open the context menu. + # * open_url: If the notification has exactly one url, open it. If there are multiple + # ones, open the context menu. + # * close_current: Close current notification. + # * close_all: Close all notifications. + # * context: Open context menu for the notification. + # * context_all: Open context menu for all notifications. + # These values can be strung together for each mouse event, and + # will be executed in sequence. + mouse_left_click = close_current + mouse_middle_click = do_action, close_current + mouse_right_click = close_all + +# Experimental features that may or may not work correctly. Do not expect them +# to have a consistent behaviour across releases. +[experimental] + # Calculate the dpi to use on a per-monitor basis. + # If this setting is enabled the Xft.dpi value will be ignored and instead + # dunst will attempt to calculate an appropriate dpi value for each monitor + # using the resolution and physical size. This might be useful in setups + # where there are multiple screens with very different dpi values. + per_monitor_dpi = false + + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the "#" and following would be interpreted as a comment. + background = "#222222aa" + foreground = "#ffffff" + timeout = 3 + # Icon for notifications with low urgency, uncomment to enable + default_icon = ~/.icons/buuf3.46/128x128/media-information.png + +[urgency_normal] + background = "#222222aa" + foreground = "#ffffff" + timeout = 5 + override_pause_level = 30 + # Icon for notifications with normal urgency, uncomment to enable + default_icon = ~/.icons/buuf3.46/miscellaneous/128x128/status/gtk-info.png + + +[urgency_critical] + background = "#222222aa" + foreground = "#ffffff" + frame_color = "#ff0000" + background = + timeout = 0 + override_pause_level = 60 + # Icon for notifications with critical urgency, uncomment to enable + default_icon = ~/.icons/buuf3.46/miscellaneous/128x128/apps/gnome-warning.png + +# Every section that isn't one of the above is interpreted as a rules to +# override settings for certain messages. +# +# Messages can be matched by +# appname (discouraged, see desktop_entry) +# body +# category +# desktop_entry +# icon +# match_transient +# msg_urgency +# stack_tag +# summary +# +# and you can override the +# background +# foreground +# format +# frame_color +# fullscreen +# new_icon +# set_stack_tag +# set_transient +# set_category +# timeout +# urgency +# icon_position +# skip_display +# history_ignore +# action_name +# word_wrap +# ellipsize +# alignment +# hide_text +# override_pause_level +# +# Shell-like globbing will get expanded. +# +# Instead of the appname filter, it's recommended to use the desktop_entry filter. +# GLib based applications export their desktop-entry name. In comparison to the appname, +# the desktop-entry won't get localized. +# +# You can also allow a notification to appear even when paused. Notification will appear whenever notification's override_pause_level >= dunst's paused level. +# This can be used to set partial pause modes, where more urgent notifications get through, but less urgent stay paused. To do that, you can override the following in the rules: +# override_pause_level = X + +# SCRIPTING +# You can specify a script that gets run when the rule matches by +# setting the "script" option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: It might be helpful to run dunst -print in a terminal in order +# to find fitting options for rules. + +# Disable the transient hint so that idle_threshold cannot be bypassed from the +# client +#[transient_disable] +# match_transient = yes +# set_transient = no +# +# Make the handling of transient notifications more strict by making them not +# be placed in history. +#[transient_history_ignore] +# match_transient = yes +# history_ignore = yes + +# fullscreen values +# show: show the notifications, regardless if there is a fullscreen window opened +# delay: displays the new notification, if there is no fullscreen window active +# If the notification is already drawn, it won't get undrawn. +# pushback: same as delay, but when switching into fullscreen, the notification will get +# withdrawn from screen again and will get delayed like a new notification +#[fullscreen_delay_everything] +# fullscreen = delay +#[fullscreen_show_critical] +# msg_urgency = critical +# fullscreen = show + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +# # This notification will not be displayed +# summary = "foobar" +# skip_display = true + +#[history-ignore] +# # This notification will not be saved in history +# summary = "foobar" +# history_ignore = yes + +#[skip-display] +# # This notification will not be displayed, but will be included in the history +# summary = "foobar" +# skip_display = yes + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal +# +#[stack-volumes] +# appname = "some_volume_notifiers" +# set_stack_tag = "volume" +# +# vim: ft=cfg diff --git a/themes/blueleaves/fastfetch.jsonc b/themes/blueleaves/fastfetch.jsonc new file mode 100644 index 0000000..285dceb --- /dev/null +++ b/themes/blueleaves/fastfetch.jsonc @@ -0,0 +1,46 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "height": 8, + "type": "kitty", + "source": "~/Pictures/Fetch/Brawlhalla/wushangranno.png" + }, + "display": { + "separator": " ", + "color": { + "keys": "red" + }, + "key": { + "type": "icon" + } + }, + "modules": [ + "title", + "separator", + { + "type": "os", + "keyIcon": "" + }, + { + "type": "kernel", + "keyIcon": "" + }, + { + "type": "host", + "keyIcon": "" + }, + "wm", + { + "type": "memory", + "keyIcon": "󱤓" + }, + { + "type": "colors", + "key": "", + "keyIcon": "", + "block": { + }, + "symbol": "circle" + } + ] +} diff --git a/themes/blueleaves/gtk/icons/appscol/16/athena.png b/themes/blueleaves/gtk/icons/appscol/16/athena.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/athena.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/background.png b/themes/blueleaves/gtk/icons/appscol/16/background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/brightnesssettings.png b/themes/blueleaves/gtk/icons/appscol/16/brightnesssettings.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/brightnesssettings.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/cinnamon-session-properties.png b/themes/blueleaves/gtk/icons/appscol/16/cinnamon-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/cinnamon-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/cs-backgrounds.png b/themes/blueleaves/gtk/icons/appscol/16/cs-backgrounds.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/cs-backgrounds.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/cs-desktop.png b/themes/blueleaves/gtk/icons/appscol/16/cs-desktop.png new file mode 100644 index 0000000..ee0c9d8 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/cs-desktop.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/cs-startup-programs.png b/themes/blueleaves/gtk/icons/appscol/16/cs-startup-programs.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/cs-startup-programs.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/cs-workspaces.png b/themes/blueleaves/gtk/icons/appscol/16/cs-workspaces.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/cs-workspaces.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/dde-file-manager.png b/themes/blueleaves/gtk/icons/appscol/16/dde-file-manager.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/dde-file-manager.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/deepin-show-desktop.png b/themes/blueleaves/gtk/icons/appscol/16/deepin-show-desktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/deepin-show-desktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/desktop-magnifier.png b/themes/blueleaves/gtk/icons/appscol/16/desktop-magnifier.png new file mode 100644 index 0000000..4522b00 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/desktop-magnifier.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/display-brightness.png b/themes/blueleaves/gtk/icons/appscol/16/display-brightness.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/display-brightness.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/dolphin.png b/themes/blueleaves/gtk/icons/appscol/16/dolphin.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/dolphin.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/file-manager.png b/themes/blueleaves/gtk/icons/appscol/16/file-manager.png new file mode 100644 index 0000000..3cd1022 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/file-manager.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/gnome-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/16/gnome-panel-workspace-switcher.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/gnome-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/gnome-session-properties.png b/themes/blueleaves/gtk/icons/appscol/16/gnome-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/gnome-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/gnome-session.png b/themes/blueleaves/gtk/icons/appscol/16/gnome-session.png new file mode 100644 index 0000000..335a5bb Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/gnome-session.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/gnome-settings-background.png b/themes/blueleaves/gtk/icons/appscol/16/gnome-settings-background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/gnome-settings-background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/kfm.png b/themes/blueleaves/gtk/icons/appscol/16/kfm.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/kfm.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/kmag.png b/themes/blueleaves/gtk/icons/appscol/16/kmag.png new file mode 120000 index 0000000..199e4f9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/kmag.png @@ -0,0 +1 @@ +desktop-magnifier.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/kpager.png b/themes/blueleaves/gtk/icons/appscol/16/kpager.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/kpager.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/krusader_root.png b/themes/blueleaves/gtk/icons/appscol/16/krusader_root.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/krusader_root.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/krusader_user.png b/themes/blueleaves/gtk/icons/appscol/16/krusader_user.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/krusader_user.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/mate-brightness-applet.png b/themes/blueleaves/gtk/icons/appscol/16/mate-brightness-applet.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/mate-brightness-applet.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/mate-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/16/mate-panel-workspace-switcher.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/mate-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/mate-session-properties.png b/themes/blueleaves/gtk/icons/appscol/16/mate-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/mate-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/nautilus.png b/themes/blueleaves/gtk/icons/appscol/16/nautilus.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/nautilus.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/nemo-desktop.png b/themes/blueleaves/gtk/icons/appscol/16/nemo-desktop.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/nemo-desktop.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/nemo.png b/themes/blueleaves/gtk/icons/appscol/16/nemo.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/nemo.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Files.png b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Nautilus.png b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.Nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.gnome.files.png b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.gnome.nautilus.png b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.gnome.nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.frame.png b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.frame.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.frame.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.pager.png b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.pager.png new file mode 120000 index 0000000..df0517b --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.pager.png @@ -0,0 +1 @@ +workspace-switcher-right-top.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.showdesktop.png b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.win7showdesktop.png b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.win7showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/org.kde.plasma.win7showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/preferences-desktop-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/16/preferences-desktop-wallpaper.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/preferences-desktop-wallpaper.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/preferences-system-brightness-lock.png b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-brightness-lock.png new file mode 100644 index 0000000..cfa9529 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-brightness-lock.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session-services.png b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session.png b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/preferences-system-session.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/preferences-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/16/preferences-wallpaper.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/preferences-wallpaper.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/redhat-filemanager.png b/themes/blueleaves/gtk/icons/appscol/16/redhat-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/redhat-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/session-properties.png b/themes/blueleaves/gtk/icons/appscol/16/session-properties.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/session-properties.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/system-config-services.png b/themes/blueleaves/gtk/icons/appscol/16/system-config-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/system-config-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/system-file-manager.png b/themes/blueleaves/gtk/icons/appscol/16/system-file-manager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/system-file-manager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/topmenu-applet.png b/themes/blueleaves/gtk/icons/appscol/16/topmenu-applet.png new file mode 120000 index 0000000..9535bcb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/topmenu-applet.png @@ -0,0 +1 @@ +wingpanel.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/wallpaper.png b/themes/blueleaves/gtk/icons/appscol/16/wallpaper.png new file mode 100644 index 0000000..b21fc27 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/wallpaper.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/wingpanel.png b/themes/blueleaves/gtk/icons/appscol/16/wingpanel.png new file mode 100644 index 0000000..cb4d056 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/wingpanel.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-overview.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-overview.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/workspace-overview.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-left-bottom.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-left-bottom.png new file mode 100644 index 0000000..d4ee834 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-left-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-bottom.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-bottom.png new file mode 100644 index 0000000..9fa5b1b Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-top.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-top.png new file mode 100644 index 0000000..ad8c663 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-right-top.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-top-left.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-top-left.png new file mode 100644 index 0000000..1c76d02 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher-top-left.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher.png new file mode 100644 index 0000000..2aa7647 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/16/workspace-switcher.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/16/xfce-filemanager.png b/themes/blueleaves/gtk/icons/appscol/16/xfce-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/xfce-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/xfce4-backdrop.png b/themes/blueleaves/gtk/icons/appscol/16/xfce4-backdrop.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/xfce4-backdrop.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/xfce4-session.png b/themes/blueleaves/gtk/icons/appscol/16/xfce4-session.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/xfce4-session.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/16/xfce4-workspaces.png b/themes/blueleaves/gtk/icons/appscol/16/xfce4-workspaces.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/16/xfce4-workspaces.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/athena.png b/themes/blueleaves/gtk/icons/appscol/22/athena.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/athena.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/background.png b/themes/blueleaves/gtk/icons/appscol/22/background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/brightnesssettings.png b/themes/blueleaves/gtk/icons/appscol/22/brightnesssettings.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/brightnesssettings.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/cinnamon-session-properties.png b/themes/blueleaves/gtk/icons/appscol/22/cinnamon-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/cinnamon-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/cs-backgrounds.png b/themes/blueleaves/gtk/icons/appscol/22/cs-backgrounds.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/cs-backgrounds.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/cs-desktop.png b/themes/blueleaves/gtk/icons/appscol/22/cs-desktop.png new file mode 100644 index 0000000..ffb279c Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/cs-desktop.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/cs-startup-programs.png b/themes/blueleaves/gtk/icons/appscol/22/cs-startup-programs.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/cs-startup-programs.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/cs-workspaces.png b/themes/blueleaves/gtk/icons/appscol/22/cs-workspaces.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/cs-workspaces.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/dde-file-manager.png b/themes/blueleaves/gtk/icons/appscol/22/dde-file-manager.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/dde-file-manager.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/deepin-show-desktop.png b/themes/blueleaves/gtk/icons/appscol/22/deepin-show-desktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/deepin-show-desktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/desktop-magnifier.png b/themes/blueleaves/gtk/icons/appscol/22/desktop-magnifier.png new file mode 100644 index 0000000..9326038 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/desktop-magnifier.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/display-brightness.png b/themes/blueleaves/gtk/icons/appscol/22/display-brightness.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/display-brightness.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/dolphin.png b/themes/blueleaves/gtk/icons/appscol/22/dolphin.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/dolphin.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/file-manager.png b/themes/blueleaves/gtk/icons/appscol/22/file-manager.png new file mode 100644 index 0000000..b583df1 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/file-manager.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/gnome-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/22/gnome-panel-workspace-switcher.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/gnome-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/gnome-session-properties.png b/themes/blueleaves/gtk/icons/appscol/22/gnome-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/gnome-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/gnome-session.png b/themes/blueleaves/gtk/icons/appscol/22/gnome-session.png new file mode 100644 index 0000000..12204ab Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/gnome-session.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/gnome-settings-background.png b/themes/blueleaves/gtk/icons/appscol/22/gnome-settings-background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/gnome-settings-background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/kfm.png b/themes/blueleaves/gtk/icons/appscol/22/kfm.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/kfm.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/kmag.png b/themes/blueleaves/gtk/icons/appscol/22/kmag.png new file mode 120000 index 0000000..199e4f9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/kmag.png @@ -0,0 +1 @@ +desktop-magnifier.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/kpager.png b/themes/blueleaves/gtk/icons/appscol/22/kpager.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/kpager.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/krusader_root.png b/themes/blueleaves/gtk/icons/appscol/22/krusader_root.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/krusader_root.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/krusader_user.png b/themes/blueleaves/gtk/icons/appscol/22/krusader_user.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/krusader_user.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/mate-brightness-applet.png b/themes/blueleaves/gtk/icons/appscol/22/mate-brightness-applet.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/mate-brightness-applet.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/mate-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/22/mate-panel-workspace-switcher.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/mate-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/mate-session-properties.png b/themes/blueleaves/gtk/icons/appscol/22/mate-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/mate-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/nautilus.png b/themes/blueleaves/gtk/icons/appscol/22/nautilus.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/nautilus.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/nemo-desktop.png b/themes/blueleaves/gtk/icons/appscol/22/nemo-desktop.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/nemo-desktop.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/nemo.png b/themes/blueleaves/gtk/icons/appscol/22/nemo.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/nemo.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Files.png b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Nautilus.png b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.Nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.gnome.files.png b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.gnome.nautilus.png b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.gnome.nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.frame.png b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.frame.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.frame.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.pager.png b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.pager.png new file mode 120000 index 0000000..df0517b --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.pager.png @@ -0,0 +1 @@ +workspace-switcher-right-top.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.showdesktop.png b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.win7showdesktop.png b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.win7showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/org.kde.plasma.win7showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/preferences-desktop-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/22/preferences-desktop-wallpaper.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/preferences-desktop-wallpaper.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/preferences-system-brightness-lock.png b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-brightness-lock.png new file mode 100644 index 0000000..428c528 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-brightness-lock.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session-services.png b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session.png b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/preferences-system-session.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/preferences-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/22/preferences-wallpaper.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/preferences-wallpaper.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/redhat-filemanager.png b/themes/blueleaves/gtk/icons/appscol/22/redhat-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/redhat-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/session-properties.png b/themes/blueleaves/gtk/icons/appscol/22/session-properties.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/session-properties.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/system-config-services.png b/themes/blueleaves/gtk/icons/appscol/22/system-config-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/system-config-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/system-file-manager.png b/themes/blueleaves/gtk/icons/appscol/22/system-file-manager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/system-file-manager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/topmenu-applet.png b/themes/blueleaves/gtk/icons/appscol/22/topmenu-applet.png new file mode 120000 index 0000000..9535bcb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/topmenu-applet.png @@ -0,0 +1 @@ +wingpanel.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/wallpaper.png b/themes/blueleaves/gtk/icons/appscol/22/wallpaper.png new file mode 100644 index 0000000..6625b58 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/wallpaper.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/wingpanel.png b/themes/blueleaves/gtk/icons/appscol/22/wingpanel.png new file mode 100644 index 0000000..185ea3e Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/wingpanel.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-overview.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-overview.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/workspace-overview.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-left-bottom.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-left-bottom.png new file mode 100644 index 0000000..8f3b060 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-left-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-bottom.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-bottom.png new file mode 100644 index 0000000..951869e Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-top.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-top.png new file mode 100644 index 0000000..3f4a5a2 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-right-top.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-top-left.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-top-left.png new file mode 100644 index 0000000..726f720 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher-top-left.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher.png new file mode 100644 index 0000000..d966413 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/22/workspace-switcher.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/22/xfce-filemanager.png b/themes/blueleaves/gtk/icons/appscol/22/xfce-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/xfce-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/xfce4-backdrop.png b/themes/blueleaves/gtk/icons/appscol/22/xfce4-backdrop.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/xfce4-backdrop.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/xfce4-session.png b/themes/blueleaves/gtk/icons/appscol/22/xfce4-session.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/xfce4-session.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/22/xfce4-workspaces.png b/themes/blueleaves/gtk/icons/appscol/22/xfce4-workspaces.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/22/xfce4-workspaces.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/athena.png b/themes/blueleaves/gtk/icons/appscol/24/athena.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/athena.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/background.png b/themes/blueleaves/gtk/icons/appscol/24/background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/brightnesssettings.png b/themes/blueleaves/gtk/icons/appscol/24/brightnesssettings.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/brightnesssettings.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/cinnamon-session-properties.png b/themes/blueleaves/gtk/icons/appscol/24/cinnamon-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/cinnamon-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/cs-backgrounds.png b/themes/blueleaves/gtk/icons/appscol/24/cs-backgrounds.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/cs-backgrounds.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/cs-desktop.png b/themes/blueleaves/gtk/icons/appscol/24/cs-desktop.png new file mode 100644 index 0000000..13c847a Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/cs-desktop.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/cs-startup-programs.png b/themes/blueleaves/gtk/icons/appscol/24/cs-startup-programs.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/cs-startup-programs.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/cs-workspaces.png b/themes/blueleaves/gtk/icons/appscol/24/cs-workspaces.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/cs-workspaces.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/dde-file-manager.png b/themes/blueleaves/gtk/icons/appscol/24/dde-file-manager.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/dde-file-manager.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/deepin-show-desktop.png b/themes/blueleaves/gtk/icons/appscol/24/deepin-show-desktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/deepin-show-desktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/desktop-magnifier.png b/themes/blueleaves/gtk/icons/appscol/24/desktop-magnifier.png new file mode 100644 index 0000000..e2fd4c1 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/desktop-magnifier.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/display-brightness.png b/themes/blueleaves/gtk/icons/appscol/24/display-brightness.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/display-brightness.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/dolphin.png b/themes/blueleaves/gtk/icons/appscol/24/dolphin.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/dolphin.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/file-manager.png b/themes/blueleaves/gtk/icons/appscol/24/file-manager.png new file mode 100644 index 0000000..31232c5 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/file-manager.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/gnome-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/24/gnome-panel-workspace-switcher.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/gnome-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/gnome-session-properties.png b/themes/blueleaves/gtk/icons/appscol/24/gnome-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/gnome-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/gnome-session.png b/themes/blueleaves/gtk/icons/appscol/24/gnome-session.png new file mode 100644 index 0000000..5622396 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/gnome-session.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/gnome-settings-background.png b/themes/blueleaves/gtk/icons/appscol/24/gnome-settings-background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/gnome-settings-background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/kfm.png b/themes/blueleaves/gtk/icons/appscol/24/kfm.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/kfm.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/kmag.png b/themes/blueleaves/gtk/icons/appscol/24/kmag.png new file mode 120000 index 0000000..199e4f9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/kmag.png @@ -0,0 +1 @@ +desktop-magnifier.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/kpager.png b/themes/blueleaves/gtk/icons/appscol/24/kpager.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/kpager.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/krusader_root.png b/themes/blueleaves/gtk/icons/appscol/24/krusader_root.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/krusader_root.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/krusader_user.png b/themes/blueleaves/gtk/icons/appscol/24/krusader_user.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/krusader_user.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/mate-brightness-applet.png b/themes/blueleaves/gtk/icons/appscol/24/mate-brightness-applet.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/mate-brightness-applet.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/mate-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/24/mate-panel-workspace-switcher.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/mate-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/mate-session-properties.png b/themes/blueleaves/gtk/icons/appscol/24/mate-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/mate-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/nautilus.png b/themes/blueleaves/gtk/icons/appscol/24/nautilus.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/nautilus.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/nemo-desktop.png b/themes/blueleaves/gtk/icons/appscol/24/nemo-desktop.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/nemo-desktop.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/nemo.png b/themes/blueleaves/gtk/icons/appscol/24/nemo.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/nemo.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Files.png b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Nautilus.png b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.Nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.gnome.files.png b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.gnome.nautilus.png b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.gnome.nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.frame.png b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.frame.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.frame.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.pager.png b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.pager.png new file mode 120000 index 0000000..df0517b --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.pager.png @@ -0,0 +1 @@ +workspace-switcher-right-top.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.showdesktop.png b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.win7showdesktop.png b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.win7showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/org.kde.plasma.win7showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/preferences-desktop-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/24/preferences-desktop-wallpaper.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/preferences-desktop-wallpaper.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/preferences-system-brightness-lock.png b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-brightness-lock.png new file mode 100644 index 0000000..e08213b Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-brightness-lock.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session-services.png b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session.png b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/preferences-system-session.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/preferences-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/24/preferences-wallpaper.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/preferences-wallpaper.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/redhat-filemanager.png b/themes/blueleaves/gtk/icons/appscol/24/redhat-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/redhat-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/session-properties.png b/themes/blueleaves/gtk/icons/appscol/24/session-properties.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/session-properties.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/system-config-services.png b/themes/blueleaves/gtk/icons/appscol/24/system-config-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/system-config-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/system-file-manager.png b/themes/blueleaves/gtk/icons/appscol/24/system-file-manager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/system-file-manager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/topmenu-applet.png b/themes/blueleaves/gtk/icons/appscol/24/topmenu-applet.png new file mode 120000 index 0000000..9535bcb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/topmenu-applet.png @@ -0,0 +1 @@ +wingpanel.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/wallpaper.png b/themes/blueleaves/gtk/icons/appscol/24/wallpaper.png new file mode 100644 index 0000000..fb1838e Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/wallpaper.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/wingpanel.png b/themes/blueleaves/gtk/icons/appscol/24/wingpanel.png new file mode 100644 index 0000000..c4a6311 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/wingpanel.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-overview.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-overview.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/workspace-overview.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-left-bottom.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-left-bottom.png new file mode 100644 index 0000000..b619d7b Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-left-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-bottom.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-bottom.png new file mode 100644 index 0000000..73fa037 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-top.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-top.png new file mode 100644 index 0000000..37591dd Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-right-top.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-top-left.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-top-left.png new file mode 100644 index 0000000..b7f630b Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher-top-left.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher.png new file mode 100644 index 0000000..51bec9d Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/24/workspace-switcher.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/24/xfce-filemanager.png b/themes/blueleaves/gtk/icons/appscol/24/xfce-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/xfce-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/xfce4-backdrop.png b/themes/blueleaves/gtk/icons/appscol/24/xfce4-backdrop.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/xfce4-backdrop.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/xfce4-session.png b/themes/blueleaves/gtk/icons/appscol/24/xfce4-session.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/xfce4-session.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/24/xfce4-workspaces.png b/themes/blueleaves/gtk/icons/appscol/24/xfce4-workspaces.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/24/xfce4-workspaces.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/athena.png b/themes/blueleaves/gtk/icons/appscol/32/athena.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/athena.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/background.png b/themes/blueleaves/gtk/icons/appscol/32/background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/brightnesssettings.png b/themes/blueleaves/gtk/icons/appscol/32/brightnesssettings.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/brightnesssettings.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/cinnamon-session-properties.png b/themes/blueleaves/gtk/icons/appscol/32/cinnamon-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/cinnamon-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/cs-backgrounds.png b/themes/blueleaves/gtk/icons/appscol/32/cs-backgrounds.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/cs-backgrounds.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/cs-desktop.png b/themes/blueleaves/gtk/icons/appscol/32/cs-desktop.png new file mode 100644 index 0000000..fdee847 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/cs-desktop.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/cs-startup-programs.png b/themes/blueleaves/gtk/icons/appscol/32/cs-startup-programs.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/cs-startup-programs.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/cs-workspaces.png b/themes/blueleaves/gtk/icons/appscol/32/cs-workspaces.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/cs-workspaces.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/dde-file-manager.png b/themes/blueleaves/gtk/icons/appscol/32/dde-file-manager.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/dde-file-manager.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/deepin-show-desktop.png b/themes/blueleaves/gtk/icons/appscol/32/deepin-show-desktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/deepin-show-desktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/desktop-magnifier.png b/themes/blueleaves/gtk/icons/appscol/32/desktop-magnifier.png new file mode 100644 index 0000000..4e067c4 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/desktop-magnifier.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/display-brightness.png b/themes/blueleaves/gtk/icons/appscol/32/display-brightness.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/display-brightness.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/dolphin.png b/themes/blueleaves/gtk/icons/appscol/32/dolphin.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/dolphin.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/file-manager.png b/themes/blueleaves/gtk/icons/appscol/32/file-manager.png new file mode 100644 index 0000000..bb788ad Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/file-manager.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/gnome-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/32/gnome-panel-workspace-switcher.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/gnome-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/gnome-session-properties.png b/themes/blueleaves/gtk/icons/appscol/32/gnome-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/gnome-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/gnome-session.png b/themes/blueleaves/gtk/icons/appscol/32/gnome-session.png new file mode 100644 index 0000000..06a7aaa Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/gnome-session.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/gnome-settings-background.png b/themes/blueleaves/gtk/icons/appscol/32/gnome-settings-background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/gnome-settings-background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/kfm.png b/themes/blueleaves/gtk/icons/appscol/32/kfm.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/kfm.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/kmag.png b/themes/blueleaves/gtk/icons/appscol/32/kmag.png new file mode 120000 index 0000000..199e4f9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/kmag.png @@ -0,0 +1 @@ +desktop-magnifier.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/kpager.png b/themes/blueleaves/gtk/icons/appscol/32/kpager.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/kpager.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/krusader_root.png b/themes/blueleaves/gtk/icons/appscol/32/krusader_root.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/krusader_root.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/krusader_user.png b/themes/blueleaves/gtk/icons/appscol/32/krusader_user.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/krusader_user.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/mate-brightness-applet.png b/themes/blueleaves/gtk/icons/appscol/32/mate-brightness-applet.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/mate-brightness-applet.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/mate-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/32/mate-panel-workspace-switcher.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/mate-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/mate-session-properties.png b/themes/blueleaves/gtk/icons/appscol/32/mate-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/mate-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/nautilus.png b/themes/blueleaves/gtk/icons/appscol/32/nautilus.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/nautilus.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/nemo-desktop.png b/themes/blueleaves/gtk/icons/appscol/32/nemo-desktop.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/nemo-desktop.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/nemo.png b/themes/blueleaves/gtk/icons/appscol/32/nemo.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/nemo.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Files.png b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Nautilus.png b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.Nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.gnome.files.png b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.gnome.nautilus.png b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.gnome.nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.frame.png b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.frame.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.frame.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.pager.png b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.pager.png new file mode 120000 index 0000000..df0517b --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.pager.png @@ -0,0 +1 @@ +workspace-switcher-right-top.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.showdesktop.png b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.win7showdesktop.png b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.win7showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/org.kde.plasma.win7showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/preferences-desktop-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/32/preferences-desktop-wallpaper.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/preferences-desktop-wallpaper.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/preferences-system-brightness-lock.png b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-brightness-lock.png new file mode 100644 index 0000000..9f3bd63 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-brightness-lock.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session-services.png b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session.png b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/preferences-system-session.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/preferences-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/32/preferences-wallpaper.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/preferences-wallpaper.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/redhat-filemanager.png b/themes/blueleaves/gtk/icons/appscol/32/redhat-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/redhat-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/session-properties.png b/themes/blueleaves/gtk/icons/appscol/32/session-properties.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/session-properties.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/system-config-services.png b/themes/blueleaves/gtk/icons/appscol/32/system-config-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/system-config-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/system-file-manager.png b/themes/blueleaves/gtk/icons/appscol/32/system-file-manager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/system-file-manager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/topmenu-applet.png b/themes/blueleaves/gtk/icons/appscol/32/topmenu-applet.png new file mode 120000 index 0000000..9535bcb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/topmenu-applet.png @@ -0,0 +1 @@ +wingpanel.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/wallpaper.png b/themes/blueleaves/gtk/icons/appscol/32/wallpaper.png new file mode 100644 index 0000000..3009fb4 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/wallpaper.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/wingpanel.png b/themes/blueleaves/gtk/icons/appscol/32/wingpanel.png new file mode 100644 index 0000000..4a66e73 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/wingpanel.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-overview.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-overview.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/workspace-overview.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-left-bottom.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-left-bottom.png new file mode 100644 index 0000000..8a06ac8 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-left-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-bottom.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-bottom.png new file mode 100644 index 0000000..2eba90d Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-top.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-top.png new file mode 100644 index 0000000..20bfec4 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-right-top.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-top-left.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-top-left.png new file mode 100644 index 0000000..88e8131 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher-top-left.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher.png new file mode 100644 index 0000000..e677675 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/32/workspace-switcher.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/32/xfce-filemanager.png b/themes/blueleaves/gtk/icons/appscol/32/xfce-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/xfce-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/xfce4-backdrop.png b/themes/blueleaves/gtk/icons/appscol/32/xfce4-backdrop.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/xfce4-backdrop.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/xfce4-session.png b/themes/blueleaves/gtk/icons/appscol/32/xfce4-session.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/xfce4-session.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/32/xfce4-workspaces.png b/themes/blueleaves/gtk/icons/appscol/32/xfce4-workspaces.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/32/xfce4-workspaces.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/athena.png b/themes/blueleaves/gtk/icons/appscol/48/athena.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/athena.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/background.png b/themes/blueleaves/gtk/icons/appscol/48/background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/brightnesssettings.png b/themes/blueleaves/gtk/icons/appscol/48/brightnesssettings.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/brightnesssettings.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/cinnamon-session-properties.png b/themes/blueleaves/gtk/icons/appscol/48/cinnamon-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/cinnamon-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/cs-backgrounds.png b/themes/blueleaves/gtk/icons/appscol/48/cs-backgrounds.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/cs-backgrounds.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/cs-desktop.png b/themes/blueleaves/gtk/icons/appscol/48/cs-desktop.png new file mode 100644 index 0000000..01125b3 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/cs-desktop.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/cs-startup-programs.png b/themes/blueleaves/gtk/icons/appscol/48/cs-startup-programs.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/cs-startup-programs.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/cs-workspaces.png b/themes/blueleaves/gtk/icons/appscol/48/cs-workspaces.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/cs-workspaces.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/dde-file-manager.png b/themes/blueleaves/gtk/icons/appscol/48/dde-file-manager.png new file mode 120000 index 0000000..d3acbaa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/dde-file-manager.png @@ -0,0 +1 @@ +system-file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/deepin-show-desktop.png b/themes/blueleaves/gtk/icons/appscol/48/deepin-show-desktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/deepin-show-desktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/desktop-magnifier.png b/themes/blueleaves/gtk/icons/appscol/48/desktop-magnifier.png new file mode 100644 index 0000000..18748dd Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/desktop-magnifier.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/display-brightness.png b/themes/blueleaves/gtk/icons/appscol/48/display-brightness.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/display-brightness.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/dolphin.png b/themes/blueleaves/gtk/icons/appscol/48/dolphin.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/dolphin.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/file-manager.png b/themes/blueleaves/gtk/icons/appscol/48/file-manager.png new file mode 100644 index 0000000..e7c2065 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/file-manager.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/gnome-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/48/gnome-panel-workspace-switcher.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/gnome-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/gnome-session-properties.png b/themes/blueleaves/gtk/icons/appscol/48/gnome-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/gnome-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/gnome-session.png b/themes/blueleaves/gtk/icons/appscol/48/gnome-session.png new file mode 100644 index 0000000..0e97606 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/gnome-session.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/gnome-settings-background.png b/themes/blueleaves/gtk/icons/appscol/48/gnome-settings-background.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/gnome-settings-background.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/kfm.png b/themes/blueleaves/gtk/icons/appscol/48/kfm.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/kfm.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/kmag.png b/themes/blueleaves/gtk/icons/appscol/48/kmag.png new file mode 120000 index 0000000..199e4f9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/kmag.png @@ -0,0 +1 @@ +desktop-magnifier.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/kpager.png b/themes/blueleaves/gtk/icons/appscol/48/kpager.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/kpager.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/krusader_root.png b/themes/blueleaves/gtk/icons/appscol/48/krusader_root.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/krusader_root.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/krusader_user.png b/themes/blueleaves/gtk/icons/appscol/48/krusader_user.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/krusader_user.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/mate-brightness-applet.png b/themes/blueleaves/gtk/icons/appscol/48/mate-brightness-applet.png new file mode 120000 index 0000000..e730160 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/mate-brightness-applet.png @@ -0,0 +1 @@ +preferences-system-brightness-lock.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/mate-panel-workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/48/mate-panel-workspace-switcher.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/mate-panel-workspace-switcher.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/mate-session-properties.png b/themes/blueleaves/gtk/icons/appscol/48/mate-session-properties.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/mate-session-properties.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/nautilus.png b/themes/blueleaves/gtk/icons/appscol/48/nautilus.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/nautilus.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/nemo-desktop.png b/themes/blueleaves/gtk/icons/appscol/48/nemo-desktop.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/nemo-desktop.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/nemo.png b/themes/blueleaves/gtk/icons/appscol/48/nemo.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/nemo.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Files.png b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Nautilus.png b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.Nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.gnome.files.png b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.files.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.files.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.gnome.nautilus.png b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.nautilus.png new file mode 120000 index 0000000..9b88df5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.gnome.nautilus.png @@ -0,0 +1 @@ +nautilus.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.frame.png b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.frame.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.frame.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.pager.png b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.pager.png new file mode 120000 index 0000000..df0517b --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.pager.png @@ -0,0 +1 @@ +workspace-switcher-right-top.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.showdesktop.png b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.win7showdesktop.png b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.win7showdesktop.png new file mode 120000 index 0000000..732a33c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/org.kde.plasma.win7showdesktop.png @@ -0,0 +1 @@ +cs-desktop.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/preferences-desktop-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/48/preferences-desktop-wallpaper.png new file mode 120000 index 0000000..cf6a2cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/preferences-desktop-wallpaper.png @@ -0,0 +1 @@ +wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/preferences-system-brightness-lock.png b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-brightness-lock.png new file mode 100644 index 0000000..5cb9be7 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-brightness-lock.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session-services.png b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session.png b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/preferences-system-session.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/preferences-wallpaper.png b/themes/blueleaves/gtk/icons/appscol/48/preferences-wallpaper.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/preferences-wallpaper.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/redhat-filemanager.png b/themes/blueleaves/gtk/icons/appscol/48/redhat-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/redhat-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/session-properties.png b/themes/blueleaves/gtk/icons/appscol/48/session-properties.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/session-properties.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/system-config-services.png b/themes/blueleaves/gtk/icons/appscol/48/system-config-services.png new file mode 120000 index 0000000..8789755 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/system-config-services.png @@ -0,0 +1 @@ +session-properties.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/system-file-manager.png b/themes/blueleaves/gtk/icons/appscol/48/system-file-manager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/system-file-manager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/topmenu-applet.png b/themes/blueleaves/gtk/icons/appscol/48/topmenu-applet.png new file mode 120000 index 0000000..9535bcb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/topmenu-applet.png @@ -0,0 +1 @@ +wingpanel.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/wallpaper.png b/themes/blueleaves/gtk/icons/appscol/48/wallpaper.png new file mode 100644 index 0000000..8434c6d Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/wallpaper.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/wingpanel.png b/themes/blueleaves/gtk/icons/appscol/48/wingpanel.png new file mode 100644 index 0000000..0285edd Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/wingpanel.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-overview.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-overview.png new file mode 120000 index 0000000..f478eb5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/workspace-overview.png @@ -0,0 +1 @@ +workspace-switcher.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-left-bottom.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-left-bottom.png new file mode 100644 index 0000000..796a11a Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-left-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-bottom.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-bottom.png new file mode 100644 index 0000000..23421d9 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-bottom.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-top.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-top.png new file mode 100644 index 0000000..69b906c Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-right-top.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-top-left.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-top-left.png new file mode 100644 index 0000000..bd8dd58 Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher-top-left.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher.png b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher.png new file mode 100644 index 0000000..e0f6f9d Binary files /dev/null and b/themes/blueleaves/gtk/icons/appscol/48/workspace-switcher.png differ diff --git a/themes/blueleaves/gtk/icons/appscol/48/xfce-filemanager.png b/themes/blueleaves/gtk/icons/appscol/48/xfce-filemanager.png new file mode 120000 index 0000000..b9df032 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/xfce-filemanager.png @@ -0,0 +1 @@ +file-manager.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/xfce4-backdrop.png b/themes/blueleaves/gtk/icons/appscol/48/xfce4-backdrop.png new file mode 120000 index 0000000..a1e03ef --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/xfce4-backdrop.png @@ -0,0 +1 @@ +preferences-desktop-wallpaper.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/xfce4-session.png b/themes/blueleaves/gtk/icons/appscol/48/xfce4-session.png new file mode 120000 index 0000000..5efb9cb --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/xfce4-session.png @@ -0,0 +1 @@ +gnome-session.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/48/xfce4-workspaces.png b/themes/blueleaves/gtk/icons/appscol/48/xfce4-workspaces.png new file mode 120000 index 0000000..318700c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/48/xfce4-workspaces.png @@ -0,0 +1 @@ +workspace-switcher-top-left.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/athena.svg b/themes/blueleaves/gtk/icons/appscol/96/athena.svg new file mode 120000 index 0000000..abdd0fd --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/athena.svg @@ -0,0 +1 @@ +system-file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/background.svg b/themes/blueleaves/gtk/icons/appscol/96/background.svg new file mode 120000 index 0000000..b51d9aa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/background.svg @@ -0,0 +1 @@ +wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/brightnesssettings.svg b/themes/blueleaves/gtk/icons/appscol/96/brightnesssettings.svg new file mode 120000 index 0000000..75d9c9d --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/brightnesssettings.svg @@ -0,0 +1 @@ +preferences-system-brightness-lock.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/cinnamon-session-properties.svg b/themes/blueleaves/gtk/icons/appscol/96/cinnamon-session-properties.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/cinnamon-session-properties.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/cs-backgrounds.svg b/themes/blueleaves/gtk/icons/appscol/96/cs-backgrounds.svg new file mode 120000 index 0000000..b51d9aa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/cs-backgrounds.svg @@ -0,0 +1 @@ +wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/cs-desktop.svg b/themes/blueleaves/gtk/icons/appscol/96/cs-desktop.svg new file mode 100644 index 0000000..5a45bf9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/cs-desktop.svg @@ -0,0 +1,565 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/cs-startup-programs.svg b/themes/blueleaves/gtk/icons/appscol/96/cs-startup-programs.svg new file mode 100644 index 0000000..403d7c1 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/cs-startup-programs.svg @@ -0,0 +1,1344 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/cs-workspaces.svg b/themes/blueleaves/gtk/icons/appscol/96/cs-workspaces.svg new file mode 120000 index 0000000..c6a5f62 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/cs-workspaces.svg @@ -0,0 +1 @@ +workspace-switcher.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/dde-file-manager.svg b/themes/blueleaves/gtk/icons/appscol/96/dde-file-manager.svg new file mode 120000 index 0000000..abdd0fd --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/dde-file-manager.svg @@ -0,0 +1 @@ +system-file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/deepin-show-desktop.svg b/themes/blueleaves/gtk/icons/appscol/96/deepin-show-desktop.svg new file mode 120000 index 0000000..134c2f8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/deepin-show-desktop.svg @@ -0,0 +1 @@ +cs-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/desktop-magnifier.svg b/themes/blueleaves/gtk/icons/appscol/96/desktop-magnifier.svg new file mode 100644 index 0000000..2dbf8f6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/desktop-magnifier.svg @@ -0,0 +1,942 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/display-brightness.svg b/themes/blueleaves/gtk/icons/appscol/96/display-brightness.svg new file mode 120000 index 0000000..75d9c9d --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/display-brightness.svg @@ -0,0 +1 @@ +preferences-system-brightness-lock.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/dolphin.svg b/themes/blueleaves/gtk/icons/appscol/96/dolphin.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/dolphin.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/file-manager.svg b/themes/blueleaves/gtk/icons/appscol/96/file-manager.svg new file mode 100644 index 0000000..274a1f0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/file-manager.svg @@ -0,0 +1,744 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/gnome-panel-workspace-switcher.svg b/themes/blueleaves/gtk/icons/appscol/96/gnome-panel-workspace-switcher.svg new file mode 120000 index 0000000..c6a5f62 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/gnome-panel-workspace-switcher.svg @@ -0,0 +1 @@ +workspace-switcher.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/gnome-session-properties.svg b/themes/blueleaves/gtk/icons/appscol/96/gnome-session-properties.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/gnome-session-properties.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/gnome-session.svg b/themes/blueleaves/gtk/icons/appscol/96/gnome-session.svg new file mode 100644 index 0000000..5a92210 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/gnome-session.svg @@ -0,0 +1,1320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/gnome-settings-background.svg b/themes/blueleaves/gtk/icons/appscol/96/gnome-settings-background.svg new file mode 120000 index 0000000..b51d9aa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/gnome-settings-background.svg @@ -0,0 +1 @@ +wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/kfm.svg b/themes/blueleaves/gtk/icons/appscol/96/kfm.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/kfm.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/kmag.svg b/themes/blueleaves/gtk/icons/appscol/96/kmag.svg new file mode 120000 index 0000000..fa92ab6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/kmag.svg @@ -0,0 +1 @@ +desktop-magnifier.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/kpager.svg b/themes/blueleaves/gtk/icons/appscol/96/kpager.svg new file mode 120000 index 0000000..c6a5f62 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/kpager.svg @@ -0,0 +1 @@ +workspace-switcher.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/krusader_root.svg b/themes/blueleaves/gtk/icons/appscol/96/krusader_root.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/krusader_root.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/krusader_user.svg b/themes/blueleaves/gtk/icons/appscol/96/krusader_user.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/krusader_user.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/mate-brightness-applet.svg b/themes/blueleaves/gtk/icons/appscol/96/mate-brightness-applet.svg new file mode 120000 index 0000000..75d9c9d --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/mate-brightness-applet.svg @@ -0,0 +1 @@ +preferences-system-brightness-lock.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/mate-panel-workspace-switcher.svg b/themes/blueleaves/gtk/icons/appscol/96/mate-panel-workspace-switcher.svg new file mode 120000 index 0000000..8352b2e --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/mate-panel-workspace-switcher.svg @@ -0,0 +1 @@ +workspace-switcher-top-left.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/mate-session-properties.svg b/themes/blueleaves/gtk/icons/appscol/96/mate-session-properties.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/mate-session-properties.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/nautilus.svg b/themes/blueleaves/gtk/icons/appscol/96/nautilus.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/nautilus.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/nemo-desktop.svg b/themes/blueleaves/gtk/icons/appscol/96/nemo-desktop.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/nemo-desktop.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/nemo.svg b/themes/blueleaves/gtk/icons/appscol/96/nemo.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/nemo.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Files.svg b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Files.svg new file mode 120000 index 0000000..edc468c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Files.svg @@ -0,0 +1 @@ +nautilus.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Nautilus.svg b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Nautilus.svg new file mode 120000 index 0000000..edc468c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.Nautilus.svg @@ -0,0 +1 @@ +nautilus.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.gnome.files.svg b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.files.svg new file mode 120000 index 0000000..edc468c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.files.svg @@ -0,0 +1 @@ +nautilus.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.gnome.nautilus.svg b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.nautilus.svg new file mode 120000 index 0000000..edc468c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.gnome.nautilus.svg @@ -0,0 +1 @@ +nautilus.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.frame.svg b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.frame.svg new file mode 120000 index 0000000..911ba54 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.frame.svg @@ -0,0 +1 @@ +preferences-desktop-wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.pager.svg b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.pager.svg new file mode 120000 index 0000000..f57e576 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.pager.svg @@ -0,0 +1 @@ +workspace-switcher-right-top.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.showdesktop.svg b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.showdesktop.svg new file mode 120000 index 0000000..134c2f8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.showdesktop.svg @@ -0,0 +1 @@ +cs-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.win7showdesktop.svg b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.win7showdesktop.svg new file mode 120000 index 0000000..134c2f8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/org.kde.plasma.win7showdesktop.svg @@ -0,0 +1 @@ +cs-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/preferences-desktop-wallpaper.svg b/themes/blueleaves/gtk/icons/appscol/96/preferences-desktop-wallpaper.svg new file mode 120000 index 0000000..b51d9aa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/preferences-desktop-wallpaper.svg @@ -0,0 +1 @@ +wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/preferences-system-brightness-lock.svg b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-brightness-lock.svg new file mode 100644 index 0000000..560b9ae --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-brightness-lock.svg @@ -0,0 +1,942 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session-services.svg b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session-services.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session-services.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session.svg b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/preferences-system-session.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/preferences-wallpaper.svg b/themes/blueleaves/gtk/icons/appscol/96/preferences-wallpaper.svg new file mode 120000 index 0000000..911ba54 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/preferences-wallpaper.svg @@ -0,0 +1 @@ +preferences-desktop-wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/redhat-filemanager.svg b/themes/blueleaves/gtk/icons/appscol/96/redhat-filemanager.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/redhat-filemanager.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/session-properties.svg b/themes/blueleaves/gtk/icons/appscol/96/session-properties.svg new file mode 120000 index 0000000..9930f3c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/session-properties.svg @@ -0,0 +1 @@ +gnome-session.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/system-config-services.svg b/themes/blueleaves/gtk/icons/appscol/96/system-config-services.svg new file mode 120000 index 0000000..1752c2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/system-config-services.svg @@ -0,0 +1 @@ +session-properties.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/system-file-manager.svg b/themes/blueleaves/gtk/icons/appscol/96/system-file-manager.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/system-file-manager.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/topmenu-applet.svg b/themes/blueleaves/gtk/icons/appscol/96/topmenu-applet.svg new file mode 120000 index 0000000..408d1e7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/topmenu-applet.svg @@ -0,0 +1 @@ +wingpanel.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/wallpaper.svg b/themes/blueleaves/gtk/icons/appscol/96/wallpaper.svg new file mode 100644 index 0000000..f1ce8c1 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/wallpaper.svg @@ -0,0 +1,1128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/wingpanel.svg b/themes/blueleaves/gtk/icons/appscol/96/wingpanel.svg new file mode 100644 index 0000000..26c883f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/wingpanel.svg @@ -0,0 +1,923 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-overview.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-overview.svg new file mode 100644 index 0000000..1665d56 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-overview.svg @@ -0,0 +1,1028 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-left-bottom.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-left-bottom.svg new file mode 100644 index 0000000..9c234fa --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-left-bottom.svg @@ -0,0 +1,1197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-bottom.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-bottom.svg new file mode 100644 index 0000000..e528317 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-bottom.svg @@ -0,0 +1,1197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-top.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-top.svg new file mode 100644 index 0000000..c94ac6f --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-right-top.svg @@ -0,0 +1,1197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-top-left.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-top-left.svg new file mode 100644 index 0000000..1874ca1 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher-top-left.svg @@ -0,0 +1,1197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher.svg b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher.svg new file mode 100644 index 0000000..04d76c6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/workspace-switcher.svg @@ -0,0 +1,1004 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/appscol/96/xfce-filemanager.svg b/themes/blueleaves/gtk/icons/appscol/96/xfce-filemanager.svg new file mode 120000 index 0000000..41092c8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/xfce-filemanager.svg @@ -0,0 +1 @@ +file-manager.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/xfce4-backdrop.svg b/themes/blueleaves/gtk/icons/appscol/96/xfce4-backdrop.svg new file mode 120000 index 0000000..911ba54 --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/xfce4-backdrop.svg @@ -0,0 +1 @@ +preferences-desktop-wallpaper.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/xfce4-session.svg b/themes/blueleaves/gtk/icons/appscol/96/xfce4-session.svg new file mode 120000 index 0000000..9930f3c --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/xfce4-session.svg @@ -0,0 +1 @@ +gnome-session.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/appscol/96/xfce4-workspaces.svg b/themes/blueleaves/gtk/icons/appscol/96/xfce4-workspaces.svg new file mode 120000 index 0000000..8352b2e --- /dev/null +++ b/themes/blueleaves/gtk/icons/appscol/96/xfce4-workspaces.svg @@ -0,0 +1 @@ +workspace-switcher-top-left.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/16/network_fs.png b/themes/blueleaves/gtk/icons/devices/16/network_fs.png new file mode 100644 index 0000000..c9e1836 Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/16/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/16/nfs.png b/themes/blueleaves/gtk/icons/devices/16/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/16/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/16/samba.png b/themes/blueleaves/gtk/icons/devices/16/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/16/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/22/network_fs.png b/themes/blueleaves/gtk/icons/devices/22/network_fs.png new file mode 100644 index 0000000..a1b0bf6 Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/22/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/22/nfs.png b/themes/blueleaves/gtk/icons/devices/22/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/22/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/22/samba.png b/themes/blueleaves/gtk/icons/devices/22/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/22/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/24/network_fs.png b/themes/blueleaves/gtk/icons/devices/24/network_fs.png new file mode 100644 index 0000000..9396713 Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/24/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/24/nfs.png b/themes/blueleaves/gtk/icons/devices/24/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/24/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/24/samba.png b/themes/blueleaves/gtk/icons/devices/24/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/24/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/32/network_fs.png b/themes/blueleaves/gtk/icons/devices/32/network_fs.png new file mode 100644 index 0000000..11a739a Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/32/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/32/nfs.png b/themes/blueleaves/gtk/icons/devices/32/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/32/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/32/samba.png b/themes/blueleaves/gtk/icons/devices/32/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/32/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/48/network_fs.png b/themes/blueleaves/gtk/icons/devices/48/network_fs.png new file mode 100644 index 0000000..da12b72 Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/48/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/48/nfs.png b/themes/blueleaves/gtk/icons/devices/48/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/48/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/48/samba.png b/themes/blueleaves/gtk/icons/devices/48/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/48/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/96/network_fs.png b/themes/blueleaves/gtk/icons/devices/96/network_fs.png new file mode 100644 index 0000000..07f18ae Binary files /dev/null and b/themes/blueleaves/gtk/icons/devices/96/network_fs.png differ diff --git a/themes/blueleaves/gtk/icons/devices/96/nfs.png b/themes/blueleaves/gtk/icons/devices/96/nfs.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/96/nfs.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/96/samba.png b/themes/blueleaves/gtk/icons/devices/96/samba.png new file mode 120000 index 0000000..9eb409a --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/96/samba.png @@ -0,0 +1 @@ +network_fs.png \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/scalable/network_fs.svg b/themes/blueleaves/gtk/icons/devices/scalable/network_fs.svg new file mode 100644 index 0000000..f41c18f --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/scalable/network_fs.svg @@ -0,0 +1,706 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/devices/scalable/nfs.svg b/themes/blueleaves/gtk/icons/devices/scalable/nfs.svg new file mode 120000 index 0000000..d8f91a8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/scalable/nfs.svg @@ -0,0 +1 @@ +network_fs.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/devices/scalable/samba.svg b/themes/blueleaves/gtk/icons/devices/scalable/samba.svg new file mode 120000 index 0000000..d8f91a8 --- /dev/null +++ b/themes/blueleaves/gtk/icons/devices/scalable/samba.svg @@ -0,0 +1 @@ +network_fs.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/index.theme b/themes/blueleaves/gtk/icons/index.theme new file mode 100644 index 0000000..5fd4bfe --- /dev/null +++ b/themes/blueleaves/gtk/icons/index.theme @@ -0,0 +1,490 @@ +[Icon Theme] +Name=Obsidian-Teal +Inherits=Obsidian +Comment=Icon theme project with tilish style, by Tiheum modified by madmaxms +Directories=actions/16,actions/16s,apps/16,apps/16s,appscol/16,categories/16,devices/16,emblems/16,mimetypes/16,places/16,places/16s,status/16,stock/16,actions/22,actions/22s,apps/22,appscol/22,categories/22,devices/22,emblems/22,mimetypes/22,places/22,status/22,status/22s,stock/22,actions/24,actions/24s,apps/24,appscol/24,categories/24,devices/24,emblems/24,mimetypes/24,places/24,status/24,stock/24,actions/32,apps/32,appscol/32,categories/32,devices/32,emblems/32,mimetypes/32,places/32,status/32,stock/32,actions/48,apps/48,appscol/48,categories/48,devices/48,emblems/48,mimetypes/48,places/48,status/48,stock/48,actions/64,categories/64,devices/64,emblems/64,mimetypes/64,places/64,status/64,stock/64,actions/96,apps/96,appscol/96,categories/96,devices/96,emblems/96,mimetypes/96,places/96,status/96,stock/96,actions/scalable,apps/scalable,categories/scalable,devices/scalable,emblems/scalable,status/16s,stock/scalable + +KDE-Extensions=.svg + +[actions/16] +Size=16 +Context=Actions +Type=Fixed + +[actions/16s] +Size=16 +Context=Actions +Type=Scalable +MinSize=16 +MaxSize=512 + +[apps/16] +Size=16 +Context=Applications +Type=Fixed + +[apps/16s] +Size=16 +Context=Applications +Type=Scalable +MinSize=16 +MaxSize=512 + +[appscol/16] +Size=16 +Context=Applications +Type=Fixed + +[devices/16] +Size=16 +Context=Devices +Type=Fixed + +[categories/16] +Size=16 +Context=Categories +Type=Fixed + +[emblems/16] +Size=16 +Context=Emblems +Type=Fixed + +[mimetypes/16] +Size=16 +Context=MimeTypes +Type=Scalable +MinSize=16 +MaxSize=16 + +[places/16] +Size=16 +Context=Places +Type=Scalable +MinSize=12 +MaxSize=16 + +[places/16s] +Size=16 +Context=Places +Type=Scalable +MinSize=16 +MaxSize=512 + +[status/16] +Size=16 +Context=Status +Type=Fixed + +[status/16s] +Size=16 +Context=Status +Type=Scalable +MinSize=8 +MaxSize=512 + +[stock/16] +Size=16 +Context=Stock +Type=Fixed + +[actions/22] +Size=22 +Context=Actions +Type=Fixed + +[actions/22s] +Size=22 +Context=Actions +Type=Scalable +MinSize=22 +MaxSize=22 + +[apps/22] +Size=22 +Context=Applications +Type=Fixed + +[appscol/22] +Size=22 +Context=Applications +Type=Fixed + +[devices/22] +Size=22 +Context=Devices +Type=Fixed + +[categories/22] +Size=22 +Context=Categories +Type=Fixed + +[emblems/22] +Size=22 +Context=Emblems +Type=Fixed + +[mimetypes/22] +Size=22 +Context=MimeTypes +Type=Scalable +MinSize=22 +MaxSize=22 + +[places/22] +Size=22 +Context=Places +Type=Scalable +MinSize=22 +MaxSize=22 + +[status/22] +Size=22 +Context=Status +Type=Fixed + +[status/22s] +Size=22 +Context=Status +Type=Scalable +MinSize=22 +MaxSize=512 + +[stock/22] +Size=22 +Context=Stock +Type=Fixed + +[actions/24] +Size=24 +Context=Actions +Type=Fixed + +[actions/24s] +Size=24 +Context=Actions +Type=Scalable +MinSize=24 +MaxSize=32 + +[apps/24] +Size=24 +Context=Applications +Type=Fixed + +[appscol/24] +Size=24 +Context=Applications +Type=Fixed + +[categories/24] +Size=24 +Context=Categories +Type=Fixed + +[devices/24] +Size=24 +Context=Devices +Type=Fixed + +[emblems/24] +Size=24 +Context=Emblems +Type=Fixed + +[mimetypes/24] +Size=24 +Context=MimeTypes +Type=Scalable +MinSize=24 +MaxSize=24 + +[places/24] +Size=24 +Context=Places +Type=Scalable +MinSize=24 +MaxSize=24 + +[status/24] +Size=24 +Context=Status +Type=Fixed + +[stock/24] +Size=24 +Context=Stock +Type=Fixed + +[actions/32] +Size=32 +Context=Actions +Type=Fixed + +[apps/32] +Size=32 +Context=Applications +Type=Fixed + +[appscol/32] +Size=32 +Context=Applications +Type=Fixed + +[devices/32] +Size=32 +Context=Devices +Type=Fixed + +[categories/32] +Size=32 +Context=Categories +Type=Fixed + +[emblems/32] +Size=32 +Context=Emblems +Type=Fixed + +[mimetypes/32] +Size=32 +Context=MimeTypes +Type=Scalable +MinSize=32 +MaxSize=32 + +[places/32] +Size=32 +Context=Places +Type=Scalable +MinSize=32 +MaxSize=32 + +[status/32] +Size=32 +Context=Status +Type=Fixed + +[stock/32] +Size=32 +Context=Stock +Type=Fixed + +[actions/48] +Size=48 +Context=Actions +Type=Fixed + +[apps/48] +Size=48 +Context=Applications +Type=Fixed + +[appscol/48] +Size=48 +Context=Applications +Type=Fixed + +[devices/48] +Size=48 +Context=Devices +Type=Fixed + +[categories/48] +Size=48 +Context=Categories +Type=Fixed + +[emblems/48] +Size=48 +Context=Emblems +Type=Fixed + +[mimetypes/48] +Size=48 +Context=MimeTypes +Type=Scalable +MinSize=48 +MaxSize=48 + +[places/48] +Size=48 +Context=Places +Type=Scalable +MinSize=48 +MaxSize=48 + +[status/48] +Size=48 +Context=Status +Type=Fixed + +[stock/48] +Size=48 +Context=Stock +Type=Fixed + +[actions/64] +Size=64 +Context=Actions +Type=Fixed + +[categories/64] +Size=64 +Context=Categories +Type=Fixed + +[devices/64] +Size=64 +Context=Devices +Type=Fixed + +[emblems/64] +Size=64 +Context=Emblems +Type=Fixed + +[mimetypes/64] +Size=64 +Context=MimeTypes +Type=Scalable +MinSize=64 +MaxSize=64 + +[places/64] +Size=64 +Context=Places +Type=Scalable +MinSize=64 +MaxSize=64 + +[status/64] +Size=64 +Context=Status +Type=Fixed + +[stock/64] +Size=64 +Context=Stock +Type=Fixed + +[actions/96] +Size=96 +Context=Actions +Type=Scalable + +[apps/96] +Size=96 +Context=Applications +Type=Scalable +MinSize=32 +MaxSize=512 + +[appscol/96] +Size=96 +Context=Applications +Type=Scalable +MinSize=32 +MaxSize=512 + +[categories/96] +Size=96 +Context=Categories +Type=Scalable +MinSize=32 +MaxSize=512 + +[devices/96] +Size=96 +Context=Devices +Type=Scalable +MinSize=32 +MaxSize=512 + +[emblems/96] +Size=96 +Context=Emblems +Type=Scalable +MinSize=32 +MaxSize=512 + +[mimetypes/96] +Size=96 +Context=MimeTypes +Type=Scalable +MinSize=32 +MaxSize=512 + +[places/96] +Size=96 +Context=Places +Type=Scalable +MinSize=96 +MaxSize=512 + +[places/symbolic] +Size=16 +Context=Places +Type=Scalable +MinSize=16 +MaxSize=512 + +[status/96] +Size=96 +Context=Status +Type=Scalable +MinSize=96 +MaxSize=512 + +[stock/96] +Size=96 +Context=Stock +Type=Scalable +MinSize=32 +MaxSize=512 + +[actions/scalable] +Size=96 +Context=Actions +Type=Scalable +MinSize=8 +MaxSize=512 + +[actions/symbolic] + + +[apps/scalable] +Size=96 +Context=Applications +Type=Scalable +MinSize=8 +MaxSize=512 + +[categories/scalable] +Size=96 +Context=Categories +Type=Scalable +MinSize=8 +MaxSize=512 + +[devices/scalable] +Size=96 +Context=Devices +Type=Scalable +MinSize=8 +MaxSize=512 + +[emblems/scalable] +Size=96 +Context=Emblems +Type=Scalable +MinSize=8 +MaxSize=512 + +[stock/scalable] +Size=96 +Context=Stock +Type=Scalable +MinSize=8 +MaxSize=512 diff --git a/themes/blueleaves/gtk/icons/places/16/bookmarks.svg b/themes/blueleaves/gtk/icons/places/16/bookmarks.svg new file mode 100644 index 0000000..d64e4fc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/bookmarks.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/desktop.svg b/themes/blueleaves/gtk/icons/places/16/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-documents.svg b/themes/blueleaves/gtk/icons/places/16/folder-documents.svg new file mode 100644 index 0000000..630d2f5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-documents.svg @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-download.svg b/themes/blueleaves/gtk/icons/places/16/folder-download.svg new file mode 100644 index 0000000..a23bc69 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-download.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/16/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/16/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/16/folder-dropbox.svg new file mode 100644 index 0000000..39f6ca4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-dropbox.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-home.svg b/themes/blueleaves/gtk/icons/places/16/folder-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-image.svg b/themes/blueleaves/gtk/icons/places/16/folder-image.svg new file mode 120000 index 0000000..273d2b9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-image.svg @@ -0,0 +1 @@ +folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-images.svg b/themes/blueleaves/gtk/icons/places/16/folder-images.svg new file mode 100644 index 0000000..bf658fb --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-images.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-music.svg b/themes/blueleaves/gtk/icons/places/16/folder-music.svg new file mode 100644 index 0000000..091cd13 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-music.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-open.svg b/themes/blueleaves/gtk/icons/places/16/folder-open.svg new file mode 100644 index 0000000..9d6b614 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-open.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-picture.svg b/themes/blueleaves/gtk/icons/places/16/folder-picture.svg new file mode 120000 index 0000000..273d2b9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-picture.svg @@ -0,0 +1 @@ +folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/16/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-public.svg b/themes/blueleaves/gtk/icons/places/16/folder-public.svg new file mode 100644 index 0000000..8cd1f01 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-public.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/16/folder-publicshare.svg new file mode 100644 index 0000000..8cd1f01 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-publicshare.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-recent.svg b/themes/blueleaves/gtk/icons/places/16/folder-recent.svg new file mode 100644 index 0000000..b42216a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-recent.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/16/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/16/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/16/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/16/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder-remote.svg b/themes/blueleaves/gtk/icons/places/16/folder-remote.svg new file mode 100644 index 0000000..be6ff5e --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-remote.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-system.svg b/themes/blueleaves/gtk/icons/places/16/folder-system.svg new file mode 100644 index 0000000..12a0e17 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-system.svg @@ -0,0 +1,383 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-templates.svg b/themes/blueleaves/gtk/icons/places/16/folder-templates.svg new file mode 100644 index 0000000..4aa8087 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-templates.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/16/folder-ubuntu.svg new file mode 100644 index 0000000..20ad8a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-ubuntu.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-video.svg b/themes/blueleaves/gtk/icons/places/16/folder-video.svg new file mode 100644 index 0000000..62ef3be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-video.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-videos.svg b/themes/blueleaves/gtk/icons/places/16/folder-videos.svg new file mode 100644 index 0000000..62ef3be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-videos.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder-wine.svg b/themes/blueleaves/gtk/icons/places/16/folder-wine.svg new file mode 100644 index 0000000..1c179c7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder-wine.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder.svg b/themes/blueleaves/gtk/icons/places/16/folder.svg new file mode 100644 index 0000000..d64e4fc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/folder_download.svg b/themes/blueleaves/gtk/icons/places/16/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder_home.svg b/themes/blueleaves/gtk/icons/places/16/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder_images.svg b/themes/blueleaves/gtk/icons/places/16/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder_open.svg b/themes/blueleaves/gtk/icons/places/16/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/16/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/16/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/16/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/16/gnome-folder.svg new file mode 100644 index 0000000..d64e4fc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-folder.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/16/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/16/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/16/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/inode-directory.svg b/themes/blueleaves/gtk/icons/places/16/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/mail-sent.svg b/themes/blueleaves/gtk/icons/places/16/mail-sent.svg new file mode 100644 index 0000000..b90ae7f --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/mail-sent.svg @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/network.svg b/themes/blueleaves/gtk/icons/places/16/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/other-desktop.svg b/themes/blueleaves/gtk/icons/places/16/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/stock_folder.svg b/themes/blueleaves/gtk/icons/places/16/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/stock_open.svg b/themes/blueleaves/gtk/icons/places/16/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/16/user-bookmarks.svg new file mode 100644 index 0000000..d64e4fc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-bookmarks.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/user-desktop.svg b/themes/blueleaves/gtk/icons/places/16/user-desktop.svg new file mode 100644 index 0000000..b861dee --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-desktop.svg @@ -0,0 +1,304 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/user-home.svg b/themes/blueleaves/gtk/icons/places/16/user-home.svg new file mode 100644 index 0000000..f54d910 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-home.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/16/user-images.svg b/themes/blueleaves/gtk/icons/places/16/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/user-pictures.svg b/themes/blueleaves/gtk/icons/places/16/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/16/user-share.svg b/themes/blueleaves/gtk/icons/places/16/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/16/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/22/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/bookmarks.svg b/themes/blueleaves/gtk/icons/places/22/bookmarks.svg new file mode 100644 index 0000000..c139ed2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/bookmarks.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/desktop.svg b/themes/blueleaves/gtk/icons/places/22/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-documents.svg b/themes/blueleaves/gtk/icons/places/22/folder-documents.svg new file mode 100644 index 0000000..b72273a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-documents.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-download.svg b/themes/blueleaves/gtk/icons/places/22/folder-download.svg new file mode 100644 index 0000000..1e20083 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-download.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/22/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/22/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/22/folder-dropbox.svg new file mode 100644 index 0000000..3bbf922 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-dropbox.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-home.svg b/themes/blueleaves/gtk/icons/places/22/folder-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-images.svg b/themes/blueleaves/gtk/icons/places/22/folder-images.svg new file mode 100644 index 0000000..8053da7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-images.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-music.svg b/themes/blueleaves/gtk/icons/places/22/folder-music.svg new file mode 100644 index 0000000..03a35a3 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-music.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-open.svg b/themes/blueleaves/gtk/icons/places/22/folder-open.svg new file mode 100644 index 0000000..840a369 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-open.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/22/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/22/folder-publicshare.svg new file mode 100644 index 0000000..7f3e167 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-publicshare.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-recent.svg b/themes/blueleaves/gtk/icons/places/22/folder-recent.svg new file mode 100644 index 0000000..b1900c7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-recent.svg @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/22/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/22/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/22/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/22/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder-remote.svg b/themes/blueleaves/gtk/icons/places/22/folder-remote.svg new file mode 100644 index 0000000..75646d6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-remote.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/22/folder-saved-search.svg new file mode 100644 index 0000000..5a7364e --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-saved-search.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-system.svg b/themes/blueleaves/gtk/icons/places/22/folder-system.svg new file mode 100644 index 0000000..4cad792 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-system.svg @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-templates.svg b/themes/blueleaves/gtk/icons/places/22/folder-templates.svg new file mode 100644 index 0000000..1b310bd --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-templates.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/22/folder-ubuntu.svg new file mode 100644 index 0000000..8a99421 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-ubuntu.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-video.svg b/themes/blueleaves/gtk/icons/places/22/folder-video.svg new file mode 100644 index 0000000..0b1a527 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-video.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-videos.svg b/themes/blueleaves/gtk/icons/places/22/folder-videos.svg new file mode 100644 index 0000000..0b1a527 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-videos.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder-wine.svg b/themes/blueleaves/gtk/icons/places/22/folder-wine.svg new file mode 100644 index 0000000..955cb26 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder-wine.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder.svg b/themes/blueleaves/gtk/icons/places/22/folder.svg new file mode 100644 index 0000000..c139ed2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/folder_download.svg b/themes/blueleaves/gtk/icons/places/22/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder_home.svg b/themes/blueleaves/gtk/icons/places/22/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder_images.svg b/themes/blueleaves/gtk/icons/places/22/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder_open.svg b/themes/blueleaves/gtk/icons/places/22/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/22/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/22/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/22/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/22/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/22/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/22/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/22/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/inode-directory.svg b/themes/blueleaves/gtk/icons/places/22/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/mail-sent.svg b/themes/blueleaves/gtk/icons/places/22/mail-sent.svg new file mode 100644 index 0000000..c139ed2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/mail-sent.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/network.svg b/themes/blueleaves/gtk/icons/places/22/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/other-desktop.svg b/themes/blueleaves/gtk/icons/places/22/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/stock_folder.svg b/themes/blueleaves/gtk/icons/places/22/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/stock_open.svg b/themes/blueleaves/gtk/icons/places/22/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/22/user-bookmarks.svg new file mode 100644 index 0000000..c139ed2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-bookmarks.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/user-desktop.svg b/themes/blueleaves/gtk/icons/places/22/user-desktop.svg new file mode 100644 index 0000000..1417c3a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-desktop.svg @@ -0,0 +1,371 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/user-home.svg b/themes/blueleaves/gtk/icons/places/22/user-home.svg new file mode 100644 index 0000000..a74fda1 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-home.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/22/user-images.svg b/themes/blueleaves/gtk/icons/places/22/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/user-pictures.svg b/themes/blueleaves/gtk/icons/places/22/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/22/user-share.svg b/themes/blueleaves/gtk/icons/places/22/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/22/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/24/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/bookmarks.svg b/themes/blueleaves/gtk/icons/places/24/bookmarks.svg new file mode 100644 index 0000000..f150b88 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/bookmarks.svg @@ -0,0 +1,1000 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/desktop.svg b/themes/blueleaves/gtk/icons/places/24/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-documents.svg b/themes/blueleaves/gtk/icons/places/24/folder-documents.svg new file mode 100644 index 0000000..7a15e74 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-documents.svg @@ -0,0 +1,1006 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-download.svg b/themes/blueleaves/gtk/icons/places/24/folder-download.svg new file mode 100644 index 0000000..8d4c635 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-download.svg @@ -0,0 +1,931 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/24/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/24/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/24/folder-dropbox.svg new file mode 100644 index 0000000..f64bfcc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-dropbox.svg @@ -0,0 +1,932 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-home.svg b/themes/blueleaves/gtk/icons/places/24/folder-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-images.svg b/themes/blueleaves/gtk/icons/places/24/folder-images.svg new file mode 100644 index 0000000..18c1385 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-images.svg @@ -0,0 +1,1006 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-music.svg b/themes/blueleaves/gtk/icons/places/24/folder-music.svg new file mode 100644 index 0000000..e30479a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-music.svg @@ -0,0 +1,932 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-open.svg b/themes/blueleaves/gtk/icons/places/24/folder-open.svg new file mode 100644 index 0000000..47633d0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-open.svg @@ -0,0 +1,919 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/24/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/24/folder-publicshare.svg new file mode 100644 index 0000000..c875f7f --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-publicshare.svg @@ -0,0 +1,937 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-recent.svg b/themes/blueleaves/gtk/icons/places/24/folder-recent.svg new file mode 100644 index 0000000..6b79afd --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-recent.svg @@ -0,0 +1,945 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/24/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/24/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/24/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/24/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder-remote.svg b/themes/blueleaves/gtk/icons/places/24/folder-remote.svg new file mode 100644 index 0000000..213fa19 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-remote.svg @@ -0,0 +1,932 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/24/folder-saved-search.svg new file mode 100644 index 0000000..d4af91c --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-saved-search.svg @@ -0,0 +1,932 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-system.svg b/themes/blueleaves/gtk/icons/places/24/folder-system.svg new file mode 100644 index 0000000..eab7e24 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-system.svg @@ -0,0 +1,941 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-templates.svg b/themes/blueleaves/gtk/icons/places/24/folder-templates.svg new file mode 100644 index 0000000..7a5f563 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-templates.svg @@ -0,0 +1,927 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/24/folder-ubuntu.svg new file mode 100644 index 0000000..76e3714 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-ubuntu.svg @@ -0,0 +1,941 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-video.svg b/themes/blueleaves/gtk/icons/places/24/folder-video.svg new file mode 100644 index 0000000..33854a7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-video.svg @@ -0,0 +1,923 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-videos.svg b/themes/blueleaves/gtk/icons/places/24/folder-videos.svg new file mode 100644 index 0000000..33854a7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-videos.svg @@ -0,0 +1,923 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder-wine.svg b/themes/blueleaves/gtk/icons/places/24/folder-wine.svg new file mode 100644 index 0000000..40e4e95 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder-wine.svg @@ -0,0 +1,937 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder.svg b/themes/blueleaves/gtk/icons/places/24/folder.svg new file mode 100644 index 0000000..f150b88 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder.svg @@ -0,0 +1,1000 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/folder_download.svg b/themes/blueleaves/gtk/icons/places/24/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder_home.svg b/themes/blueleaves/gtk/icons/places/24/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder_images.svg b/themes/blueleaves/gtk/icons/places/24/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder_open.svg b/themes/blueleaves/gtk/icons/places/24/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/24/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/24/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/24/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/24/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/24/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/24/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/24/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/inode-directory.svg b/themes/blueleaves/gtk/icons/places/24/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/mail-sent.svg b/themes/blueleaves/gtk/icons/places/24/mail-sent.svg new file mode 100644 index 0000000..f150b88 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/mail-sent.svg @@ -0,0 +1,1000 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/network.svg b/themes/blueleaves/gtk/icons/places/24/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/other-desktop.svg b/themes/blueleaves/gtk/icons/places/24/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/stock_folder.svg b/themes/blueleaves/gtk/icons/places/24/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/stock_open.svg b/themes/blueleaves/gtk/icons/places/24/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/24/user-bookmarks.svg new file mode 100644 index 0000000..f150b88 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-bookmarks.svg @@ -0,0 +1,1000 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/user-desktop.svg b/themes/blueleaves/gtk/icons/places/24/user-desktop.svg new file mode 100644 index 0000000..ed836a2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-desktop.svg @@ -0,0 +1,1051 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/user-home.svg b/themes/blueleaves/gtk/icons/places/24/user-home.svg new file mode 100644 index 0000000..a87a320 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-home.svg @@ -0,0 +1,923 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/24/user-images.svg b/themes/blueleaves/gtk/icons/places/24/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/user-pictures.svg b/themes/blueleaves/gtk/icons/places/24/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/24/user-share.svg b/themes/blueleaves/gtk/icons/places/24/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/24/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/32/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/bookmarks.svg b/themes/blueleaves/gtk/icons/places/32/bookmarks.svg new file mode 100644 index 0000000..4c045be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/bookmarks.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/desktop.svg b/themes/blueleaves/gtk/icons/places/32/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-documents.svg b/themes/blueleaves/gtk/icons/places/32/folder-documents.svg new file mode 100644 index 0000000..695295b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-documents.svg @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-download.svg b/themes/blueleaves/gtk/icons/places/32/folder-download.svg new file mode 100644 index 0000000..2ccd51b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-download.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/32/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/32/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/32/folder-dropbox.svg new file mode 100644 index 0000000..fc69bf7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-dropbox.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-home.svg b/themes/blueleaves/gtk/icons/places/32/folder-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-images.svg b/themes/blueleaves/gtk/icons/places/32/folder-images.svg new file mode 100644 index 0000000..0f27d08 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-images.svg @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-music.svg b/themes/blueleaves/gtk/icons/places/32/folder-music.svg new file mode 100644 index 0000000..309793c --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-music.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-open.svg b/themes/blueleaves/gtk/icons/places/32/folder-open.svg new file mode 100644 index 0000000..a69804b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-open.svg @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/32/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/32/folder-publicshare.svg new file mode 100644 index 0000000..ba63137 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-publicshare.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-recent.svg b/themes/blueleaves/gtk/icons/places/32/folder-recent.svg new file mode 100644 index 0000000..0205d46 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-recent.svg @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/32/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/32/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/32/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/32/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder-remote.svg b/themes/blueleaves/gtk/icons/places/32/folder-remote.svg new file mode 100644 index 0000000..9164cfe --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-remote.svg @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/32/folder-saved-search.svg new file mode 100644 index 0000000..7b5e3d7 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-saved-search.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-system.svg b/themes/blueleaves/gtk/icons/places/32/folder-system.svg new file mode 100644 index 0000000..e5c2c7c --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-system.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-templates.svg b/themes/blueleaves/gtk/icons/places/32/folder-templates.svg new file mode 100644 index 0000000..f0b6b3e --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-templates.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/32/folder-ubuntu.svg new file mode 100644 index 0000000..29c062a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-ubuntu.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-video.svg b/themes/blueleaves/gtk/icons/places/32/folder-video.svg new file mode 100644 index 0000000..e8cebf0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-video.svg @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-videos.svg b/themes/blueleaves/gtk/icons/places/32/folder-videos.svg new file mode 100644 index 0000000..e8cebf0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-videos.svg @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder-wine.svg b/themes/blueleaves/gtk/icons/places/32/folder-wine.svg new file mode 100644 index 0000000..7d25e2f --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder-wine.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder.svg b/themes/blueleaves/gtk/icons/places/32/folder.svg new file mode 100644 index 0000000..4c045be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/folder_download.svg b/themes/blueleaves/gtk/icons/places/32/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder_home.svg b/themes/blueleaves/gtk/icons/places/32/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder_images.svg b/themes/blueleaves/gtk/icons/places/32/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder_open.svg b/themes/blueleaves/gtk/icons/places/32/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/32/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/32/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/32/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/32/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/32/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/32/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/32/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/inode-directory.svg b/themes/blueleaves/gtk/icons/places/32/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/mail-sent.svg b/themes/blueleaves/gtk/icons/places/32/mail-sent.svg new file mode 100644 index 0000000..4c045be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/mail-sent.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/network.svg b/themes/blueleaves/gtk/icons/places/32/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/other-desktop.svg b/themes/blueleaves/gtk/icons/places/32/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/stock_folder.svg b/themes/blueleaves/gtk/icons/places/32/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/stock_open.svg b/themes/blueleaves/gtk/icons/places/32/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/32/user-bookmarks.svg new file mode 100644 index 0000000..4c045be --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-bookmarks.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/user-desktop.svg b/themes/blueleaves/gtk/icons/places/32/user-desktop.svg new file mode 100644 index 0000000..078f7fd --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-desktop.svg @@ -0,0 +1,748 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18:30 + diff --git a/themes/blueleaves/gtk/icons/places/32/user-home.svg b/themes/blueleaves/gtk/icons/places/32/user-home.svg new file mode 100644 index 0000000..84f4191 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-home.svg @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/32/user-images.svg b/themes/blueleaves/gtk/icons/places/32/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/user-pictures.svg b/themes/blueleaves/gtk/icons/places/32/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/32/user-share.svg b/themes/blueleaves/gtk/icons/places/32/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/32/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/48/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/bookmarks.svg b/themes/blueleaves/gtk/icons/places/48/bookmarks.svg new file mode 100644 index 0000000..a426282 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/bookmarks.svg @@ -0,0 +1,686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/desktop.svg b/themes/blueleaves/gtk/icons/places/48/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-documents.svg b/themes/blueleaves/gtk/icons/places/48/folder-documents.svg new file mode 100644 index 0000000..2c19245 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-documents.svg @@ -0,0 +1,661 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-download.svg b/themes/blueleaves/gtk/icons/places/48/folder-download.svg new file mode 100644 index 0000000..44434db --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-download.svg @@ -0,0 +1,709 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/48/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/48/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/48/folder-dropbox.svg new file mode 100644 index 0000000..2a8f200 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-dropbox.svg @@ -0,0 +1,664 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-home.svg b/themes/blueleaves/gtk/icons/places/48/folder-home.svg new file mode 100644 index 0000000..0254aa1 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-home.svg @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-images.svg b/themes/blueleaves/gtk/icons/places/48/folder-images.svg new file mode 100644 index 0000000..7927b7b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-images.svg @@ -0,0 +1,661 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-music.svg b/themes/blueleaves/gtk/icons/places/48/folder-music.svg new file mode 100644 index 0000000..89c12d5 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-music.svg @@ -0,0 +1,644 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-open.svg b/themes/blueleaves/gtk/icons/places/48/folder-open.svg new file mode 100644 index 0000000..630ff4a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-open.svg @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/48/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/48/folder-publicshare.svg new file mode 100644 index 0000000..9cc62e2 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-publicshare.svg @@ -0,0 +1,649 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-recent.svg b/themes/blueleaves/gtk/icons/places/48/folder-recent.svg new file mode 100644 index 0000000..bcd4b24 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-recent.svg @@ -0,0 +1,648 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/48/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/48/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/48/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/48/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder-remote.svg b/themes/blueleaves/gtk/icons/places/48/folder-remote.svg new file mode 100644 index 0000000..ed54300 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-remote.svg @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/48/folder-saved-search.svg new file mode 100644 index 0000000..33e2939 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-saved-search.svg @@ -0,0 +1,669 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-system.svg b/themes/blueleaves/gtk/icons/places/48/folder-system.svg new file mode 100644 index 0000000..d5b45f0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-system.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-templates.svg b/themes/blueleaves/gtk/icons/places/48/folder-templates.svg new file mode 100644 index 0000000..84affea --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-templates.svg @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/48/folder-ubuntu.svg new file mode 100644 index 0000000..e8aa1b6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-ubuntu.svg @@ -0,0 +1,635 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-video.svg b/themes/blueleaves/gtk/icons/places/48/folder-video.svg new file mode 100644 index 0000000..32df822 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-video.svg @@ -0,0 +1,671 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-videos.svg b/themes/blueleaves/gtk/icons/places/48/folder-videos.svg new file mode 100644 index 0000000..32df822 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-videos.svg @@ -0,0 +1,671 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder-wine.svg b/themes/blueleaves/gtk/icons/places/48/folder-wine.svg new file mode 100644 index 0000000..cdb1bf3 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder-wine.svg @@ -0,0 +1,670 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder.svg b/themes/blueleaves/gtk/icons/places/48/folder.svg new file mode 100644 index 0000000..a426282 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder.svg @@ -0,0 +1,686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/folder_download.svg b/themes/blueleaves/gtk/icons/places/48/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder_home.svg b/themes/blueleaves/gtk/icons/places/48/folder_home.svg new file mode 120000 index 0000000..fe411ed --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder_home.svg @@ -0,0 +1 @@ +folder-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder_images.svg b/themes/blueleaves/gtk/icons/places/48/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder_open.svg b/themes/blueleaves/gtk/icons/places/48/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/48/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/48/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/48/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/48/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-home.svg new file mode 120000 index 0000000..fe411ed --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-home.svg @@ -0,0 +1 @@ +folder-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/48/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/48/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/48/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/inode-directory.svg b/themes/blueleaves/gtk/icons/places/48/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/mail-sent.svg b/themes/blueleaves/gtk/icons/places/48/mail-sent.svg new file mode 100644 index 0000000..a426282 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/mail-sent.svg @@ -0,0 +1,686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/network.svg b/themes/blueleaves/gtk/icons/places/48/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/other-desktop.svg b/themes/blueleaves/gtk/icons/places/48/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/stock_folder.svg b/themes/blueleaves/gtk/icons/places/48/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/stock_open.svg b/themes/blueleaves/gtk/icons/places/48/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/48/user-bookmarks.svg new file mode 100644 index 0000000..a426282 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-bookmarks.svg @@ -0,0 +1,686 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/48/user-desktop.svg b/themes/blueleaves/gtk/icons/places/48/user-desktop.svg new file mode 100644 index 0000000..3fa022b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-desktop.svg @@ -0,0 +1,673 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18:30 + diff --git a/themes/blueleaves/gtk/icons/places/48/user-home.svg b/themes/blueleaves/gtk/icons/places/48/user-home.svg new file mode 120000 index 0000000..fe411ed --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-home.svg @@ -0,0 +1 @@ +folder-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/user-images.svg b/themes/blueleaves/gtk/icons/places/48/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/user-pictures.svg b/themes/blueleaves/gtk/icons/places/48/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/48/user-share.svg b/themes/blueleaves/gtk/icons/places/48/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/48/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/64/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/bookmarks.svg b/themes/blueleaves/gtk/icons/places/64/bookmarks.svg new file mode 100644 index 0000000..a59bfb0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/bookmarks.svg @@ -0,0 +1,687 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/desktop.svg b/themes/blueleaves/gtk/icons/places/64/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-documents.svg b/themes/blueleaves/gtk/icons/places/64/folder-documents.svg new file mode 100644 index 0000000..6aa894a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-documents.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-download.svg b/themes/blueleaves/gtk/icons/places/64/folder-download.svg new file mode 100644 index 0000000..fc73a56 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-download.svg @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/64/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/64/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/64/folder-dropbox.svg new file mode 100644 index 0000000..0e173d9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-dropbox.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-home.svg b/themes/blueleaves/gtk/icons/places/64/folder-home.svg new file mode 100644 index 0000000..d0ead4d --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-home.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-images.svg b/themes/blueleaves/gtk/icons/places/64/folder-images.svg new file mode 100644 index 0000000..d981e91 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-images.svg @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-music.svg b/themes/blueleaves/gtk/icons/places/64/folder-music.svg new file mode 100644 index 0000000..234d86d --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-music.svg @@ -0,0 +1,288 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-open.svg b/themes/blueleaves/gtk/icons/places/64/folder-open.svg new file mode 100644 index 0000000..6937c5d --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-open.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/64/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/64/folder-publicshare.svg new file mode 100644 index 0000000..634b853 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-publicshare.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-recent.svg b/themes/blueleaves/gtk/icons/places/64/folder-recent.svg new file mode 100644 index 0000000..f061100 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-recent.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/64/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/64/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/64/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/64/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder-remote.svg b/themes/blueleaves/gtk/icons/places/64/folder-remote.svg new file mode 100644 index 0000000..0776139 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-remote.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/64/folder-saved-search.svg new file mode 100644 index 0000000..41ce02d --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-saved-search.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-system.svg b/themes/blueleaves/gtk/icons/places/64/folder-system.svg new file mode 100644 index 0000000..fcb96d3 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-system.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-templates.svg b/themes/blueleaves/gtk/icons/places/64/folder-templates.svg new file mode 100644 index 0000000..4b82348 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-templates.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/64/folder-ubuntu.svg new file mode 100644 index 0000000..3374c3b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-ubuntu.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-video.svg b/themes/blueleaves/gtk/icons/places/64/folder-video.svg new file mode 100644 index 0000000..8735464 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-video.svg @@ -0,0 +1,680 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-videos.svg b/themes/blueleaves/gtk/icons/places/64/folder-videos.svg new file mode 100644 index 0000000..9490f14 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-videos.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder-wine.svg b/themes/blueleaves/gtk/icons/places/64/folder-wine.svg new file mode 100644 index 0000000..51a876a --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder-wine.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder.svg b/themes/blueleaves/gtk/icons/places/64/folder.svg new file mode 100644 index 0000000..14facec --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder.svg @@ -0,0 +1,275 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/folder_download.svg b/themes/blueleaves/gtk/icons/places/64/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder_home.svg b/themes/blueleaves/gtk/icons/places/64/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder_images.svg b/themes/blueleaves/gtk/icons/places/64/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder_open.svg b/themes/blueleaves/gtk/icons/places/64/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/64/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/64/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/64/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/64/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/64/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/64/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/64/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/inode-directory.svg b/themes/blueleaves/gtk/icons/places/64/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/mail-sent.svg b/themes/blueleaves/gtk/icons/places/64/mail-sent.svg new file mode 100644 index 0000000..a59bfb0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/mail-sent.svg @@ -0,0 +1,687 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/network.svg b/themes/blueleaves/gtk/icons/places/64/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/other-desktop.svg b/themes/blueleaves/gtk/icons/places/64/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/stock_folder.svg b/themes/blueleaves/gtk/icons/places/64/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/stock_open.svg b/themes/blueleaves/gtk/icons/places/64/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/64/user-bookmarks.svg new file mode 100644 index 0000000..a59bfb0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-bookmarks.svg @@ -0,0 +1,687 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/user-desktop.svg b/themes/blueleaves/gtk/icons/places/64/user-desktop.svg new file mode 100644 index 0000000..faeaf23 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-desktop.svg @@ -0,0 +1,678 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18:30 + diff --git a/themes/blueleaves/gtk/icons/places/64/user-home.svg b/themes/blueleaves/gtk/icons/places/64/user-home.svg new file mode 100644 index 0000000..464202c --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-home.svg @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/64/user-images.svg b/themes/blueleaves/gtk/icons/places/64/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/user-pictures.svg b/themes/blueleaves/gtk/icons/places/64/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/64/user-share.svg b/themes/blueleaves/gtk/icons/places/64/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/64/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/application-x-gnome-saved-search.svg b/themes/blueleaves/gtk/icons/places/96/application-x-gnome-saved-search.svg new file mode 120000 index 0000000..67709e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/application-x-gnome-saved-search.svg @@ -0,0 +1 @@ +./folder-saved-search.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/bookmarks.svg b/themes/blueleaves/gtk/icons/places/96/bookmarks.svg new file mode 100644 index 0000000..41793fe --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/bookmarks.svg @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/desktop.svg b/themes/blueleaves/gtk/icons/places/96/desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-documents.svg b/themes/blueleaves/gtk/icons/places/96/folder-documents.svg new file mode 100644 index 0000000..4b638f3 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-documents.svg @@ -0,0 +1,672 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-download.svg b/themes/blueleaves/gtk/icons/places/96/folder-download.svg new file mode 100644 index 0000000..b46b2e4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-download.svg @@ -0,0 +1,689 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-downloads.svg b/themes/blueleaves/gtk/icons/places/96/folder-downloads.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-downloads.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-drag-accept.svg b/themes/blueleaves/gtk/icons/places/96/folder-drag-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-drag-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-dropbox.svg b/themes/blueleaves/gtk/icons/places/96/folder-dropbox.svg new file mode 100644 index 0000000..1617688 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-dropbox.svg @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-home.svg b/themes/blueleaves/gtk/icons/places/96/folder-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-images.svg b/themes/blueleaves/gtk/icons/places/96/folder-images.svg new file mode 100644 index 0000000..bcd8512 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-images.svg @@ -0,0 +1,672 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-music.svg b/themes/blueleaves/gtk/icons/places/96/folder-music.svg new file mode 100644 index 0000000..5931c59 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-music.svg @@ -0,0 +1,675 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-open.svg b/themes/blueleaves/gtk/icons/places/96/folder-open.svg new file mode 100644 index 0000000..53859aa --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-open.svg @@ -0,0 +1,809 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-pictures.svg b/themes/blueleaves/gtk/icons/places/96/folder-pictures.svg new file mode 120000 index 0000000..6d4bb4b --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-pictures.svg @@ -0,0 +1 @@ +folder-images.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-publicshare.svg b/themes/blueleaves/gtk/icons/places/96/folder-publicshare.svg new file mode 100644 index 0000000..2121035 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-publicshare.svg @@ -0,0 +1,680 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-recent.svg b/themes/blueleaves/gtk/icons/places/96/folder-recent.svg new file mode 100644 index 0000000..293f8d3 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-recent.svg @@ -0,0 +1,679 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-remote-ftp.svg b/themes/blueleaves/gtk/icons/places/96/folder-remote-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-remote-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-remote-nfs.svg b/themes/blueleaves/gtk/icons/places/96/folder-remote-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-remote-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-remote-smb.svg b/themes/blueleaves/gtk/icons/places/96/folder-remote-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-remote-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-remote-ssh.svg b/themes/blueleaves/gtk/icons/places/96/folder-remote-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-remote-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder-remote.svg b/themes/blueleaves/gtk/icons/places/96/folder-remote.svg new file mode 100644 index 0000000..f41c18f --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-remote.svg @@ -0,0 +1,706 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-saved-search.svg b/themes/blueleaves/gtk/icons/places/96/folder-saved-search.svg new file mode 100644 index 0000000..fed5ab4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-saved-search.svg @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-system.svg b/themes/blueleaves/gtk/icons/places/96/folder-system.svg new file mode 100644 index 0000000..a11b4bc --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-system.svg @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-templates.svg b/themes/blueleaves/gtk/icons/places/96/folder-templates.svg new file mode 100644 index 0000000..2a78fd9 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-templates.svg @@ -0,0 +1,671 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-ubuntu.svg b/themes/blueleaves/gtk/icons/places/96/folder-ubuntu.svg new file mode 100644 index 0000000..1ff1c0e --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-ubuntu.svg @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-video.svg b/themes/blueleaves/gtk/icons/places/96/folder-video.svg new file mode 100644 index 0000000..7fd4528 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-video.svg @@ -0,0 +1,677 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-videos.svg b/themes/blueleaves/gtk/icons/places/96/folder-videos.svg new file mode 100644 index 0000000..7fd4528 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-videos.svg @@ -0,0 +1,677 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder-wine.svg b/themes/blueleaves/gtk/icons/places/96/folder-wine.svg new file mode 100644 index 0000000..bf6b075 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder-wine.svg @@ -0,0 +1,699 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder.svg b/themes/blueleaves/gtk/icons/places/96/folder.svg new file mode 100644 index 0000000..41793fe --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder.svg @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/folder_download.svg b/themes/blueleaves/gtk/icons/places/96/folder_download.svg new file mode 120000 index 0000000..5e08f29 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder_download.svg @@ -0,0 +1 @@ +./folder-download.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder_home.svg b/themes/blueleaves/gtk/icons/places/96/folder_home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder_home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder_images.svg b/themes/blueleaves/gtk/icons/places/96/folder_images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder_images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder_open.svg b/themes/blueleaves/gtk/icons/places/96/folder_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/folder_pictures.svg b/themes/blueleaves/gtk/icons/places/96/folder_pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/folder_pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-ccdesktop.svg b/themes/blueleaves/gtk/icons/places/96/gnome-ccdesktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-ccdesktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-desktop-config.svg b/themes/blueleaves/gtk/icons/places/96/gnome-desktop-config.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-desktop-config.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-folder.svg b/themes/blueleaves/gtk/icons/places/96/gnome-folder.svg new file mode 120000 index 0000000..15062ce --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-folder.svg @@ -0,0 +1 @@ +folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-blockdev.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-blockdev.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-blockdev.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-bookmark.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-bookmark.svg new file mode 120000 index 0000000..5658f75 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-bookmark.svg @@ -0,0 +1 @@ +./user-bookmarks.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-dav.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-dav.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-dav.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-desktop.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory-accept.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory-accept.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory-accept.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-ftp.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-ftp.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-ftp.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-home.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-home.svg new file mode 120000 index 0000000..0147779 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-home.svg @@ -0,0 +1 @@ +./user-home.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-network.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-nfs.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-nfs.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-nfs.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-share.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-smb.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-smb.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-smb.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-fs-ssh.svg b/themes/blueleaves/gtk/icons/places/96/gnome-fs-ssh.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-fs-ssh.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gnome-mime-x-directory-smb-share.svg b/themes/blueleaves/gtk/icons/places/96/gnome-mime-x-directory-smb-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gnome-mime-x-directory-smb-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/gtk-directory.svg b/themes/blueleaves/gtk/icons/places/96/gtk-directory.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/gtk-directory.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/inode-directory.svg b/themes/blueleaves/gtk/icons/places/96/inode-directory.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/inode-directory.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/mail-sent.svg b/themes/blueleaves/gtk/icons/places/96/mail-sent.svg new file mode 100644 index 0000000..41793fe --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/mail-sent.svg @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/network.svg b/themes/blueleaves/gtk/icons/places/96/network.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/network.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/other-desktop.svg b/themes/blueleaves/gtk/icons/places/96/other-desktop.svg new file mode 120000 index 0000000..8f1a5a0 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/other-desktop.svg @@ -0,0 +1 @@ +user-desktop.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/stock_folder.svg b/themes/blueleaves/gtk/icons/places/96/stock_folder.svg new file mode 120000 index 0000000..1ecfee6 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/stock_folder.svg @@ -0,0 +1 @@ +./folder.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/stock_open.svg b/themes/blueleaves/gtk/icons/places/96/stock_open.svg new file mode 120000 index 0000000..26b7d78 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/stock_open.svg @@ -0,0 +1 @@ +./folder-open.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/user-bookmarks.svg b/themes/blueleaves/gtk/icons/places/96/user-bookmarks.svg new file mode 100644 index 0000000..41793fe --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-bookmarks.svg @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/user-desktop.svg b/themes/blueleaves/gtk/icons/places/96/user-desktop.svg new file mode 100644 index 0000000..754a2a4 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-desktop.svg @@ -0,0 +1,857 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 18:30 + diff --git a/themes/blueleaves/gtk/icons/places/96/user-home.svg b/themes/blueleaves/gtk/icons/places/96/user-home.svg new file mode 100644 index 0000000..3c7602c --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-home.svg @@ -0,0 +1,670 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/icons/places/96/user-images.svg b/themes/blueleaves/gtk/icons/places/96/user-images.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-images.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/user-pictures.svg b/themes/blueleaves/gtk/icons/places/96/user-pictures.svg new file mode 120000 index 0000000..22a0365 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-pictures.svg @@ -0,0 +1 @@ +./folder-pictures.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/icons/places/96/user-share.svg b/themes/blueleaves/gtk/icons/places/96/user-share.svg new file mode 120000 index 0000000..69c6f11 --- /dev/null +++ b/themes/blueleaves/gtk/icons/places/96/user-share.svg @@ -0,0 +1 @@ +./folder-remote.svg \ No newline at end of file diff --git a/themes/blueleaves/gtk/readme.txt b/themes/blueleaves/gtk/readme.txt new file mode 100644 index 0000000..7067468 --- /dev/null +++ b/themes/blueleaves/gtk/readme.txt @@ -0,0 +1,3 @@ +Theme: VALYRIAN-Molten-Steel +Iconset: Obsidian-Teal + diff --git a/themes/blueleaves/gtk/theme/cinnamon/cinnamon.css b/themes/blueleaves/gtk/theme/cinnamon/cinnamon.css new file mode 100644 index 0000000..f7ca255 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/cinnamon.css @@ -0,0 +1,1566 @@ +stage { + font-family: Futura Bk bt, sans, Sans-Serif; + font-size: 9pt; + color: #c8dbec; } + +.label-shadow { + color: rgba(0, 0, 0, 0); } + +.menu #notification .notification-button, .menu #notification .notification-icon-button, +.popup-menu #notification .notification-button, +.popup-menu #notification .notification-icon-button, .sound-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + background-color: #14283b; + border: 1px solid #132433; + box-shadow: inset 0 2px 4px rgba(20, 40, 59, 0.05); } + .menu #notification .notification-button, .menu #notification .notification-icon-button, + .popup-menu #notification .notification-button, + .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, + .popup-menu #notification .notification-button:focus, + .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, + .popup-menu #notification .notification-button:hover, + .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, + .popup-menu #notification .notification-button:hover:focus, + .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, + .popup-menu #notification .notification-button:active, + .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, + .popup-menu #notification .notification-button:active:focus, + .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, + .popup-menu #notification .notification-button:insensitive, + .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { + border-radius: 2px; } + .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, + .popup-menu #notification .notification-button:focus, + .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + background-color: #14283b; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px rgba(20, 40, 59, 0.05); } + .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, + .popup-menu #notification .notification-button:hover, + .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + background-color: #1a354e; + border: 1px solid #132433; + box-shadow: inset 0 2px 4px rgba(26, 53, 78, 0.05); } + .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, + .popup-menu #notification .notification-button:hover:focus, + .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + background-color: #14283b; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px rgba(20, 40, 59, 0.05); } + .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, + .popup-menu #notification .notification-button:active, + .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, + .popup-menu #notification .notification-button:active:focus, + .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #0e1b28; + background-color: #bf562f; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px #bf562f; } + .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, + .popup-menu #notification .notification-button:insensitive, + .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: rgba(200, 219, 236, 0.55); + border: 1px solid rgba(19, 36, 51, 0.55); + background-color: rgba(20, 40, 59, 0.55); + box-shadow: inset 0 2px 4px rgba(20, 40, 59, 0.05); } + +.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { + min-height: 20px; + padding: 5px 32px; + transition-duration: 0; + border-radius: 2px; + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(38, 83, 120, 0.35); } + .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(46, 101, 148, 0.45); } + .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { + color: #bf562f; } + .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #0e1b28; + border: 1px solid #bf562f; + background-color: #bf562f; } + .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #44535f; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(38, 83, 120, 0.2); } + +.menu #notification StEntry, +.popup-menu #notification StEntry, #menu-search-entry { + padding: 7px; + caret-size: 1px; + selection-background-color: #bf562f; + selected-color: #0e1b28; + transition-duration: 300ms; + border-radius: 3px; + color: #c8dbec; + background-color: #0e1b28; + border: 1px solid #132433; + box-shadow: inset 0 2px 4px rgba(14, 27, 40, 0.05); } + .menu #notification StEntry:focus, + .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, + .popup-menu #notification StEntry:hover, #menu-search-entry:hover { + color: #c8dbec; + background-color: #0e1b28; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px rgba(14, 27, 40, 0.05); } + .menu #notification StEntry:insensitive, + .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { + color: rgba(200, 219, 236, 0.55); + background-color: #0f1f2d; + border-color: 1px solid #122433; + box-shadow: inset 0 2px 4px rgba(15, 31, 45, 0.05); } + .menu #notification StEntry StIcon.capslock-warning, .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { + icon-size: 16px; + warning-color: #938d6d; + padding: 0 4px; } + +.notification StEntry { + padding: 7px; + caret-size: 1px; + caret-color: #c8dbec; + selection-background-color: #bf562f; + selected-color: #0e1b28; + transition-duration: 300ms; + border-radius: 3px; + color: #c8dbec; + background-color: rgba(38, 83, 120, 0.35); + border: 1px solid rgba(0, 0, 0, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:focus { + color: #0e1b28; + background-color: #bf562f; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .notification StEntry:insensitive { + color: rgba(200, 219, 236, 0.55); + background-color: rgba(38, 83, 120, 0.2); + border: 1px solid rgba(0, 0, 0, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + +StScrollView.vfade { + -st-vfade-offset: 0px; } + +StScrollView.hfade { + -st-hfade-offset: 0px; } + +StScrollBar { + padding: 8px; } + StScrollView StScrollBar { + min-width: 5px; + min-height: 5px; } + StScrollBar StBin#trough { + background-color: rgba(14, 27, 40, 0.1); + border-radius: 8px; } + StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { + border-radius: 2px; + background-color: #5a6d7d; + border: 0px solid; + margin: 0px; } + StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { + background-color: #485a6b; } + StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { + background-color: #bf562f; } + +.separator { + -gradient-height: 1px; + -gradient-start: rgba(0, 0, 0, 0); + -gradient-end: rgba(0, 0, 0, 0); + -margin-horizontal: 1.5em; + height: 1em; } + +.popup-slider-menu-item, +.slider { + -slider-height: 4px; + -slider-background-color: #132433; + -slider-border-color: rgba(0, 0, 0, 0); + -slider-active-background-color: #bf562f; + -slider-active-border-color: rgba(0, 0, 0, 0); + -slider-border-width: 0; + -slider-handle-radius: 4px; + height: 18px; + min-width: 15em; + border: 0 solid transparent; + border-right-width: 1px; + border-left-width: 5px; + color: transparent; } + .popup-menu-item:active .popup-slider-menu-item, .popup-menu-item:active + .slider { + -slider-background-color: rgba(0, 0, 0, 0.2); + -slider-active-background-color: #0e1b28; } + +.check-box CinnamonGenericContainer { + spacing: .2em; + min-height: 30px; + padding-top: 2px; } + +.check-box StLabel { + font-weight: normal; } + +.check-box StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } + +.check-box:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } + +.check-box:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } + +.check-box:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.radiobutton CinnamonGenericContainer { + spacing: .2em; + height: 26px; + padding-top: 2px; } + +.radiobutton StLabel { + padding-top: 4px; + font-size: 0.9em; + box-shadow: none; } + +.radiobutton StBin { + width: 16px; + height: 16px; + background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } + +.radiobutton:focus StBin { + background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } + +.radiobutton:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked.svg"); } + +.radiobutton:focus:checked StBin { + background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } + +.toggle-switch { + width: 50px; + height: 20px; + background-size: contain; + background-image: url("light-assets/switch/switch-off.svg"); } + .toggle-switch:checked { + background-image: url("light-assets/switch/switch-on.svg"); } + .popup-menu-item:active .toggle-switch { + background-image: url("common-assets/switch/switch-off-selected.svg"); } + .popup-menu-item:active .toggle-switch:checked { + background-image: url("common-assets/switch/switch-on-selected.svg"); } + +.cinnamon-link { + color: #964425; + text-decoration: underline; } + .cinnamon-link:hover { + color: #bf562f; } + +#Tooltip { + border-radius: 3px; + padding: 5px 12px; + background-color: rgba(11, 24, 35, 0.95); + color: #c8dbec; + font-size: 1em; + font-weight: normal; + text-align: center; } + +.menu, +.popup-menu, +.popup-combo-menu { + color: #c8dbec; + border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } + .menu-arrow, + .popup-menu-arrow { + icon-size: 16px; } + .menu .popup-sub-menu, + .popup-menu .popup-sub-menu, + .popup-combo-menu .popup-sub-menu { + background-gradient-direction: none; + box-shadow: none; + border-image: url("light-assets/menu/submenu.svg") 9 9 9 9; } + .menu .popup-sub-menu .popup-menu-item:ltr, + .popup-menu .popup-sub-menu .popup-menu-item:ltr, + .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { + padding-right: 0em; } + .menu .popup-sub-menu .popup-menu-item:rtl, + .popup-menu .popup-sub-menu .popup-menu-item:rtl, + .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { + padding-left: 0em; } + .menu .popup-sub-menu StScrollBar, + .popup-menu .popup-sub-menu StScrollBar, + .popup-combo-menu .popup-sub-menu StScrollBar { + padding: 4px; } + .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, + .popup-menu .popup-sub-menu StScrollBar StBin#trough, + .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, + .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, + .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { + border-width: 0; } + .menu .popup-menu-content, + .popup-menu .popup-menu-content, + .popup-combo-menu .popup-menu-content { + padding: 1em 1px; } + .menu .popup-menu-item, + .popup-menu .popup-menu-item, + .popup-combo-menu .popup-menu-item { + padding: .4em 1.75em; + spacing: 1em; } + .menu .popup-menu-item:active, + .popup-menu .popup-menu-item:active, + .popup-combo-menu .popup-menu-item:active { + color: #0e1b28; + background-color: transparent; + border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } + .menu .popup-menu-item:insensitive, + .popup-menu .popup-menu-item:insensitive, + .popup-combo-menu .popup-menu-item:insensitive { + color: rgba(200, 219, 236, 0.5); + background: none; } + .menu .popup-inactive-menu-item, + .popup-menu .popup-inactive-menu-item, + .popup-combo-menu .popup-inactive-menu-item { + color: #c8dbec; } + .menu .popup-inactive-menu-item:insensitive, + .popup-menu .popup-inactive-menu-item:insensitive, + .popup-combo-menu .popup-inactive-menu-item:insensitive { + color: rgba(200, 219, 236, 0.55); } + .menu .popup-menu-item:active .popup-inactive-menu-item, + .popup-menu .popup-menu-item:active .popup-inactive-menu-item, + .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { + color: #0e1b28; } + .menu-icon, + .popup-menu-icon { + icon-size: 16px; } + +.popup-menu-boxpointer { + -arrow-border-radius: 3px; + -arrow-background-color: rgba(0, 0, 0, 0); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0); + -arrow-base: 0; + -arrow-rise: 0; } + +.popup-combo-menu { + padding: 10px 1px; } + +.popup-combobox-item { + spacing: 1em; } + +.popup-separator-menu-item { + -gradient-height: 1px; + -gradient-start: #060b11; + -gradient-end: #060b11; + -margin-horizontal: 0; + height: 0.5em; } + +.popup-alternating-menu-item:alternate { + font-weight: normal; } + +.popup-device-menu-item { + spacing: .5em; } + +.popup-subtitle-menu-item { + font-weight: normal; } + +.nm-menu-item-icons { + spacing: .5em; } + +#panel { + height: 27px; + width: 32px; } + #panel:highlight { + border-image: none; + background-color: rgba(181, 115, 92, 0.5); } + #panelLeft { + spacing: 4px; } + #panelLeft:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(255, 0, 0, 0.05); + background-gradient-end: rgba(255, 0, 0, 0.2); } + #panelLeft:ltr { + padding-right: 4px; } + #panelLeft:rtl { + padding-left: 4px; } + #panelLeft.vertical { + padding: 0; } + #panelLeft.vertical:ltr { + padding-right: 0px; } + #panelLeft.vertical:rtl { + padding-left: 0px; } + #panelRight:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 0, 255, 0.05); + background-gradient-end: rgba(0, 0, 255, 0.2); } + #panelRight:ltr { + padding-left: 4px; + spacing: 0px; } + #panelRight:rtl { + padding-right: 4px; + spacing: 0px; } + #panelRight.vertical { + padding: 0; } + #panelRight.vertical:ltr { + padding-right: 0px; } + #panelRight.vertical:rtl { + padding-left: 0px; } + #panelCenter { + spacing: 4px; } + #panelCenter:dnd { + background-gradient-direction: vertical; + background-gradient-start: rgba(0, 255, 0, 0.05); + background-gradient-end: rgba(0, 255, 0, 0.2); } + +.panel-top, .panel-bottom, .panel-left, .panel-right { + color: white; + font-size: 1em; + padding: 0px; } + +.panel-top { + border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } + +.panel-bottom { + border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } + +.panel-left { + border-image: url("common-assets/panel/panel-left.svg") 1 1 1 1; } + +.panel-right { + border-image: url("common-assets/panel/panel-right.svg") 1 1 1 1; } + +.panel-dummy { + background-color: rgba(181, 115, 92, 0.5); } + .panel-dummy:entered { + background-color: rgba(181, 115, 92, 0.6); } + +.panel-status-button { + border-width: 0; + -natural-hpadding: 3px; + -minimum-hpadding: 3px; + font-weight: bold; + color: white; } + +.panel-button { + -natural-hpadding: 6px; + -minimum-hpadding: 2px; + font-weight: bold; + color: green; + transition-duration: 100; } + +.system-status-icon { + icon-size: 16px; + padding: 0 1px; } + +#overview { + spacing: 12px; } + +.window-caption { + background-color: rgba(11, 24, 35, 0.95); + border: 1px solid rgba(11, 24, 35, 0.95); + color: #c8dbec; + spacing: 4px; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; } + .window-caption#selected, .window-caption:focus { + background-color: #bf562f; + color: #0e1b28; + border: 1px solid #bf562f; } + +.overview-empty-placeholder { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: white; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + +.expo-workspaces-name-entry { + height: 1.5em; + border-radius: 2px; + font-size: 9pt; + padding: 5px 8px; + -cinnamon-caption-spacing: 4px; + transition-duration: 300; + color: #c8dbec; + background-color: rgba(38, 83, 120, 0.35); + border: 1px solid rgba(0, 0, 0, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .expo-workspaces-name-entry:focus, .expo-workspaces-name-entry#selected { + border: 1px solid #bf562f; + background-color: #bf562f; + color: #0e1b28; + font-style: italic; + selection-background-color: #0e1b28; + selected-color: #bf562f; } + .expo-workspaces-name-entry:hover { + border: 1px solid #bf562f; } + +.expo-workspace-thumbnail-frame { + border: 4px solid rgba(255, 255, 255, 0); + background-color: rgba(255, 255, 255, 0); + border-radius: 2px; } + .expo-workspace-thumbnail-frame#active { + border: 4px solid #bf562f; + background-color: black; + border-radius: 2px; } + +.expo-background { + background-color: #0b1823; } + +.workspace-thumbnails { + spacing: 26px; } + .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { + padding: 8px; } + +.workspace-add-button { + background-image: url("common-assets/misc/add-workspace.svg"); + height: 200px; + width: 35px; + transition-duration: 100; } + .workspace-add-button:hover { + background-image: url("common-assets/misc/add-workspace-hover.svg"); + transition-duration: 100; } + .workspace-add-button:active { + background-image: url("common-assets/misc/add-workspace-active.svg"); + transition-duration: 100; } + +.workspace-overview-background-shade { + background-color: rgba(0, 0, 0, 0.5); } + +.workspace-close-button, +.window-close { + background-image: url("common-assets/misc/close.svg"); + background-size: 26px; + height: 26px; + width: 26px; + -cinnamon-close-overlap: 10px; } + .workspace-close-button:hover, + .window-close:hover { + background-image: url("common-assets/misc/close-hover.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + .workspace-close-button:active, + .window-close:active { + background-image: url("common-assets/misc/close-active.svg"); + background-size: 26px; + height: 26px; + width: 26px; } + +.window-close-area { + background-image: url("common-assets/misc/trash-icon.svg"); + height: 120px; + width: 400px; } + +.about-content { + width: 550px; + height: 250px; + spacing: 8px; + padding-bottom: 10px; } + +.about-title { + font-size: 2em; + font-weight: bold; } + +.about-uuid { + font-size: 10px; + color: #888; } + +.about-icon { + padding-right: 20px; + padding-bottom: 14px; } + +.about-scrollBox { + border: 1px solid #060b11; + border-radius: 2px; + background-color: #0e1b28; + padding: 4px; + padding-right: 0; + border-radius: 0; } + .about-scrollBox-innerBox { + padding: 1.2em; + spacing: 1.2em; } + +.about-description { + padding-top: 4px; + padding-bottom: 16px; } + +.about-version { + padding-left: 7px; + font-size: 10px; + color: #888; } + +.calendar { + padding: .4em 1.75em; + spacing-rows: 0px; + spacing-columns: 0px; } + +.calendar-month-label { + color: #c8dbec; + font-weight: bold; + padding: 8px 0; } + +.calendar-change-month-back, +.calendar-change-month-forward { + width: 16px; + height: 16px; } + +.calendar-change-month-back { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:focus, .calendar-change-month-back:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-back:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-back:rtl { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-back:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + +.calendar-change-month-forward { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { + background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } + .calendar-change-month-forward:active { + background-image: url("common-assets/misc/calendar-arrow-right.svg"); } + .calendar-change-month-forward:rtl { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { + background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } + .calendar-change-month-forward:rtl:active { + background-image: url("common-assets/misc/calendar-arrow-left.svg"); } + +.datemenu-date-label { + padding: .4em 1.75em; + font-weight: bold; + text-align: center; + color: #c8dbec; + border-radius: 2px; } + +.calendar-day-base { + font-size: 8pt; + text-align: center; + width: 2.5em; + height: 2.5em; + padding: 0.1em; + margin: 0.1em; + border-radius: 999px; } + +.calendar-day-heading { + color: rgba(200, 219, 236, 0.85); + margin-top: 1em; + font-size: 6pt; + width: 2.5em; + height: 2em; } + +.calendar-day { + border-width: 0; + color: rgba(200, 219, 236, 0.8); } + +.calendar-day-top { + border-top-width: 0; } + +.calendar-day-left { + border-left-width: 0; } + +.calendar-nonwork-day { + color: #c8dbec; + background-color: transparent; + font-weight: bold; + border-width: 0; } + +.calendar-today, +.calendar-today:active, +.calendar-today:focus, +.calendar-today:hover { + font-weight: bold; + color: #0e1b28; + background-color: #bf562f; + border-width: 0; } + +.calendar-other-month-day { + color: rgba(200, 219, 236, 0.3); + opacity: 1; } + +.calendar-week-number { + color: rgba(200, 219, 236, 0.7); + font-size: 6pt; + width: 2.5em; + height: 2em; + padding: 1.2em 0 0; + text-align: center; } + +#notification { + border-radius: 3px; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + padding: 13px; + spacing-rows: 10px; + spacing-columns: 10px; + margin-from-right-edge-of-screen: 20px; + width: 34em; + color: #c8dbec; } + .menu #notification, + .popup-menu #notification { + border-image: url("light-assets/misc/message.svg") 9 9 9 9; } + .menu #notification, .menu #notification.multi-line-notification, + .popup-menu #notification, + .popup-menu #notification.multi-line-notification { + color: #c8dbec; } + .menu #notification .notification-button, .menu #notification .notification-icon-button, + .popup-menu #notification .notification-button, + .popup-menu #notification .notification-icon-button { + padding: 5px; } + #notification.multi-line-notification { + padding-bottom: 13px; + color: #c8dbec; } + #notification-scrollview { + max-height: 10em; } + #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { + height: 1em; } + #notification-scrollview:ltr > StScrollBar { + padding-left: 6px; } + #notification-scrollview:rtl > StScrollBar { + padding-right: 6px; } + #notification-body { + spacing: 5px; } + #notification-actions { + spacing: 10px; } + +.notification-with-image { + min-height: 159px; + color: #c8dbec; } + +.notification-button, .notification-icon-button { + padding: 5px; } + +.notification-icon-button > StIcon { + icon-size: 36px; } + +#altTabPopup { + padding: 8px; + spacing: 16px; } + +.switcher-list { + color: #c8dbec; + background: none; + border: none; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 20px; } + .switcher-list > StBoxLayout { + padding: 4px; } + .switcher-list-item-container { + spacing: 8px; } + .switcher-list .item-box { + padding: 8px; + border-radius: 2px; } + .switcher-list .item-box:outlined { + padding: 8px; + border: 1px solid #bf562f; } + .switcher-list .item-box:selected { + color: #0e1b28; + background-color: #bf562f; + border: 0px solid #bf562f; } + .switcher-list .thumbnail { + width: 256px; } + .switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; } + .switcher-list .separator { + width: 1px; + background: rgba(255, 255, 255, 0.2); } + +.switcher-arrow { + border-color: rgba(0, 0, 0, 0); + color: #c8dbec; } + .switcher-arrow:highlighted { + border-color: rgba(0, 0, 0, 0); + color: white; } + +.thumbnail-scroll-gradient-left { + background-color: rgba(0, 0, 0, 0); + border-radius: 24px; + border-radius-topright: 0px; + border-radius-bottomright: 0px; + width: 60px; } + +.thumbnail-scroll-gradient-right { + background-color: rgba(0, 0, 0, 0); + border-radius: 24px; + border-radius-topleft: 0px; + border-radius-bottomleft: 0px; + width: 60px; } + +.ripple-box { + width: 104px; + height: 104px; + background-image: url("common-assets/misc/corner-ripple.svg"); + background-size: contain; } + +.lightbox { + background-color: rgba(0, 0, 0, 0.4); } + +.flashspot { + background-color: white; } + +.modal-dialog { + color: #c8dbec; + background-color: rgba(17, 35, 51, 0); + border: none; + border-image: url("light-assets/misc/modal.svg") 9 9 9 67; + padding: 0 5px 6px 5px; } + .modal-dialog > StBoxLayout:first-child { + padding: 20px 10px 10px 10px; } + .modal-dialog-button-box { + spacing: 0; + margin: 0px; + padding: 14px 10px; + background: none; + border: none; + border-image: url("light-assets/misc/button-box.svg") 9 9 9 9; } + .modal-dialog-button-box .modal-dialog-button { + padding-top: 0; + padding-bottom: 0; + height: 30px; } + +.run-dialog { + padding: 0px 15px 10px 15px; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } + .run-dialog > * { + padding: 0; } + .run-dialog-label { + font-size: 0; + font-weight: bold; + color: #c8dbec; + padding-bottom: 0; } + .run-dialog-error-label { + color: #b5735c; } + .run-dialog-error-box { + padding-top: 15px; + spacing: 5px; } + .run-dialog-completion-box { + padding-left: 15px; + font-size: 10px; } + .run-dialog-entry { + width: 21em; + padding: 7px; + border-radius: 3px; + caret-color: #c8dbec; + selected-color: #0e1b28; + selection-background-color: #bf562f; + color: #c8dbec; + background-color: rgba(38, 83, 120, 0.35); + border: 1px solid rgba(0, 0, 0, 0.35); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog-entry:focus { + color: #0e1b28; + background-color: #bf562f; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } + .run-dialog .modal-dialog-button-box { + border: none; + box-shadow: none; + background: none; + border-image: none; + background-gradient-direction: none; } + +/* CinnamonMountOperation Dialogs */ +.cinnamon-mount-operation-icon { + icon-size: 48px; } + +.mount-password-reask { + color: #938d6d; } + +.show-processes-dialog, +.mount-question-dialog { + spacing: 24px; } + .show-processes-dialog-subject, + .mount-question-dialog-subject { + padding-top: 10px; + padding-left: 17px; + padding-bottom: 6px; } + .show-processes-dialog-subject:rtl, + .mount-question-dialog-subject:rtl { + padding-left: 0px; + padding-right: 17px; } + .show-processes-dialog-description, + .mount-question-dialog-description { + padding-left: 17px; + width: 28em; } + .show-processes-dialog-description:rtl, + .mount-question-dialog-description:rtl { + padding-right: 17px; } + +.show-processes-dialog-app-list { + max-height: 200px; + padding-top: 24px; + padding-left: 49px; + padding-right: 32px; } + .show-processes-dialog-app-list:rtl { + padding-right: 49px; + padding-left: 32px; } + .show-processes-dialog-app-list-item { + color: #ccc; } + .show-processes-dialog-app-list-item:hover { + color: white; } + .show-processes-dialog-app-list-item:ltr { + padding-right: 1em; } + .show-processes-dialog-app-list-item:rtl { + padding-left: 1em; } + .show-processes-dialog-app-list-item-icon:ltr { + padding-right: 17px; } + .show-processes-dialog-app-list-item-icon:rtl { + padding-left: 17px; } + .show-processes-dialog-app-list-item-name { + font-size: 1.1em; } + +.magnifier-zoom-region { + border: 2px solid maroon; } + .magnifier-zoom-region .full-screen { + border-width: 0px; } + +#keyboard { + background-color: rgba(11, 24, 35, 0.95); + border-width: 0; + border-top-width: 1px; + border-color: rgba(0, 0, 0, 0.4); } + +.keyboard-layout { + spacing: 10px; + padding: 10px; } + +.keyboard-row { + spacing: 15px; } + +.keyboard-key { + min-height: 2em; + min-width: 2em; + font-size: 14pt; + font-weight: bold; + border-radius: 3px; + box-shadow: none; + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(38, 83, 120, 0.35); } + .keyboard-key:hover { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(46, 101, 148, 0.45); } + .keyboard-key:active, .keyboard-key:checked { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #0e1b28; + border: 1px solid #bf562f; + background-color: #bf562f; } + .keyboard-key:grayed { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #44535f; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(38, 83, 120, 0.2); } + +.keyboard-subkeys { + color: #c8dbec; + padding: 5px; + -arrow-border-radius: 2px; + -arrow-background-color: rgba(11, 24, 35, 0.95); + -arrow-border-width: 1px; + -arrow-border-color: rgba(0, 0, 0, 0.4); + -arrow-base: 20px; + -arrow-rise: 10px; + -boxpointer-gap: 5px; } + +.menu-favorites-box { + padding: 10px; + transition-duration: 300; + background-color: #112333; + border: 1px solid #060b11; + spacing: 0.5em; } + +.menu-favorites-scrollbox { + padding-bottom: 0.5em; + border-bottom: 1px solid; + border-color: #bf562f; } + +.menu-favorites-button { + padding: 10px; + border: 1px solid rgba(0, 0, 0, 0); } + +.menu-places-box { + padding: 10px; + border: 0px solid red; } + +.menu-places-button { + padding: 10px; } + +.menu-categories-box { + padding: 10px 30px 10px 30px; } + +.menu-applications-inner-box, .menu-applications-outer-box { + padding: 10px 10px 0 10px; } + +.menu-application-button { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0); } + .menu-application-button:highlighted { + font-weight: bold; } + .menu-application-button-selected { + padding: 7px; } + .menu-application-button-selected:highlighted { + font-weight: bold; } + .menu-application-button-label:ltr { + padding-left: 5px; } + .menu-application-button-label:rtl { + padding-right: 5px; } + +.menu-category-button { + padding: 7px; + border: 1px solid rgba(0, 0, 0, 0); } + .menu-category-button-selected { + padding: 7px; } + .menu-category-button-hover { + background-color: red; + border-radius: 2px; } + .menu-category-button-greyed { + padding: 7px; + color: rgba(200, 219, 236, 0.55); + border: 1px solid rgba(0, 0, 0, 0); } + .menu-category-button-label:ltr { + padding-left: 5px; } + .menu-category-button-label:rtl { + padding-right: 5px; } + +.menu-selected-app-box { + padding-right: 30px; + padding-left: 28px; + text-align: right; + height: 30px; } + .menu-selected-app-box:rtl { + padding-top: 10px; + height: 30px; } + +.menu-selected-app-title { + font-weight: bold; } + +.menu-selected-app-description { + max-width: 150px; } + +.menu-search-box:ltr { + padding-left: 30px; } + +.menu-search-box-rtl { + padding-right: 30px; } + +#menu-search-entry { + width: 250px; + font-weight: normal; + caret-color: #c8dbec; } + +.menu-search-entry-icon { + icon-size: 1em; + color: #c8dbec; } + +/* Context menu (at the moment only for favorites) */ +.menu-context-menu { + padding: 1em 1px; } + +.info-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: white; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + +.osd-window { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 20px; + margin: 32px; + min-width: 64px; + min-height: 64px; + color: white; + background: none; + border: none; + border-radius: 5px; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + .osd-window .osd-monitor-label { + font-size: 3em; } + .osd-window .level { + padding: 0; + height: 4px; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 2px; + color: #bf562f; } + .osd-window .level-bar { + background-color: #bf562f; } + +.window-list-box { + spacing: 6px; + padding-left: 10px; } + .panel-bottom .window-list-box { + padding-top: 1px; } + .panel-top .window-list-box { + padding-bottom: 1px; } + .window-list-box .progress { + background-color: #bf562f; } + .window-list-box.vertical { + spacing: 4px; + padding: 10px 0; } + .window-list-box:highlight { + background-color: rgba(181, 115, 92, 0.5); } + +.window-list-preview { + spacing: 8px; + color: #c8dbec; + background: none; + border: none; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 16px; } + +.window-list-item-label { + width: 15em; + min-width: 5px; } + +.window-list-item-box { + background-image: none; + padding-top: 0; + padding-left: 8px; + padding-right: 8px; + spacing: 4px; + transition-duration: 100; + color: rgba(255, 255, 255, 0.6); } + .window-list-item-box:hover, .window-list-item-box:focus:hover { + color: white; + background-color: #bf562f; } + .panel-bottom .window-list-item-box:focus:hover { + box-shadow: 0 -2px 0 0 white inset; } + .panel-top .window-list-item-box:focus:hover { + box-shadow: 0 2px 0 0 white inset; } + .panel-left .window-list-item-box:focus:hover { + box-shadow: 2px 0 0 0 white inset; } + .panel-right .window-list-item-box:focus:hover { + box-shadow: -2px 0 0 0 white inset; } + .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { + color: white; + background-color: rgba(200, 219, 236, 0.4); + font-weight: bold; } + .panel-bottom .window-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus { + box-shadow: 0 -2px 0 0 #bf562f inset; } + .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus { + box-shadow: 0 2px 0 0 #bf562f inset; } + .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus { + box-shadow: 2px 0 0 0 #bf562f inset; } + .panel-right .window-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus { + box-shadow: -2px 0 0 0 #bf562f inset; } + .window-list-item-box.right, .window-list-item-box.left { + padding-left: 0px; + padding-right: 0px; } + +.window-list-item-demands-attention { + background-gradient-start: #938d6d; + background-gradient-end: #938d6d; } + +.grouped-window-list-thumbnail-label { + padding-left: 3px; } + +.grouped-window-list-number-label { + z-index: 99; + color: white; } + +.grouped-window-list-button-label { + padding: 1px; } + +.grouped-window-list-badge { + border-radius: 256px; + background-color: rgba(5, 11, 17, 0.95); } + +.grouped-window-list-thumbnail-alert { + background-color: #938d6d; } + +.grouped-window-list-item-box { + transition-duration: 100; + background-image: none; + color: rgba(255, 255, 255, 0.6); } + .grouped-window-list-item-box:hover, .grouped-window-list-item-box:active:hover { + color: white; + background-color: #bf562f; } + .grouped-window-list-item-box:active { + background-color: rgba(0, 0, 0, 0.01); } + .panel-bottom .grouped-window-list-item-box:active { + box-shadow: 0 -2px 0 0 #bf562f inset; } + .panel-top .grouped-window-list-item-box:active { + box-shadow: 0 2px 0 0 #bf562f inset; } + .panel-left .grouped-window-list-item-box:active { + box-shadow: 2px 0 0 0 #bf562f inset; } + .panel-right .grouped-window-list-item-box:active { + box-shadow: -2px 0 0 0 #bf562f inset; } + .panel-bottom .grouped-window-list-item-box:active:hover { + box-shadow: 0 -2px 0 0 white inset; } + .panel-top .grouped-window-list-item-box:active:hover { + box-shadow: 0 2px 0 0 white inset; } + .panel-left .grouped-window-list-item-box:active:hover { + box-shadow: 2px 0 0 0 white inset; } + .panel-right .grouped-window-list-item-box:active:hover { + box-shadow: -2px 0 0 0 white inset; } + .grouped-window-list-item-box:focus { + color: white; + background-color: rgba(200, 219, 236, 0.4); + font-weight: bold; } + .panel-bottom .grouped-window-list-item-box:focus { + box-shadow: 0 -2px 0 0 #bf562f inset; } + .panel-top .grouped-window-list-item-box:focus { + box-shadow: 0 2px 0 0 #bf562f inset; } + .panel-left .grouped-window-list-item-box:focus { + box-shadow: 2px 0 0 0 #bf562f inset; } + .panel-right .grouped-window-list-item-box:focus { + box-shadow: -2px 0 0 0 #bf562f inset; } + .grouped-window-list-item-box:focus:hover { + background-color: #bf562f; } + .panel-bottom .grouped-window-list-item-box:focus:hover { + box-shadow: 0 -2px 0 0 white inset; } + .panel-top .grouped-window-list-item-box:focus:hover { + box-shadow: 0 2px 0 0 white inset; } + .panel-left .grouped-window-list-item-box:focus:hover { + box-shadow: 2px 0 0 0 white inset; } + .panel-right .grouped-window-list-item-box:focus:hover { + box-shadow: -2px 0 0 0 white inset; } + .grouped-window-list-item-box .progress { + background-color: #bf562f; } + +.grouped-window-list-item-demands-attention { + background-gradient-start: #938d6d; + background-gradient-end: #938d6d; } + +.grouped-window-list-thumbnail-menu { + color: #c8dbec; + background: none; + border: none; + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-radius: 3px; + padding: 10px 20px; } + .grouped-window-list-thumbnail-menu .item-box { + margin: 8px; + spacing: 4px; + border-radius: 2px; + border: 1px solid none; } + .grouped-window-list-thumbnail-menu .item-box:outlined { + border: 1px solid #bf562f; } + .grouped-window-list-thumbnail-menu .item-box:selected { + background-color: #bf562f; + border: 1px solid #bf562f; + color: #0e1b28; } + .grouped-window-list-thumbnail-menu .thumbnail-box { + padding: 2px; + spacing: 4px; } + .grouped-window-list-thumbnail-menu .thumbnail { + width: 256px; } + .grouped-window-list-thumbnail-menu .separator { + width: 1px; + background: #bf562f; } + +.vertical .grouped-window-list-item-box { + padding: 2px 0; } + +.sound-button { + width: 22px; + height: 13px; + padding: 8px; } + .sound-button-container { + padding-right: 3px; + padding-left: 3px; } + .sound-button StIcon { + icon-size: 1.4em; } + +.sound-track-infos { + padding: 5px; } + +.sound-track-info { + padding-top: 2px; + padding-bottom: 2px; } + .sound-track-info StIcon { + icon-size: 16px; } + .sound-track-info StLabel { + padding-left: 5px; + padding-right: 5px; } + +.sound-track-box { + padding-left: 15px; + padding-right: 15px; + max-width: 220px; } + +.sound-seek-box { + padding-left: 15px; } + .sound-seek-box StLabel { + padding-top: 2px; } + .sound-seek-box StIcon { + icon-size: 16px; } + +.sound-seek-slider { + width: 140px; } + +.sound-volume-menu-item { + padding: .4em 1.75em; } + .sound-volume-menu-item StIcon { + icon-size: 1.14em; + padding-left: 8px; + padding-right: 8px; } + +.sound-playback-control { + padding: 5px 10px 10px 10px; } + +.sound-player { + padding: 0 4px; } + .sound-player > StBoxLayout:first-child { + padding: 5px 10px 12px 10px; + spacing: 0.5em; } + .sound-player > StBoxLayout:first-child StButton:small { + width: 16px; + height: 16px; + padding: 1px; } + .sound-player > StBoxLayout:first-child StButton:small StIcon { + icon-size: 12px; } + .sound-player-generic-coverart { + background: rgba(0, 0, 0, 0.2); } + .sound-player-overlay { + width: 290px; + height: 70px; + padding: 15px; + spacing: 0.5em; + background: rgba(5, 11, 16, 0.85); + border: 0px solid rgba(0, 0, 0, 0.95); + border-bottom: 1px; + color: #c8dbec; } + .sound-player-overlay StButton { + width: 22px; + height: 13px; + padding: 5px; + color: #c8dbec; + border-radius: 2px; + border: 1px solid rgba(11, 24, 35, 0); } + .sound-player-overlay StButton StIcon { + icon-size: 16px; } + .sound-player-overlay StButton:hover { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #c8dbec; + border: 1px solid rgba(0, 0, 0, 0.35); + background-color: rgba(46, 101, 148, 0.45); } + .sound-player-overlay StButton:active { + text-shadow: 0 1px rgba(14, 27, 40, 0); + color: #0e1b28; + background-color: #bf562f; + border: 1px solid #bf562f; + box-shadow: inset 0 2px 4px #bf562f; } + .sound-player-overlay StBoxLayout { + padding-top: 2px; } + .sound-player .slider { + height: 0.5em; + padding: 0; + border: none; + -slider-height: 0.5em; + -slider-background-color: #132433; + -slider-border-color: rgba(0, 0, 0, 0); + -slider-active-background-color: #bf562f; + -slider-active-border-color: rgba(0, 0, 0, 0); + -slider-border-width: 0px; + -slider-handle-radius: 0px; } + +#workspaceSwitcher { + spacing: 0px; + padding: 3px; } + +/* Controls the styling when using the "Simple buttons" option */ +.workspace-switcher { + padding-left: 3px; + padding-right: 3px; } + +.workspace-button { + width: 20px; + height: 10px; + color: #0e1b28; + padding: 3px; + padding-top: 4px; + transition-duration: 300; } + .workspace-button:outlined, .workspace-button:outlined:hover { + color: #bf562f; } + .workspace-button:hover { + color: rgba(191, 86, 47, 0.5); } + .workspace-button.vertical { + height: 15px; } + +/* Controls the style when using the "Visual representation" option */ +.workspace-graph { + padding: 3px; + spacing: 3px; } + +.workspace-graph .workspace { + border: 1px solid rgba(0, 0, 0, 0.4); + background-gradient-direction: none; + background-color: rgba(0, 0, 0, 0.2); } + +.workspace-graph .workspace:active { + border: 1px solid #bf562f; + background-gradient-direction: none; } + +.workspace-graph .workspace .windows { + -active-window-background: rgba(24, 51, 75, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(24, 51, 75, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.workspace-graph .workspace:active .windows { + -active-window-background: rgba(30, 65, 94, 0.95); + -active-window-border: rgba(0, 0, 0, 0.8); + -inactive-window-background: rgba(11, 25, 36, 0.95); + -inactive-window-border: rgba(0, 0, 0, 0.8); } + +.panel-launchers { + padding: 0 4px; } + .panel-launchers .launcher { + padding: 0 4px; + transition-duration: 200; + background-image: none; } + .panel-launchers.vertical { + padding: 4px 0; } + .panel-launchers.vertical .launcher { + padding: 4px 0; } + .panel-launchers .launcher:hover { + background-color: #bf562f; } + +#overview-corner { + background-image: url("common-assets/misc/overview.png"); } + #overview-corner:hover { + background-image: url("common-assets/misc/overview-hover.png"); } + +.applet-separator { + padding: 1px 4px; } + +.applet-separator-line { + width: 1px; + background: rgba(255, 255, 255, 0.12); } + +.applet-box { + padding-left: 3px; + padding-right: 3px; + spacing: 4px; + color: white; + text-shadow: none; + transition-duration: 100; } + .applet-box.vertical { + padding: 3px 0; } + .applet-box:hover { + color: #0e1b28; + background-color: #bf562f; } + .applet-box:highlight { + background-image: none; + border-image: none; + background-color: rgba(181, 115, 92, 0.5); } + +.applet-label { + font-weight: bold; + color: white; } + .applet-label:hover, .applet-box:hover > .applet-label { + color: #0e1b28; + text-shadow: none; } + +.applet-icon { + color: white; + icon-size: 22px; } + .applet-icon:hover, .applet-box:hover > .applet-icon { + color: #0e1b28; + text-shadow: none; } + +.user-icon { + width: 32px; + height: 32px; + background-color: transparent; + border: none; + border-radius: 0; } + +.user-label { + color: #c8dbec; + font-size: 1em; + font-weight: bold; + margin: 0px; } + +.desklet { + color: #c8dbec; } + .desklet:highlight { + background-color: rgba(181, 115, 92, 0.5); } + .desklet-with-borders { + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + color: #c8dbec; + padding: 12px; + padding-bottom: 16px; } + .desklet-with-borders:highlight { + background-color: rgba(181, 115, 92, 0.5); } + .desklet-with-borders-and-header { + border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; + color: #c8dbec; + border-radius: 0; + border-radius-topleft: 0; + border-radius-topright: 0; + padding: 12px; + padding-bottom: 17px; } + .desklet-with-borders-and-header:highlight { + background-color: rgba(181, 115, 92, 0.5); } + .desklet-header { + border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; + color: #c8dbec; + font-size: 1em; + padding: 12px; + padding-bottom: 6px; } + .desklet-drag-placeholder { + border: 2px solid #bf562f; + background-color: rgba(191, 86, 47, 0.3); } + +.photoframe-box { + border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + color: #c8dbec; + padding: 12px; + padding-bottom: 16px; } + +.workspace-osd { + text-align: center; + font-weight: bold; + spacing: 1em; + padding: 16px; + color: white; + border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } + +.notification-applet-padding { + padding: .5em 1em; } + +.notification-applet-container { + max-height: 100px; } + +.tile-preview, .tile-preview.snap, +.tile-hud, .tile-hud.snap { + background-color: rgba(191, 86, 47, 0.3); + border: 1px solid #bf562f; } + +.xkcd-box { + padding: 6px; + border: 0px; + background-color: rgba(0, 0, 0, 0); + border-radius: 0px; } diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-hover.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-hover.svg new file mode 100644 index 0000000..e6119db --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-hover.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-separator.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-separator.svg new file mode 100644 index 0000000..8ab298f --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/menu/menu-separator.svg @@ -0,0 +1,60 @@ + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-active.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-active.svg new file mode 100644 index 0000000..61471e1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-active.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-hover.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-hover.svg new file mode 100644 index 0000000..fa7596b --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace-hover.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace.svg new file mode 100644 index 0000000..c052bfe --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/add-workspace.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/bg.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/bg.svg new file mode 100644 index 0000000..13b27fd --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/bg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg new file mode 100644 index 0000000..282f0c1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left.svg new file mode 100644 index 0000000..af372ab --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-left.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg new file mode 100644 index 0000000..898beb1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg @@ -0,0 +1,172 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right.svg new file mode 100644 index 0000000..d60809e --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/calendar-arrow-right.svg @@ -0,0 +1,152 @@ + + + + + + + + image/svg+xml + + Gnome Symbolic Icon Theme + + + + + + + + Gnome Symbolic Icon Theme + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-active.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-active.svg new file mode 100644 index 0000000..69bc4cb --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-active.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-hover.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-hover.svg new file mode 100644 index 0000000..53eb8e8 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close-hover.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close.svg new file mode 100644 index 0000000..b4d20a6 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/close.svg @@ -0,0 +1,100 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/corner-ripple.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/corner-ripple.svg new file mode 100644 index 0000000..579a094 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/corner-ripple.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet-header.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet-header.svg new file mode 100644 index 0000000..d45be7a --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet-header.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet.svg new file mode 100644 index 0000000..da42132 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/desklet.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/osd.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/osd.svg new file mode 100644 index 0000000..2ce123c --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/osd.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview-hover.png b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview-hover.png new file mode 100644 index 0000000..75673f9 Binary files /dev/null and b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview-hover.png differ diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview.png b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview.png new file mode 100644 index 0000000..9eb4f87 Binary files /dev/null and b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/overview.png differ diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/trash-icon.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/trash-icon.svg new file mode 100644 index 0000000..a6d080b --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/misc/trash-icon.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-bottom.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-bottom.svg new file mode 100644 index 0000000..4505d61 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-bottom.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-left.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-left.svg new file mode 100644 index 0000000..d6d94e5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-left.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-right.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-right.svg new file mode 100644 index 0000000..dac8397 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-right.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-top.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-top.svg new file mode 100644 index 0000000..5b36df9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/panel/panel-top.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-off-selected.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-off-selected.svg new file mode 100644 index 0000000..1710714 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-off-selected.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-on-selected.svg b/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-on-selected.svg new file mode 100644 index 0000000..bdd45df --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/common-assets/switch/switch-on-selected.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg new file mode 100644 index 0000000..bd71c78 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked.svg new file mode 100644 index 0000000..df9eeea --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-checked.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg new file mode 100644 index 0000000..049683c --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked.svg new file mode 100644 index 0000000..2c9871e --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/checkbox/checkbox-unchecked.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/menu.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/menu.svg new file mode 100644 index 0000000..dca6b03 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/menu.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/submenu.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/submenu.svg new file mode 100644 index 0000000..378f29b --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/menu/submenu.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/button-box.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/button-box.svg new file mode 100644 index 0000000..a81220c --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/button-box.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/message.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/message.svg new file mode 100644 index 0000000..d130f4b --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/message.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/modal.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/modal.svg new file mode 100644 index 0000000..240b3db --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/misc/modal.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-off.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-off.svg new file mode 100644 index 0000000..a0c5831 --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-off.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-on.svg b/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-on.svg new file mode 100644 index 0000000..85b6d1b --- /dev/null +++ b/themes/blueleaves/gtk/theme/cinnamon/light-assets/switch/switch-on.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/cinnamon/thumbnail.png b/themes/blueleaves/gtk/theme/cinnamon/thumbnail.png new file mode 100644 index 0000000..bcc6216 Binary files /dev/null and b/themes/blueleaves/gtk/theme/cinnamon/thumbnail.png differ diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-left.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-left.svg new file mode 100644 index 0000000..e696d68 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-right.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-right.svg new file mode 100644 index 0000000..8ca01b1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-arrow-right.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-event.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-event.svg new file mode 100644 index 0000000..aa462bb --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/calendar-event.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox-off.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox-off.svg new file mode 100644 index 0000000..b40ef90 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox.svg new file mode 100644 index 0000000..30d320f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/checkbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/close.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/close.svg new file mode 100644 index 0000000..765be5a --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/close.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash-placeholder.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash-placeholder.svg new file mode 100644 index 0000000..4982d1f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash-placeholder.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1-focused.svg new file mode 100644 index 0000000..0c2aa72 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1.svg new file mode 100644 index 0000000..fd5c390 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2-focused.svg new file mode 100644 index 0000000..4cf8c75 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2.svg new file mode 100644 index 0000000..fc825c7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3-focused.svg new file mode 100644 index 0000000..2477c7b --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3.svg new file mode 100644 index 0000000..59e0819 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4-focused.svg new file mode 100644 index 0000000..4a2bd43 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4.svg new file mode 100644 index 0000000..32b9226 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/bottom-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1-focused.svg new file mode 100644 index 0000000..917220b --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1.svg new file mode 100644 index 0000000..45503f6 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2-focused.svg new file mode 100644 index 0000000..ecbe377 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2.svg new file mode 100644 index 0000000..7e82460 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3-focused.svg new file mode 100644 index 0000000..d53fdf0 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3.svg new file mode 100644 index 0000000..8d3a9cc --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4-focused.svg new file mode 100644 index 0000000..7155640 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4.svg new file mode 100644 index 0000000..38e77a4 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/left-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1-focused.svg new file mode 100644 index 0000000..42f9be3 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1.svg new file mode 100644 index 0000000..eee6548 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2-focused.svg new file mode 100644 index 0000000..c55200d --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2.svg new file mode 100644 index 0000000..6a03540 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3-focused.svg new file mode 100644 index 0000000..7a59b16 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3.svg new file mode 100644 index 0000000..37086d9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4-focused.svg new file mode 100644 index 0000000..f0be01f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4.svg new file mode 100644 index 0000000..97b65c5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/right-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1-focused.svg new file mode 100644 index 0000000..bee8a7a --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1-focused.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1.svg new file mode 100644 index 0000000..4ae2664 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running1.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2-focused.svg new file mode 100644 index 0000000..c472768 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2-focused.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2.svg new file mode 100644 index 0000000..27e771f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3-focused.svg new file mode 100644 index 0000000..f7601d3 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3-focused.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3.svg new file mode 100644 index 0000000..a5bba94 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4-focused.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4-focused.svg new file mode 100644 index 0000000..ae2cd77 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4-focused.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4.svg new file mode 100644 index 0000000..4359056 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/dash/top-running4.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-enter.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-enter.svg new file mode 100644 index 0000000..6b1dc1e --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-enter.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-hide.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-hide.svg new file mode 100644 index 0000000..4d131c0 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-hide.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-layout.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-layout.svg new file mode 100644 index 0000000..eed1947 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-layout.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-latched-uppercase.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-latched-uppercase.svg new file mode 100644 index 0000000..db98acd --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-latched-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-uppercase.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-uppercase.svg new file mode 100644 index 0000000..5b75aad --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift-uppercase.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift.svg new file mode 100644 index 0000000..20b0e5f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/key-shift.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-off.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-off.svg new file mode 100644 index 0000000..a1416ce --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-off.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-on.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-on.svg new file mode 100644 index 0000000..f3e7e5a --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/menu-item-toggle-on.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/no-events.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/no-events.svg new file mode 100644 index 0000000..296a1a2 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/no-events.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/no-notifications.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/no-notifications.svg new file mode 100644 index 0000000..84a0be5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/no-notifications.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-off.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-off.svg new file mode 100644 index 0000000..d2b46d7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-off.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-on.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-on.svg new file mode 100644 index 0000000..c102966 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/toggle-on.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/assets/window-close.svg b/themes/blueleaves/gtk/theme/gnome-shell/assets/window-close.svg new file mode 100644 index 0000000..aa49e83 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/assets/window-close.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css b/themes/blueleaves/gtk/theme/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css new file mode 100644 index 0000000..2f3aa20 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/extensions/workspaces-to-dock/workspaces-to-dock.css @@ -0,0 +1,519 @@ +#workspacestodockTriggerSpacer { + background-color: none; +} + +#workspacestodockContainerWrapper { + background-color: none; +} + +#workspacestodockContainer { + background-color: none; +} + +#workspacestodockDockWrapper { +} + +#workspacestodockDock { + padding: 0; +} + +#workspacestodockDock .workspace-thumbnails { + background-color: #37474F; + background-color: rgba(0, 0, 0, 0.6); +} + +#workspacestodockDock:overview .workspace-thumbnails { + background-color: rgba(255, 255, 255, 0.1); +} + +#workspacestodockDock.fullheight:overview .workspace-thumbnails { + background-color: transparent; +} + +#workspacestodockDock .workspace-thumbnail-indicator { + border-left-width: 0; +} + +#workspacestodockDock.right .workspace-thumbnail-indicator { + border-left-width: 2px; +} + +#workspacestodockDock.left .workspace-thumbnail-indicator { + border-right-width: 2px; +} + +#workspacestodockDock.top .workspace-thumbnail-indicator { + border-bottom-width: 2px; +} + +#workspacestodockDock.bottom .workspace-thumbnail-indicator { + border-top-width: 2px; +} + +#workspacestodockDock.right .workspace-thumbnails { + border-radius: 4px 0 0 4px; +} + +#workspacestodockDock.left .workspace-thumbnails { + border-radius: 0 4px 4px 0; +} + +#workspacestodockDock.top .workspace-thumbnails { + border-radius: 0 0 4px 4px; +} + +#workspacestodockDock.bottom .workspace-thumbnails { + border-radius: 4px 4px 0 0; +} + +#workspacestodockDock.right.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.inside .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.right.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspace-thumbnails { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel { + border: 0 solid rgba(255, 255, 255, 0.12); +} + +#workspacestodockDock.right .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel { + border-radius: 0; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.right.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 0 0 4px; + padding: 0; + spacing: 0; + border-left: none; + border-right: 1px; +} + +#workspacestodockDock.left.inside .workspacestodock-shortcuts-panel { + border-radius: 0 4px 4px 0; + padding: 0; + spacing: 0; + border-left: 1px; + border-right: none; +} + +#workspacestodockDock.top.inside .workspacestodock-shortcuts-panel { + border-radius: 0 0 4px 4px; + padding: 0; + spacing: 0; + border-top: 1px; + border-bottom: none; +} + +#workspacestodockDock.bottom.inside .workspacestodock-shortcuts-panel { + border-radius: 4px 4px 0 0; + padding: 0; + spacing: 0; + border-top: none; + border-bottom: 1px; +} + +#workspacestodockDock.right.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.left.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.top.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock.bottom.fullheight .workspacestodock-shortcuts-panel { + border-radius: 0; +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > * { + border: 0 !important; +} + +.workspacestodock-shortcuts-panel-popupmenu { + padding: 2px; + spacing: 0; +} + +.workspacestodock-shortcuts-panel-favorites { +} + +.workspacestodock-shortcuts-panel-running { +} + +.workspacestodock-shortcuts-panel-places { +} + +/* shortcuts panel buttons */ +#workspacestodockDock .app-well-app { +} + +#workspacestodockDock .workspacestodock-shortcuts-panel > StButton { + background-size: cover; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton { + padding: 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 6px 3px 6px; +} + +#workspacestodockDock.left .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.right .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 3px 6px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton { + padding: 6px 3px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:first-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:first-child { + padding: 6px 3px 6px 6px; +} + +#workspacestodockDock.top .workspacestodock-shortcuts-panel > StButton:last-child, +#workspacestodockDock.bottom .workspacestodock-shortcuts-panel > StButton:last-child { + padding: 6px 6px 6px 3px; +} + +.workspacestodock-shortcut-button { +} + +.workspacestodock-shortcut-button-symbolic { +} + +/* shortcuts panel button icons */ +#workspacestodockDock .app-well-app > .overview-icon { +} + +.workspacestodock-shortcut-button-icon { + padding: 6px; +} + +.workspacestodock-shortcut-button-symbolic-icon { + padding: 8px; +} + +/* shortcuts panel items */ +#workspacestodockDock .popup-separator-menu-item { + margin: 0; +} + +.workspacestodock-shortcut-panel-separator { + -margin-horizontal: 0; +} + +.workspacestodock-shortcut-panel-filler { + -margin-horizontal: 0; + height: 0; + padding: 0; + border: none; +} + +/* shortcuts panel button window count indicators */ +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/right-running1.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/left-running1.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/top-running1.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-1 { + background-image: url("../../assets/dash/bottom-running1.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/right-running2.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/left-running2.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/top-running2.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-2 { + background-image: url("../../assets/dash/bottom-running2.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/right-running3.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/left-running3.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/top-running3.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-3 { + background-image: url("../../assets/dash/bottom-running3.svg"); +} + +#workspacestodockDock.right .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/right-running4.svg"); +} + +#workspacestodockDock.left .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/left-running4.svg"); +} + +#workspacestodockDock.top .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/top-running4.svg"); +} + +#workspacestodockDock.bottom .workspacestodock-shortcut-button-windowcount-image-4 { + background-image: url("../../assets/dash/bottom-running4.svg"); +} + +.workspacestodock-workspace-caption-container { + padding: 0; +} + +.workspacestodock-workspace-caption-background { + background-color: rgba(0, 0, 0, 0.6); + /* border-radius: 0 0 4px 4px; */ +} + +.workspacestodock-workspace-caption-background.caption-top { + /* border-radius: 4px 4px 0 0; */ +} + +.workspacestodock-workspace-caption { +} + +/* caption window apps (taskbar) */ +.workspacestodock-caption-windowapps { + padding: 0; +} + +.workspacestodock-caption-windowapps-menu { + -boxpointer-gap: 12px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item { + min-height: 24px; + padding-top: 4px; + padding-bottom: 4px; +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item:active { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .popup-menu-item.selected:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-item { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-item:active { + /*fallback class for GS34 since it can't override gnome shell class 'popup-menu-item' */ +} + +.workspacestodock-caption-windowapps-menu-icon { +} + +.workspacestodock-caption-windowapps-menu-label { + padding: 0 8px; +} + +.workspacestodock-caption-windowapps-menu .window-close { + /* GS36+ can override gnome shell class 'window-close' */ + border-radius: 100px; + -st-background-image-shadow: none; + background-image: url("../../assets/close.svg"); + background-size: 24px; + height: 24px; + width: 24px; +} + +.workspacestodock-caption-windowapps-menu .window-close:hover { + background-color: rgba(0, 0, 0, 0.12); +} + +.workspacestodock-caption-windowapps-menu .window-close:active { + background-color: rgba(0, 0, 0, 0.24); +} + +.workspacestodock-caption-windowapps-menu-close { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-menu-close:hover { + /*fallback class for GS34 since it can't override gnome shell class 'window-close' */ +} + +.workspacestodock-caption-windowapps-button { + padding: 0; +} + +.workspacestodock-caption-windowapps-button-icon { + padding: 2px; + background-color: rgba(0, 0, 0, 0.01); /* needs to draw box-shadow */ +} + +.workspacestodock-caption-windowapps-button:active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px rgba(255, 255, 255, 0.3); +} + +.workspacestodock-caption-windowapps-button-active > .workspacestodock-caption-windowapps-button-icon { + box-shadow: inset 0 -2px #FFFFFF; +} + +/* caption workspace number */ +.workspacestodock-caption-number { + margin: 1px; + padding: 0 10px; + border-radius: 0; + background-color: rgba(255, 255, 255, 0.3); + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace name */ +.workspacestodock-caption-name { + margin: 0 4px; + color: rgba(255, 255, 255, 0.6); + font-size: 9pt; + text-align: center; +} + +/* caption workspace windowcount */ +.workspacestodock-caption-windowcount { + /* min-width: 16px; */ + margin: 0px 4px; + padding: 0px 4px; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* caption workspace windowcount image*/ +.workspacestodock-caption-windowcount-image { + width: 20px; + height: 20px; + margin: 1px; + border-radius: 0; + background-color: #FF4081; + color: #FFFFFF; + font-size: 9pt; + font-weight: bold; + text-align: center; +} + +/* The classes below are used in conjunction with the above workspacestodock-caption-windowcount-image + * They provide background images that corespond with the window count */ +.workspacestodock-caption-windowcount-image-1 { +} + +.workspacestodock-caption-windowcount-image-2 { +} + +.workspacestodock-caption-windowcount-image-3 { +} + +.workspacestodock-caption-windowcount-image-4 { +} + +/* caption spacer-filler */ +.workspacestodock-caption-spacer { + width: 4px; +} + +/* The classes below are used in conjuction with the above classes + * They provide additional theming for the current workspace caption */ +.workspacestodock-workspace-caption-background-current { +} + +.workspacestodock-workspace-caption-background-current.caption-top { +} + +.workspacestodock-caption-number-current { + /* background-color: #42A5F5; */ +} + +.workspacestodock-caption-name-current { +} + +.workspacestodock-caption-windowcount-current { +} + +.workspacestodock-caption-windowcount-image-current { +} diff --git a/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-start.svg b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-start.svg new file mode 100644 index 0000000..d6b97e5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-start.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-theme.gresource.xml b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-theme.gresource.xml new file mode 100644 index 0000000..56a74c7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell-theme.gresource.xml @@ -0,0 +1,79 @@ + + + + assets/dash/bottom-running1.svg + assets/dash/bottom-running1-focused.svg + assets/dash/bottom-running2.svg + assets/dash/bottom-running2-focused.svg + assets/dash/bottom-running3.svg + assets/dash/bottom-running3-focused.svg + assets/dash/bottom-running4.svg + assets/dash/bottom-running4-focused.svg + assets/dash/left-running1.svg + assets/dash/left-running1-focused.svg + assets/dash/left-running2.svg + assets/dash/left-running2-focused.svg + assets/dash/left-running3.svg + assets/dash/left-running3-focused.svg + assets/dash/left-running4.svg + assets/dash/left-running4-focused.svg + assets/dash/right-running1.svg + assets/dash/right-running1-focused.svg + assets/dash/right-running2.svg + assets/dash/right-running2-focused.svg + assets/dash/right-running3.svg + assets/dash/right-running3-focused.svg + assets/dash/right-running4.svg + assets/dash/right-running4-focused.svg + assets/dash/top-running1.svg + assets/dash/top-running1-focused.svg + assets/dash/top-running2.svg + assets/dash/top-running2-focused.svg + assets/dash/top-running3.svg + assets/dash/top-running3-focused.svg + assets/dash/top-running4.svg + assets/dash/top-running4-focused.svg + assets/calendar-arrow-left.svg + assets/calendar-arrow-right.svg + assets/calendar-event.svg + assets/checkbox.svg + assets/checkbox-off.svg + assets/close.svg + assets/dash-placeholder.svg + assets/key-enter.svg + assets/key-hide.svg + assets/key-layout.svg + assets/key-shift.svg + assets/key-shift-uppercase.svg + assets/key-shift-latched-uppercase.svg + assets/menu-item-toggle-off.svg + assets/menu-item-toggle-on.svg + assets/no-events.svg + assets/no-notifications.svg + assets/toggle-off.svg + assets/toggle-on.svg + assets/window-close.svg + extensions/workspaces-to-dock/workspaces-to-dock.css + gnome-shell.css + gnome-shell-start.svg + icons/scalable/actions/color-pick.svg + icons/scalable/actions/pointer-double-click-symbolic.svg + icons/scalable/actions/pointer-drag-symbolic.svg + icons/scalable/actions/pointer-primary-click-symbolic.svg + icons/scalable/actions/pointer-secondary-click-symbolic.svg + icons/scalable/actions/preview-close-symbolic.svg + icons/scalable/status/carousel-arrow-back-24-symbolic.svg + icons/scalable/status/carousel-arrow-next-24-symbolic.svg + icons/scalable/status/eye-not-looking-symbolic.svg + icons/scalable/status/eye-open-negative-filled-symbolic.svg + icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg + icons/scalable/status/keyboard-enter-symbolic.svg + icons/scalable/status/keyboard-hide-symbolic.svg + icons/scalable/status/keyboard-layout-filled-symbolic.svg + icons/scalable/status/keyboard-shift-filled-symbolic.svg + icons/scalable/status/message-indicator-symbolic.svg + noise-texture.png + pad-osd.css + process-working.svg + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell.css b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell.css new file mode 100644 index 0000000..6bbc036 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/gnome-shell.css @@ -0,0 +1,3362 @@ +/* Copyright 2009, 2015 Red Hat, Inc. + * + * Portions adapted from Mx's data/style/default.css + * Copyright 2009 Intel Corporation + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU Lesser General Public License, + * version 2.1, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for + * more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. + */ +stage { + color: #c8dbec; + font-size: 1em; +} + +.shell-link { + transition-duration: 100ms; + border-radius: 3px; + color: #bf562f; +} +.shell-link:hover { + background-color: rgba(191, 86, 47, 0.12); + color: #bf562f; +} +.shell-link:active { + transition-duration: 200ms; + background-color: rgba(191, 86, 47, 0.16); + color: #bf562f; +} + +.lowres-icon { + icon-shadow: none; +} + +.icon-dropshadow { + icon-shadow: none; +} + +/* Entries */ +.lg-dialog StEntry, +StEntry { + min-height: 32px; + padding: 0 8px; + border-width: 0; + border-radius: 3px 3px 0 0; + color: #c8dbec; + selection-background-color: rgba(191, 86, 47, 0.32); + selected-color: #c8dbec; + font-size: 11.25pt; + font-weight: 400; + transition-duration: 100ms; + background-color: rgba(200, 219, 236, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.3); +} +StEntry:hover { + box-shadow: inset 0 -1px #c8dbec; +} +StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #bf562f; +} +StEntry:insensitive { + color: rgba(200, 219, 236, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.2); +} +StEntry StIcon.capslock-warning { + icon-size: 16px; + padding: 0 4px; + warning-color: #938d6d; +} +StEntry StIcon.peek-password { + icon-size: 16px; + padding: 0 4px; + color: rgba(200, 219, 236, 0.7); +} +StEntry StIcon.peek-password:hover { + color: #c8dbec; +} +StEntry StLabel.hint-text { + margin-left: 2px; + color: rgba(200, 219, 236, 0.7); +} + +/* Buttons */ +.lg-obj-inspector-button, .app-folder-dialog .folder-name-container .edit-folder-button, .modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button, +.button { + min-height: 32px; + min-width: 48px; + padding: 0 8px; + border: 0; + border-radius: 3px; + font-size: 10.5pt; + font-weight: 500; + color: #3d6d99; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.lg-obj-inspector-button:focus, .app-folder-dialog .folder-name-container .edit-folder-button:focus, .modal-dialog .modal-dialog-linked-button:focus, .hotplug-notification-item:focus, .notification-banner .notification-button:focus, +.button:focus { + color: #3d6d99; + background-color: rgba(36, 71, 102, 0.15); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.lg-obj-inspector-button:hover, .app-folder-dialog .folder-name-container .edit-folder-button:hover, .modal-dialog .modal-dialog-linked-button:hover, .hotplug-notification-item:hover, .notification-banner .notification-button:hover, +.button:hover { + color: #3d7cb2; + background-color: rgba(36, 71, 102, 0.35); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.lg-obj-inspector-button:active, .app-folder-dialog .folder-name-container .edit-folder-button:active, .modal-dialog .modal-dialog-linked-button:active, .hotplug-notification-item:active, .notification-banner .notification-button:active, +.button:active { + color: #e56637; + background-color: rgba(36, 71, 102, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.lg-obj-inspector-button:insensitive, .app-folder-dialog .folder-name-container .edit-folder-button:insensitive, .modal-dialog .modal-dialog-linked-button:insensitive, .hotplug-notification-item:insensitive, .notification-banner .notification-button:insensitive, +.button:insensitive { + color: rgba(200, 219, 236, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.modal-dialog .modal-dialog-linked-button, .hotplug-notification-item, .notification-banner .notification-button { + margin: 4px; + margin-right: 0; +} +.modal-dialog .modal-dialog-linked-button:first-child, .hotplug-notification-item:first-child, .notification-banner .notification-button:first-child, .modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + border-radius: 3px; +} +.modal-dialog .modal-dialog-linked-button:last-child, .hotplug-notification-item:last-child, .notification-banner .notification-button:last-child { + margin-right: 4px; + border-right-width: 0; +} + +/* Check Boxes */ +.check-box StBoxLayout { + spacing: 8px; +} +.check-box StBin { + transition-duration: 100ms; + width: 24px; + height: 24px; + padding: 4px; + border-radius: 16px; +} +.check-box StBin, .check-box:focus StBin { + background-image: url("assets/checkbox-off.svg"); +} +.check-box:focus StBin { + background-color: rgba(200, 219, 236, 0.08); +} +.check-box:hover StBin { + background-color: rgba(200, 219, 236, 0.08); +} +.check-box:active StBin { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +.check-box:checked StBin, .check-box:checked:focus StBin { + background-image: url("assets/checkbox.svg"); +} +.check-box:checked:focus StBin { + background-color: rgba(191, 86, 47, 0.12); +} +.check-box:checked:hover StBin { + background-color: rgba(191, 86, 47, 0.12); +} +.check-box:checked:active StBin { + background-color: rgba(191, 86, 47, 0.16); +} + +/* Switches */ +.toggle-switch { + color: inherit; + width: 40px; + height: 24px; + background-size: contain; + background-image: url("assets/toggle-off.svg"); +} +.toggle-switch:checked { + background-image: url("assets/toggle-on.svg"); +} + +/* Slider */ +.slider { + height: 20px; + -barlevel-height: 2px; + -barlevel-border-width: 0; + -barlevel-border-color: transparent; + -barlevel-background-color: rgba(200, 219, 236, 0.3); + -barlevel-active-border-color: transparent; + -barlevel-active-background-color: #bf562f; + -barlevel-overdrive-color: #b5735c; + -barlevel-overdrive-border-color: transparent; + -barlevel-overdrive-separator-width: 2px; + -slider-handle-radius: 6px; + -slider-handle-border-width: 0; + -slider-handle-border-color: transparent; +} +.slider, .slider:hover, .slider:active { + color: #bf562f; +} + +/* Scrollbars */ +StScrollView.vfade { + -st-vfade-offset: 32px; +} +StScrollView.hfade { + -st-hfade-offset: 32px; +} + +StScrollBar { + padding: 0; +} +StScrollView StScrollBar { + min-width: 16px; + min-height: 16px; +} +StScrollBar StBin#trough { + margin: 4px; + border-radius: 4px; + background-color: rgba(200, 219, 236, 0.2); +} +StScrollBar StButton#vhandle, +StScrollBar StButton#hhandle { + transition-duration: 100ms; + margin: 4px; + border-radius: 4px; + background-color: #bf562f; +} +StScrollBar StButton#vhandle:hover, +StScrollBar StButton#hhandle:hover { + background-color: #e56637; +} +StScrollBar StButton#vhandle:active, +StScrollBar StButton#hhandle:active { + background-color: #A64B29; +} + +/* Popovers/Menus */ +.popup-menu-boxpointer, .candidate-popup-boxpointer { + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 20px; + -arrow-box-shadow: none; + -arrow-background-color: transparent; +} + +.popup-menu { + min-width: 15em; + border-color: transparent; + color: inherit; +} +.popup-menu.panel-menu { + -boxpointer-gap: 0; + margin-bottom: 1.75em; +} + +.popup-menu-content, .candidate-popup-content { + margin: 8px; + padding: 8px 0; + border-radius: 3px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #112333; + color: #c8dbec; +} + +.popup-menu-item { + spacing: 8px; + padding: 0; + transition-duration: 100ms; +} +.popup-menu-item:ltr { + padding: 0.4em; + padding-right: 24px; + padding-left: 0; +} +.popup-menu-item:rtl { + padding: 0.4em; + padding-right: 0; + padding-left: 24px; +} +.popup-menu-item.selected { + background-color: #bf562f; + transition-duration: 0ms; +} +.popup-menu-item.selected, .popup-menu-item.selected:active { + color: #c8dbec; +} +.popup-menu-item:active { + background-color: #bf562f; + color: #c8dbec; + font-weight: bold; + transition-duration: 200ms; +} +.popup-menu-item:checked { + box-shadow: none; + background-color: rgba(191, 86, 47, 0.32); + font-weight: bold; +} +.popup-menu-item:checked.selected { + background-color: rgba(191, 86, 47, 0.4016); +} +.popup-menu-item:checked:active { + background-color: rgba(191, 86, 47, 0.4288); +} +.popup-menu-item:insensitive { + color: rgba(200, 219, 236, 0.5); +} +.popup-menu-item .toggle-switch { + width: 20px; + height: 20px; + background-image: url("assets/menu-item-toggle-off.svg"); +} +.popup-menu-item .toggle-switch:checked { + background-image: url("assets/menu-item-toggle-on.svg"); +} + +.popup-inactive-menu-item { + color: #c8dbec; +} +.popup-inactive-menu-item:insensitive { + color: rgba(200, 219, 236, 0.5); +} + +.popup-menu-arrow { + icon-size: 16px; +} +.popup-menu-content .popup-menu-arrow, .candidate-popup-content .popup-menu-arrow { + color: rgba(200, 219, 236, 0.7); +} + +.popup-menu-icon { + icon-size: 16px; + color: rgba(200, 219, 236, 0.7); +} + +.popup-sub-menu { + border-top: 0; + border-bottom: 0; + padding-bottom: 0; + box-shadow: none; + background-color: rgba(200, 219, 236, 0.04); +} + +.popup-menu-ornament { + text-align: right; + width: 16px; + height: 16px; +} +.popup-menu-ornament:ltr { + text-align: right; +} +.popup-menu-ornament:rtl { + text-align: left; +} + +.popup-separator-menu-item { + padding: 0; +} +.popup-separator-menu-item .popup-separator-menu-item-separator { + height: 1px; + margin: 8px 0; + background-color: rgba(200, 219, 236, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator { + margin: 8px 0; + background-color: rgba(200, 219, 236, 0.2); +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:ltr { + margin-right: 32px; +} +.popup-sub-menu .popup-separator-menu-item .popup-separator-menu-item-separator:rtl { + margin-left: 32px; +} + +.background-menu { + -boxpointer-gap: 4px; + -arrow-rise: 0; +} + +.aggregate-menu { + min-width: 21em; +} +.aggregate-menu .popup-menu-icon { + padding: 0; + margin: 0 4px; + -st-icon-style: symbolic; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:ltr { + padding-left: 16px; + margin-left: 16px; +} +.aggregate-menu .popup-sub-menu .popup-menu-item > :first-child:rtl { + padding-right: 16px; + margin-right: 16px; +} + +/* Date/Time Menu */ +#calendarArea { + padding: 8px 16px; +} + +.datemenu-calendar-column { + spacing: 8px; + padding: 0; + border: 0 solid rgba(200, 219, 236, 0.2); +} +.datemenu-calendar-column:ltr { + margin-right: 0; + border-left-width: 0; +} +.datemenu-calendar-column:rtl { + margin-left: 0; + border-right-width: 0; +} +.datemenu-calendar-column .datemenu-displays-section { + padding-bottom: 0; +} +.datemenu-calendar-column .datemenu-displays-box { + spacing: 8px; + margin: 0 8px; +} + +.events-section-title { + margin: 0; + border: 0; + border-radius: 3px; + min-height: 12px; + padding: 8px; + color: rgba(200, 219, 236, 0.7) !important; + font-weight: bold; +} +.events-section-title, .events-section-title:focus, .events-section-title:hover, .events-section-title:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-section-title:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.events-section-title:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.events-section-title:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} + +/* today button (the date) */ +.datemenu-today-button { + margin: 0; + border: 0; + border-radius: 3px; + margin: 0 8px; + min-height: 40px; + padding: 8px; +} +.datemenu-today-button, .datemenu-today-button:focus, .datemenu-today-button:hover, .datemenu-today-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.datemenu-today-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.datemenu-today-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.datemenu-today-button:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.datemenu-today-button .day-label { + font-weight: normal; + font-size: 1em; +} +.datemenu-today-button .date-label { + font-size: 18pt; + font-weight: 400; +} + +/* Calendar */ +.calendar { + margin: 0; + border: 0; + border-radius: 3px; + margin: 0 8px; + margin-bottom: 0; + padding: 0; +} +.calendar, .calendar:focus, .calendar:hover, .calendar:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.calendar:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-month-label { + transition-duration: 100ms; + min-height: 16px; + margin: 2px; + padding: 6px 8px; + border-radius: 3px; + color: inherit; + font-weight: bold; + text-align: center; +} +.calendar .calendar-month-label:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .calendar-change-month-back StIcon, +.calendar .calendar-change-month-forward StIcon { + icon-size: 16px; +} +.calendar .pager-button { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(200, 219, 236, 0.7); +} +.calendar .pager-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .pager-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .pager-button:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.calendar .calendar-day-base { + transition-duration: 100ms; + width: 28px; + height: 28px; + margin: 2px; + padding: 0; + border: 0; + border-radius: 14px; + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; + text-align: center; +} +.calendar .calendar-day-base:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .calendar-day-base:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .calendar-day-base:active { + transition-duration: 200ms; + border-color: transparent; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; +} +.calendar .calendar-day-base:selected { + border-color: transparent; + background-color: #bf562f !important; + color: #fff !important; + font-weight: 500 !important; +} +.calendar .calendar-day-base.calendar-day-heading { + width: 28px; + height: 21px; + margin-top: 2px; + padding: 7px 0 0; + border-radius: 14px; + background-color: transparent; + color: rgba(200, 219, 236, 0.5); + font-size: 9pt; + font-weight: 400; + font-weight: bold; + text-align: center; +} +.calendar .calendar-day-base.calendar-day-heading:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.calendar .calendar-day { + border-width: 0; +} +.calendar .calendar-day-top { + border-top-width: 0; +} +.calendar .calendar-day-left { + border-left-width: 0; +} +.calendar .calendar-nonwork-day { + color: inherit; +} +.calendar .calendar-today { + border: 0; + box-shadow: inset 0 0 0 1px rgba(200, 219, 236, 0.7); + background-color: rgba(17, 35, 51, 0.01); + color: inherit; + font-weight: normal; +} +.calendar .calendar-today:focus { + background-color: rgba(200, 219, 236, 0.08); + color: inherit; +} +.calendar .calendar-today:hover { + background-color: rgba(200, 219, 236, 0.08); + color: inherit; +} +.calendar .calendar-today:active, .calendar .calendar-today:active:hover, .calendar .calendar-today:active:focus { + background-color: rgba(200, 219, 236, 0.12); + color: inherit; +} +.calendar .calendar-today:selected { + box-shadow: inset 0 0 0 1px transparent; +} +.calendar .calendar-today:selected, .calendar .calendar-today:selected:hover, .calendar .calendar-today:selected:focus { + background-color: #bf562f; + color: #fff; +} +.calendar .calendar-day-with-events { + background-image: url("assets/calendar-event.svg"); +} +.calendar .calendar-day-with-events, .calendar .calendar-day-with-events.calendar-work-day { + color: inherit; + font-weight: normal; +} +.calendar .calendar-other-month-day { + color: rgba(200, 219, 236, 0.3) !important; +} +.calendar .calendar-week-number { + width: 28px; + height: 28px; + margin: 2px; + border-radius: 14px; + background-color: transparent; + color: rgba(200, 219, 236, 0.5); + font-weight: bold; + font-size: 1em; + text-align: center; +} + +/* Events */ +.events-button { + margin: 0; + border: 0; + border-radius: 3px; + min-height: 40px; + padding: 8px; +} +.events-button, .events-button:focus, .events-button:hover, .events-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.events-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.events-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.events-button:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.events-button .events-box { + spacing: 8px; +} +.events-button .events-list { + spacing: 8px; +} +.events-button .events-title { + color: rgba(200, 219, 236, 0.7); + font-weight: bold; + margin-bottom: 0; +} +.events-button .event-time { + color: rgba(200, 219, 236, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} + +/* World clocks */ +.world-clocks-button { + margin: 0; + border: 0; + border-radius: 3px; + min-height: 12px; + padding: 8px; +} +.world-clocks-button, .world-clocks-button:focus, .world-clocks-button:hover, .world-clocks-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.world-clocks-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.world-clocks-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.world-clocks-button:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.world-clocks-button .world-clocks-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.world-clocks-button .world-clocks-header { + color: rgba(200, 219, 236, 0.7); + font-weight: bold; +} +.world-clocks-button .world-clocks-city { + color: inherit; + font-weight: normal; + font-size: 1em; +} +.world-clocks-button .world-clocks-time { + color: rgba(200, 219, 236, 0.7); + font-weight: normal; + font-size: 1em; + font-feature-settings: "tnum"; + text-align: right; +} +.world-clocks-button .world-clocks-time:ltr { + text-align: right; +} +.world-clocks-button .world-clocks-time:rtl { + text-align: left; +} +.world-clocks-button .world-clocks-timezone { + color: rgba(200, 219, 236, 0.5); + font-size: 1em; + font-feature-settings: "tnum"; +} + +/* Weather */ +.weather-button { + margin: 0; + border: 0; + border-radius: 3px; + min-height: 40px; + padding: 8px; +} +.weather-button, .weather-button:focus, .weather-button:hover, .weather-button:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.weather-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.weather-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.weather-button:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.weather-button .weather-box { + spacing: 0.4em; +} +.weather-button .weather-header-box { + spacing: 8px; +} +.weather-button .weather-header { + color: rgba(200, 219, 236, 0.7); + font-weight: bold; +} +.weather-button .weather-header.location { + font-weight: normal; + font-size: 1em; +} +.weather-button .weather-grid { + spacing-rows: 0.4em; + spacing-columns: 0.8em; +} +.weather-button .weather-forecast-time { + padding-top: 0; + padding-bottom: 0; + color: rgba(200, 219, 236, 0.7); + font-size: 9pt; + font-weight: 400; + font-feature-settings: "tnum"; +} +.weather-button .weather-forecast-icon { + icon-size: 32px; +} +.weather-button .weather-forecast-temp { + font-weight: bold; +} + +/* Message List */ +.message-list { + width: 31.5em; + padding: 0; +} +.message-list .message-list-placeholder { + spacing: 12px; +} + +.message-list-sections { + spacing: 8px; + margin: 0 8px; +} + +.message-list-section, +.message-list-section-list { + spacing: 8px; +} + +.message-list-section-list:ltr { + padding-left: 0; +} +.message-list-section-list:rtl { + padding-right: 0; +} + +.message-list-controls { + margin: 8px 8px 0; + padding: 0; + spacing: 8px; +} + +.message { + margin: 0; + border: 0; + border-radius: 3px; + min-height: 56px; +} +.message, .message:focus, .message:hover, .message:active { + border-color: transparent; + box-shadow: none; + background-color: transparent; + color: inherit; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.message:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.message:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.message:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.message .message-icon-bin { + padding: 12px 0 12px 12px; +} +.message .message-icon-bin:rtl { + padding: 12px 12px 12px 0; +} +.message .message-icon-bin > StIcon { + -st-icon-style: requested; + icon-size: 16px; + color: inherit; +} +.message .message-icon-bin > StIcon, .message .message-icon-bin > StIcon:rtl { + margin: 0; +} +.message .message-icon-bin > .fallback-app-icon { + width: 16px; + height: 16px; +} +.message .message-content { + min-height: 40px; + padding: 8px; + spacing: 0; + color: inherit; + font-size: 1em; +} +.message .message-title { + min-height: 22px; + padding-top: 2px; + color: inherit; + font-weight: bold; + font-size: 1em; +} +.message .message-secondary-bin { + padding: 0 8px; +} +.message .message-secondary-bin > .event-time { + min-height: 22px; + padding-top: 2px; + color: rgba(200, 219, 236, 0.7); + font-size: 1em; + text-align: right; + padding-bottom: 0; +} +.message .message-secondary-bin > .event-time:ltr { + text-align: right; +} +.message .message-secondary-bin > .event-time:rtl { + text-align: left; +} +.message .message-secondary-bin > StIcon { + icon-size: 16px; +} +.message .message-close-button { + transition-duration: 100ms; + icon-size: 16px; + padding: 4px; + border-radius: 12px; +} +.message .message-close-button, .message .message-close-button:hover, .message .message-close-button:active { + color: rgba(200, 219, 236, 0.7); +} +.message .message-close-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.message .message-close-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.message .message-close-button:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +.message .message-body { + color: rgba(200, 219, 236, 0.7); +} + +.url-highlighter { + link-color: #bf562f; +} + +/* Media Controls */ +.message-media-control { + transition-duration: 100ms; + margin: 16px 0; + padding: 8px; + border-radius: 16px; +} +.message-media-control, .message-media-control:focus, .message-media-control:hover, .message-media-control:active { + color: rgba(200, 219, 236, 0.7); +} +.message-media-control:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.message-media-control:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.message-media-control:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.message-media-control:insensitive { + color: rgba(200, 219, 236, 0.3); +} +.message-media-control:last-child:ltr { + margin-right: 16px; + padding-right: 8px; + border-radius: 16px; +} +.message-media-control:last-child:rtl { + margin-left: 16px; + padding-left: 8px; + border-radius: 16px; +} + +.media-message-cover-icon { + icon-size: 32px !important; + margin: 4px 0 !important; + border-radius: 0; +} +.media-message-cover-icon.fallback { + icon-size: 16px !important; + padding: 8px; + border: 0; + border-radius: 3px; + background-color: rgba(200, 219, 236, 0.08); + color: rgba(200, 219, 236, 0.5) !important; +} + +.candidate-popup-content { + padding: 8px; + spacing: 0; +} + +.candidate-index { + padding: 0 4px 0 0; + color: rgba(200, 219, 236, 0.7); +} + +.candidate-box { + transition-duration: 100ms; + min-height: 28px; + padding: 0 8px; + border-radius: 3px; +} +.candidate-box:hover { + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.candidate-box:active { + background-color: rgba(200, 219, 236, 0.12); + transition-duration: 200ms; +} +.candidate-box:selected { + background-color: rgba(191, 86, 47, 0.32); + color: inherit; + transition-duration: 0ms; +} + +.candidate-page-button-box { + height: 28px; +} +.vertical .candidate-page-button-box { + padding-top: 0; +} +.horizontal .candidate-page-button-box { + padding-left: 0; +} + +.candidate-page-button { + min-width: 28px; + min-height: 28px; + padding: 0; +} + +.candidate-page-button-previous { + border-right-width: 0; + border-radius: 3px; +} + +.candidate-page-button-next { + border-radius: 3px; +} + +.candidate-page-button-icon { + icon-size: 16px; +} + +/* Notifications & Message Tray */ +.notification-banner { + min-height: 56px; + width: 34em; + margin: 5px; + border: 0; + border-radius: 3px; + font-size: 1em; +} +.notification-banner, .notification-banner:focus, .notification-banner:hover, .notification-banner:active { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #112333; + color: #c8dbec; +} +.notification-banner .notification-actions { + spacing: 0; + padding-top: 0; + border-top: 0; + background-color: transparent; + color: inherit; +} +.summary-source-counter { + -shell-counter-overlap-x: 3px; + -shell-counter-overlap-y: 3px; + height: 1.6em; + width: 1.6em; + border: 0; + border-radius: 0.8em; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #bf562f; + color: #fff; + font-weight: bold; + font-size: 1em; +} + +.chat-body { + spacing: 5px; +} + +.chat-response { + margin: 5px; +} + +.chat-log-message { + color: #c8dbec; +} + +.chat-new-group { + padding-top: 1em; +} + +.chat-received { + padding-left: 4px; +} +.chat-received:rtl { + padding-left: 0; + padding-right: 4px; +} + +.chat-sent { + padding-left: 18pt; + color: rgba(200, 219, 236, 0.7); +} +.chat-sent:rtl { + padding-left: 0; + padding-right: 18pt; +} + +.chat-meta-message { + padding-left: 4px; + color: rgba(200, 219, 236, 0.7); + font-size: 9pt; + font-weight: 400; +} +.chat-meta-message:rtl { + padding-left: 0; + padding-right: 4px; +} + +.hotplug-notification-item-icon { + icon-size: 24px; + padding: 0 4px; +} + +/* Modal Dialogs */ +.headline { + font-size: 15pt; + font-weight: 500; +} + +.modal-dialog { + border: 0; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} +.modal-dialog .modal-dialog-content-box { + max-width: 28em; + margin: 32px 40px; + spacing: 32px; +} +/* End Session Dialog */ +.end-session-dialog { + width: 30em; +} +.end-session-dialog .end-session-dialog-battery-warning, +.end-session-dialog .dialog-list-title { + color: #b5735c; +} + +/* Message Dialog */ +.message-dialog-content { + spacing: 18px; +} +.message-dialog-content .message-dialog-title { + font-size: 15pt; + font-weight: 500; + text-align: inherit; +} +.message-dialog-content .message-dialog-title.lightweight { + font-size: 15pt; + font-weight: 500; +} +.message-dialog-content .message-dialog-description { + color: rgba(200, 219, 236, 0.7); + text-align: inherit; +} + +/* Dialog List */ +.dialog-list { + spacing: 18px; +} +.dialog-list .dialog-list-title { + text-align: inherit; + font-weight: bold; +} +.dialog-list .dialog-list-scrollview { + max-height: 200px; +} +.dialog-list .dialog-list-box { + spacing: 1em; +} +.dialog-list .dialog-list-box .dialog-list-item { + spacing: 1em; +} +.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-title { + font-weight: bold; +} +.dialog-list .dialog-list-box .dialog-list-item .dialog-list-item-description { + color: rgba(200, 219, 236, 0.7); + font-size: 1em; +} + +/* Run Dialog */ +.run-dialog .modal-dialog-content-box { + margin-top: 24px; + margin-bottom: 16px; +} +.run-dialog .run-dialog-entry { + width: 20em; +} +.run-dialog .run-dialog-description { + text-align: inherit; + color: rgba(200, 219, 236, 0.7); + font-size: 1em; +} + +/* Password or Authentication Dialog */ +.prompt-dialog { + width: 28em; +} +.prompt-dialog .modal-dialog-content-box { + margin-bottom: 24px; +} + +.prompt-dialog-password-grid { + spacing-rows: 8px; + spacing-columns: 4px; +} +.prompt-dialog-password-grid .prompt-dialog-password-entry { + width: auto; +} +.prompt-dialog-password-grid .prompt-dialog-password-entry:ltr { + margin-left: 20px; +} +.prompt-dialog-password-grid .prompt-dialog-password-entry:rtl { + margin-right: 20px; +} + +.prompt-dialog-password-layout { + spacing: 8px; +} + +.prompt-dialog-password-entry { + width: 18em; +} + +.prompt-dialog-error-label, +.prompt-dialog-info-label, +.prompt-dialog-null-label { + font-size: 1em; + text-align: inherit; +} + +.prompt-dialog-error-label { + color: #b5735c; +} + +/* Polkit Dialog */ +.polkit-dialog-user-layout { + text-align: center; + spacing: 8px; + margin-bottom: 6px; +} +.polkit-dialog-user-layout .polkit-dialog-user-root-label { + color: #b5735c; +} + +/* Audio selection dialog */ +.audio-device-selection-dialog .modal-dialog-content-box { + margin-bottom: 28px; +} +.audio-device-selection-dialog .audio-selection-box { + spacing: 20px; +} + +.audio-selection-device { + transition-duration: 100ms; + border: 0; + border-radius: 3px; +} +.audio-selection-device:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.audio-selection-device:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.audio-selection-device:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; +} + +.audio-selection-device-box { + padding: 20px; + spacing: 20px; +} + +.audio-selection-device-icon { + icon-size: 64px; +} + +/* Welcome dialog */ +.welcome-dialog-image { + height: 300px; + width: 300px; + background-image: url("gnome-shell-start.svg"); + background-size: contain; +} + +/* Network Dialogs */ +.nm-dialog { + max-height: 34em; + min-height: 31em; + min-width: 32em; +} + +.nm-dialog-content { + spacing: 20px; + padding: 24px; +} + +.nm-dialog-airplane-box { + spacing: 12px; +} + +.nm-dialog-airplane-headline { + text-align: center; +} + +.nm-dialog-airplane-text { + color: rgba(200, 219, 236, 0.7); +} + +.nm-dialog-header { + font-size: 15pt; + font-weight: 500; +} + +.nm-dialog-subheader { + color: rgba(200, 219, 236, 0.7); +} + +.nm-dialog-header-icon { + icon-size: 32px; + color: rgba(200, 219, 236, 0.7); +} + +.nm-dialog-header-hbox { + spacing: 16px; +} + +.nm-dialog-scroll-view { + border: 0; + padding: 0; + background-color: transparent; +} + +.nm-dialog-item { + transition-duration: 100ms; + padding: 12px; + spacing: 20px; + border-bottom: 0; + border-radius: 3px; + font-size: 1em; +} +.nm-dialog-item:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.nm-dialog-item:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.nm-dialog-item:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +.nm-dialog-item:selected { + background-color: rgba(191, 86, 47, 0.32); + color: #c8dbec; +} + +.nm-dialog-icon { + icon-size: 16px; + color: rgba(200, 219, 236, 0.7); +} + +.nm-dialog-icons { + spacing: 0.5em; +} + +.no-networks-label { + color: rgba(200, 219, 236, 0.7); +} + +.no-networks-box { + spacing: 12px; +} + +/* OSD */ +.osd-window { + padding: 12px; + border: none; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; + text-align: center; + font-weight: bold; + spacing: 12px; + margin: 32px; + min-width: 64px; + min-height: 64px; +} +.osd-window StIcon { + icon-size: 96px; +} +.osd-window .osd-monitor-label { + font-size: 48px; + font-weight: 400; +} +.osd-window .level { + height: 8px; + -barlevel-height: 8px; + -barlevel-background-color: rgba(200, 219, 236, 0.2); + -barlevel-active-background-color: #bf562f; + -barlevel-overdrive-color: #b5735c; + -barlevel-overdrive-separator-width: 2px; +} + +.resize-popup { + padding: 12px; + border: none; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} + +/* Pad OSD */ +.pad-osd-window { + padding: 32px; + background-color: rgba(0, 0, 0, 0.6); +} +.pad-osd-window .pad-osd-title-box { + spacing: 12px; +} +.pad-osd-window .pad-osd-title-menu-box { + spacing: 6px; +} + +.combo-box-label { + width: 15em; +} + +/* App Switcher */ +.switcher-popup { + padding: 8px; + spacing: 16px; +} + +.switcher-list { + padding: 12px; + border: none; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} +.switcher-list .switcher-list-item-container { + spacing: 8px; +} +.switcher-list .item-box { + transition-duration: 100ms; + padding: 8px; + border: 0; + border-radius: 3px; +} +.switcher-list .item-box:outlined { + padding: 8px; + border: 0; + box-shadow: none; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; +} +.switcher-list .item-box:selected { + background-color: rgba(191, 86, 47, 0.32); + color: inherit; +} +.switcher-list .thumbnail-box { + padding: 2px; + spacing: 4px; +} +.switcher-list .thumbnail { + width: 256px; +} +.switcher-list .separator { + width: 1px; + background: rgba(200, 219, 236, 0.2); +} + +.switcher-arrow { + transition-duration: 100ms; + border-color: transparent; + color: rgba(200, 219, 236, 0.7); +} +.switcher-arrow:highlighted { + color: #c8dbec; +} + +.input-source-switcher-symbol { + width: 96px; + height: 96px; + font-size: 48px; + font-weight: 400; +} + +.cycler-highlight { + border: 4px solid #bf562f; +} + +/* Workspace Switcher */ +.workspace-switcher-group { + padding: 8px; +} + +.workspace-switcher-container { + padding: 12px; + border: none; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} + +.workspace-switcher { + background: transparent; + border: 0; + border-radius: 0; + padding: 0; + spacing: 8px; +} + +.ws-switcher-box { + height: 48px; + border: 0; + border-radius: 3px; + background-color: rgba(200, 219, 236, 0.2); + background-size: 0; +} + +.ws-switcher-active-up, +.ws-switcher-active-down, +.ws-switcher-active-left, +.ws-switcher-active-right { + height: 48px; + border: 0; + border-radius: 3px; + background-color: #bf562f; + background-size: 0; + color: inherit; +} + +/* OVERVIEW */ +.controls-manager, +.secondary-monitor-workspaces { + spacing: 16px; +} + +#overviewGroup { + background-color: #0B1721; + color: #c8dbec; +} +#overviewGroup StScrollBar StBin#trough { + background-color: rgba(200, 219, 236, 0.2); +} +#overviewGroup StScrollBar StButton#vhandle, +#overviewGroup StScrollBar StButton#hhandle { + background-color: rgba(200, 219, 236, 0.5); +} +#overviewGroup StScrollBar StButton#vhandle:hover, +#overviewGroup StScrollBar StButton#hhandle:hover { + background-color: rgba(200, 219, 236, 0.6); +} +#overviewGroup StScrollBar StButton#vhandle:active, +#overviewGroup StScrollBar StButton#hhandle:active { + background-color: rgba(200, 219, 236, 0.7); +} + +/* Top Bar */ +#panel { + transition-duration: 250ms; + height: 28px; + background-color: #000001; + font-weight: bold; + font-feature-settings: "tnum"; +} +#panel #panelLeft, +#panel #panelCenter { + spacing: 0; +} +#panel .panel-corner { + -panel-corner-radius: 0; + -panel-corner-background-color: transparent; + -panel-corner-border-width: 0; + -panel-corner-border-color: transparent; + -panel-corner-opacity: 0; + transition-duration: 250ms; +} +#panel .panel-button { + -natural-hpadding: 8px; + -minimum-hpadding: 4px; + transition-duration: 100ms; + border: 0; + border-radius: 0; + color: rgba(200, 219, 236, 0.7); + text-shadow: none; + font-weight: bold; +} +#panel .panel-button.clock-display .clock { + transition-duration: 100ms; + border: 0; + border-radius: 0; +} +#panel .panel-button .system-status-icon, +#panel .panel-button .app-menu-icon > StIcon, +#panel .panel-button .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:hover { + box-shadow: none; + color: #c8dbec; + text-shadow: none; +} +#panel .panel-button:hover.clock-display { + box-shadow: none; +} +#panel .panel-button:hover.clock-display .clock { + box-shadow: none; +} +#panel .panel-button:hover .system-status-icon, +#panel .panel-button:hover .app-menu-icon > StIcon, +#panel .panel-button:hover .popup-menu-arrow { + icon-shadow: none; +} +#panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { + box-shadow: inset 0 -2px #c8dbec; + background-color: rgba(0, 0, 1, 0.01); + color: #c8dbec; +} +#panel .panel-button:active.clock-display, #panel .panel-button:overview.clock-display, #panel .panel-button:focus.clock-display, #panel .panel-button:checked.clock-display { + box-shadow: none; + background-color: transparent; +} +#panel .panel-button:active.clock-display .clock, #panel .panel-button:overview.clock-display .clock, #panel .panel-button:focus.clock-display .clock, #panel .panel-button:checked.clock-display .clock { + box-shadow: inset 0 -2px #c8dbec; + background-color: rgba(0, 0, 1, 0.01); +} +#panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { + icon-shadow: none; +} +#panel .panel-button .system-status-icon { + icon-size: 16px; + padding: 0 4px; + margin: 0 4px; +} +#panel .panel-button .panel-status-indicators-box .system-status-icon, +#panel .panel-button .panel-status-menu-box .system-status-icon { + margin: 0; +} +#panel .panel-button .app-menu-icon { + -st-icon-style: symbolic; +} +#panel .panel-button#panelActivities { + -natural-hpadding: 8px; +} +#panel .panel-status-indicators-box, +#panel .panel-status-menu-box { + spacing: 2px; +} +#panel .power-status.panel-status-indicators-box { + spacing: 0; +} +#panel .screencast-indicator, +#panel .remote-access-indicator { + color: #938d6d; +} +#panel.unlock-screen, #panel.login-screen, #panel:overview { + background-color: transparent; +} +#panel.unlock-screen .panel-corner, #panel.login-screen .panel-corner, #panel:overview .panel-corner { + -panel-corner-opacity: 0; +} +#panel.unlock-screen .panel-button, #panel.login-screen .panel-button, panel:overview .panel-button { + color: rgba(255, 255, 255, 0.7); +} +#panel.unlock-screen .panel-button:hover, #panel.login-screen .panel-button:hover, #panel:overview .panel-button:hover, #panel.unlock-screen .panel-button:active, #panel.login-screen .panel-button:active, #panel:overview .panel-button:active, #panel.unlock-screen .panel-button:overview, #panel.login-screen .panel-button:overview, #panel:overview .panel-button:overview, #panel.unlock-screen .panel-button:focus, #panel.login-screen .panel-button:focus, #panel:overview .panel-button:focus, #panel.unlock-screen .panel-button:checked, #panel.login-screen .panel-button:checked, #panel:overview .panel-button:checked { + color: #fff; +} + +#appMenu { + spacing: 4px; +} +#appMenu .label-shadow { + color: transparent; +} +#appMenu .panel-status-menu-box { + padding: 0; + spacing: 4px; +} + +.clock-display-box { + spacing: 0; +} +.clock-display-box .clock { + padding-left: 8px; + padding-right: 8px; +} + +/* Activities Ripple */ +.ripple-box { + width: 48px; + height: 48px; + border-radius: 0 0 48px 0; + box-shadow: none; + background-color: rgba(255, 255, 255, 0.3); + background-image: none; + background-size: auto; +} +.ripple-box:rtl { + border-radius: 0 0 0 48px; + background-image: none; +} + +/* Window Picker */ +.window-picker { + spacing: 8px; +} + +.window-caption { + padding: 4px 8px; + border-radius: 3px; + background-color: rgba(0, 0, 0, 0.6); + color: #fff; +} + +.window-close { + transition-duration: 100ms; + height: 32px; + width: 32px; + padding: 0; + border: 0; + border-radius: 16px; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + background-color: #b5735c; + color: rgba(0, 0, 0, 0.87); + background-image: url("assets/window-close.svg"); + background-size: 24px; +} +.window-close:hover { + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + border-color: transparent; + background-color: #a76a55; + color: rgba(0, 0, 0, 0.87); +} +.window-close:active { + transition-duration: 200ms; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + border-color: transparent; + background-color: #9f6551; + color: rgba(0, 0, 0, 0.87); +} +.window-close StIcon { + icon-size: 24px; + color: transparent; +} + +.workspace-background { + border-radius: 30px; + background-color: black; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} + +.search-entry { + width: 304px; + padding: 0 8px; + border-radius: 3px 3px 0 0; + color: rgba(200, 219, 236, 0.5); + selection-background-color: rgba(200, 219, 236, 0.3); + selected-color: #c8dbec; + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px #e56637; + margin-top: 16px; + margin-bottom: 8px; +} +.search-entry:hover { + box-shadow: inset 0 -1px #5c7c99; + color: rgba(200, 219, 236, 0.5); +} +.search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #3d7cb2; + padding: 0 8px; + border: 0; + color: #e56637; +} +.search-entry StLabel.hint-text { + color: rgba(200, 219, 236, 0.7); +} +.search-entry .search-entry-icon { + icon-size: 16px; + padding: 0 4px; + color: rgba(200, 219, 236, 0.7); +} +.search-entry:hover .search-entry-icon, +.search-entry:focus .search-entry-icon { + color: #e56637; +} + +/* App Grid */ +.icon-grid { + row-spacing: 12px; + column-spacing: 12px; + max-row-spacing: 72px; + max-column-spacing: 72px; + page-padding-top: 24px; + page-padding-bottom: 24px; + page-padding-left: 12px; + page-padding-right: 12px; +} + +/* App Icons */ +.app-well-app .overview-icon, +.grid-search-result .overview-icon { + padding: 6px; + border: 0; + border-radius: 3px; + background-color: transparent; + color: #3d7cb2; + text-align: center; + transition-duration: 100ms; +} +.app-well-app:focus .overview-icon, +.grid-search-result:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.app-well-app:drop .overview-icon, .app-well-app:hover .overview-icon, .app-well-app:selected .overview-icon, +.grid-search-result:drop .overview-icon, +.grid-search-result:hover .overview-icon, +.grid-search-result:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: #e56637; + font-weight: bold; + transition-duration: 0ms; +} +.app-well-app:active .overview-icon, .app-well-app:checked .overview-icon, +.grid-search-result:active .overview-icon, +.grid-search-result:checked .overview-icon { + box-shadow: none; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; + transition-duration: 200ms; +} +.app-well-app .overview-icon.overview-icon-with-label, +.grid-search-result .overview-icon.overview-icon-with-label { + padding: 8px; + spacing: 0; +} +.app-well-app .overview-icon.overview-icon-with-label > StBoxLayout, +.grid-search-result .overview-icon.overview-icon-with-label > StBoxLayout { + spacing: 4px; +} + +/* App Folders */ +.app-well-app.app-folder { + border-radius: 3px; + background-color: transparent; +} + +.app-folder-dialog { + border: 0; + border-radius: 3px; + background-color: #112333; + color: #c8dbec; + padding: 12px 0; +} +.app-folder-dialog .folder-name-container { + padding: 24px 36px 0; + spacing: 12px; +} +.app-folder-dialog .folder-name-container .folder-name-label, +.app-folder-dialog .folder-name-container .folder-name-entry { + font-size: 15pt; + font-weight: 500; +} +.app-folder-dialog .folder-name-container .folder-name-entry { + width: 300px; +} +.app-folder-dialog .folder-name-container .folder-name-label { + padding: 0 8px; + color: inherit; +} +.app-folder-dialog .folder-name-container .edit-folder-button { + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; +} +.app-folder-dialog .folder-name-container .edit-folder-button > StIcon { + icon-size: 16px; +} +.app-folder-dialog .icon-grid { + row-spacing: 16px; + column-spacing: 32px; + page-padding-top: 0; + page-padding-bottom: 0; + page-padding-left: 0; + page-padding-right: 0; +} +.app-folder-dialog .page-indicators { + margin-bottom: 16px; +} +.app-folder-dialog .app-well-app:focus .overview-icon { + background-color: rgba(200, 219, 236, 0.08); +} +.app-folder-dialog .app-well-app:drop .overview-icon, .app-folder-dialog .app-well-app:hover .overview-icon, .app-folder-dialog .app-well-app:selected .overview-icon { + background-color: rgba(200, 219, 236, 0.08); +} +.app-folder-dialog .app-well-app:active .overview-icon, .app-folder-dialog .app-well-app:checked .overview-icon { + background-color: rgba(200, 219, 236, 0.12); +} + +.app-folder-dialog-container { + padding: 12px; + width: 620px; + height: 620px; +} + +.app-well-app.app-folder > .overview-icon > StBoxLayout > StBin > StWidget { + border-radius: 3px; + background-color: rgba(200, 219, 236, 0.08); +} + +.app-well-app-running-dot { + height: 2px; + width: 32px; + margin-bottom: 0; + border-radius: 0; + background-color: #e56637; +} + +.rename-folder-popup .rename-folder-popup-item { + spacing: 6px; +} +.rename-folder-popup .rename-folder-popup-item:ltr, .rename-folder-popup .rename-folder-popup-item:rtl { + padding: 0 12px; +} + +.app-menu, +.app-well-menu { + max-width: 27.25em; +} + +.page-indicator { + padding: 8px 12px 0; +} +.page-indicator .page-indicator-icon { + width: 12px; + height: 12px; + border-radius: 12px; + background-color: #e56637; +} + +.apps-scroll-view { + padding: 0; +} + +.system-action-icon { + icon-size: 48px; + border-radius: 9999px; + box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2); + background-color: #212121; + color: rgba(255, 255, 255, 0.87); +} + +.page-navigation-hint { + width: 300px; +} +.page-navigation-hint.dnd { + background: rgba(200, 219, 236, 0.08); +} +.page-navigation-hint.next:ltr, .page-navigation-hint.previous:rtl { + background-gradient-start: rgba(200, 219, 236, 0.08); + background-gradient-end: rgba(200, 219, 236, 0.08); + background-gradient-direction: horizontal; + border-radius: 3px 0 0 3px; +} +.page-navigation-hint.previous:ltr, .page-navigation-hint.next:rtl { + background-gradient-start: rgba(200, 219, 236, 0.08); + background-gradient-end: rgba(200, 219, 236, 0.08); + background-gradient-direction: horizontal; + border-radius: 0 3px 3px 0; +} + +.page-navigation-arrow { + width: 24px; + height: 24px; + margin: 6px; +} + +/* Search */ +#searchResultsContent { + max-width: 1024px; +} + +#searchResultsContent { + padding-left: 16px; + padding-right: 16px; + spacing: 16px; +} + +.search-section { + spacing: 16px; +} +.search-section .search-section-separator { + height: 1px; + background-color: rgba(200, 219, 236, 0.2); +} +.search-section:last-child .search-section-separator { + height: 0; + background-color: transparent; +} + +.search-section-content { + spacing: 32px; + padding: 0; + border: 0; + border-radius: 0; + box-shadow: none; + background-color: transparent; + color: #e56637; + text-shadow: none; +} + +.search-statustext { + font-size: 48px; + font-weight: 400; + color: rgba(200, 219, 236, 0.5); +} + +.grid-search-results { + spacing: 32px; +} + +.search-provider-icon { + padding: 6px; + border: 0; + border-radius: 3px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.search-provider-icon:focus { + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:hover, .search-provider-icon:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.search-provider-icon:active, .search-provider-icon:checked { + box-shadow: none; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; + transition-duration: 200ms; +} +.search-provider-icon .list-search-provider-content { + spacing: 20px; +} +.search-provider-icon .list-search-provider-content .list-search-provider-details { + width: 150px; + margin-top: 0; + color: #ff0000; +} + +.list-search-results { + spacing: 4px; +} + +.list-search-result { + padding: 6px; + border: 0; + border-radius: 3px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.list-search-result:focus { + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:hover, .list-search-result:selected { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.list-search-result:active, .list-search-result:checked { + box-shadow: none; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; + transition-duration: 200ms; +} +.list-search-result .list-search-result-content { + spacing: 30px; +} +.list-search-result .list-search-result-title { + spacing: 12px; + color: inherit; + font-size: 11.25pt; + font-weight: 400; +} +.list-search-result .list-search-result-description { + color: rgba(200, 219, 236, 0.7); +} + +/* Dash */ +#dash { + font-size: 1em; + margin-top: 0; + padding: 12px 12px 0; +} +#dash .overview-icon { + padding: 6px; +} +#dash .placeholder { + height: 24px; + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; +} +#dash .empty-dash-drop-target { + width: 24px; + height: 24px; +} + +.dash-background { + margin-bottom: 0; + padding: 6px 3px; + border-radius: 3px 3px 0 0; + background-color: rgba(200, 219, 236, 0.08); +} + +.dash-item-container .app-well-app, +.show-apps { + padding: 6px 3px; +} + +.dash-separator { + width: 1px; + margin: 6px 3px; + background-color: rgba(200, 219, 236, 0.3); +} + +.dash-label { + padding: 7px 8px; + border: 0; + border-radius: 3px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #112333; + color: #c8dbec; + text-align: center; + -y-offset: 8px; +} + +.show-apps { + color: rgba(200, 219, 236, 0.7); +} +.show-apps .overview-icon { + padding: 6px; + border: 0; + border-radius: 3px; + background-color: transparent; + color: inherit; + text-align: center; + transition-duration: 100ms; +} +.show-apps:focus .overview-icon { + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:drop .overview-icon, .show-apps:hover .overview-icon, .show-apps:selected .overview-icon { + border: 0; + border-image: none; + background-image: none; + background-color: rgba(200, 219, 236, 0.08); + color: inherit; + transition-duration: 0ms; +} +.show-apps:active .overview-icon, .show-apps:checked .overview-icon { + box-shadow: none; + background-color: rgba(200, 219, 236, 0.12); + color: inherit; + transition-duration: 200ms; +} +.show-apps:checked { + color: #c8dbec; +} + +/* Workspace pager */ +.workspace-thumbnails { + padding: 0; + spacing: 12px; +} +.workspace-thumbnails .workspace-thumbnail { + transition-duration: 250ms; + border: 0; + background-color: rgba(200, 219, 236, 0.08); + color: #c8dbec; + border-radius: 3px; +} +.workspace-thumbnails .placeholder { + background-image: url("assets/dash-placeholder.svg"); + background-size: contain; + width: 24px; +} + +.workspace-thumbnail-indicator { + border: 0 solid #c8dbec; + border-radius: 0; + padding: 6px; + border-bottom-width: 2px; +} + +.select-area-rubberband { + border: 1px solid #bf562f; + background-color: rgba(191, 86, 47, 0.3); +} + +.user-icon { + border: 0; + border-radius: 9999px; + background-size: contain; + color: inherit; +} +.user-icon:hover { + border-color: transparent; + color: inherit; +} + +.user-icon { + icon-size: 64px; +} +.user-icon StIcon { + background-color: rgba(200, 219, 236, 0.08); + border-radius: 9999px; +} +.user-icon StIcon { + width: 32px; + height: 32px; + padding: 16px; +} +.user-icon.user-avatar { + border: 0; +} + +.user-widget.vertical .user-icon { + icon-size: 128px; +} +.user-widget.vertical .user-icon StIcon { + width: 64px; + height: 64px; + padding: 32px; +} + +.lightbox { + background-color: black; +} + +.flashspot { + background-color: white; +} + +.hidden { + color: transparent; +} + +.caps-lock-warning-label { + text-align: center; + padding-bottom: 8px; + font-size: 1em; + color: #938d6d; +} + +/* Workspace animation */ +.workspace-animation { + background-color: #000001; +} + +.ripple-pointer-location { + width: 50px; + height: 50px; + border-radius: 25px; + box-shadow: none; + background-color: rgba(191, 86, 47, 0.32); +} + +.pie-timer { + width: 60px; + height: 60px; + -pie-border-width: 0; + -pie-border-color: transparent; + -pie-background-color: rgba(191, 86, 47, 0.32); +} + +.magnifier-zoom-region { + border: 2px solid #bf562f; +} +.magnifier-zoom-region.full-screen { + border-width: 0; +} + +/* Tiled window previews */ +.tile-preview { + border: 1px solid #bf562f; + background-color: rgba(191, 86, 47, 0.3); +} + +.tile-preview-left.on-primary { + border-radius: 0; +} + +.tile-preview-right.on-primary { + border-radius: 0; +} + +.tile-preview-left.tile-preview-right.on-primary { + border-radius: 0; +} + +/* On-screen Keyboard */ +#keyboard { + background-color: rgba(0, 0, 0, 0.3); + box-shadow: none; +} +#keyboard .page-indicator { + padding: 4px; +} +#keyboard .page-indicator .page-indicator-icon { + width: 8px; + height: 8px; +} + +.key-container { + padding: 4px; + spacing: 4px; +} + +.keyboard-key { + min-height: 1.2em; + min-width: 1.2em; + font-size: 2em; + font-weight: 500; + border: 0; + border-width: 0; + border-style: none; + border-radius: 3px; +} +.keyboard-key, .keyboard-key.default-key { + color: #c8dbec; + background-color: #112333; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key:focus, .keyboard-key.default-key:focus { + color: #c8dbec; + background-color: #203242; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.keyboard-key:hover, .keyboard-key:checked, .keyboard-key.default-key:hover, .keyboard-key.default-key:checked { + color: #c8dbec; + background-color: #203242; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key:active, .keyboard-key.default-key:active { + color: #c8dbec; + background-color: #273949; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key:grayed { + border-color: transparent; + background-color: rgba(0, 0, 0, 0.3); + color: #fff; +} +.keyboard-key.enter-key { + color: #fff; + background-color: #bf562f; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-key.enter-key:hover, .keyboard-key.enter-key:checked { + color: #fff; + background-color: #c76a48; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.keyboard-key.enter-key:active { + color: #fff; + background-color: #c97150; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.keyboard-key.shift-key-uppercase { + color: #bf562f; +} +.keyboard-key StIcon { + icon-size: 32px; +} + +.keyboard-subkeys { + -boxpointer-gap: 5px; + -arrow-base: 0; + -arrow-rise: 0; + -arrow-border-width: 0; + -arrow-border-color: transparent; + -arrow-border-radius: 0; + -arrow-background-color: transparent; + padding: 5px; + border-radius: 3px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + background-color: #112333; + color: #c8dbec; +} +.keyboard-subkeys .keyboard-key { + border-radius: 3px; + color: #bf562f; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.keyboard-subkeys .keyboard-key:focus { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.12); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.keyboard-subkeys .keyboard-key:hover, .keyboard-subkeys .keyboard-key:checked { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.keyboard-subkeys .keyboard-key:active { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.16); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-page .keyboard-key { + border: 0; + color: rgba(255, 255, 255, 0.7); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.emoji-page .keyboard-key:focus { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.emoji-page .keyboard-key:hover { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.emoji-page .keyboard-key:active { + color: rgba(255, 255, 255, 0.7); + background-color: rgba(255, 255, 255, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} + +.emoji-panel .keyboard-key:latched { + border-color: transparent; + background-color: #bf562f; + color: #fff; +} + +.word-suggestions { + font-size: 11.25pt; + font-weight: 400; + spacing: 12px; + min-height: 20pt; +} + +/* Looking Glass */ +#LookingGlassDialog { + spacing: 0; + padding: 0; + border: 0; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} +#LookingGlassDialog > #Toolbar { + padding: 0 8px; + border: 0; + border-radius: 0; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.2); + background-color: rgba(17, 35, 51, 0.01); +} +#LookingGlassDialog .labels { + spacing: 0; +} +#LookingGlassDialog .notebook-tab { + -natural-hpadding: 12px; + -minimum-hpadding: 6px; + transition-duration: 100ms; + min-height: 32px; + padding-left: 32px; + padding-right: 32px; + border: 0; + color: rgba(200, 219, 236, 0.7); + font-weight: bold; +} +#LookingGlassDialog .notebook-tab:hover { + background-color: rgba(200, 219, 236, 0.08); + color: rgba(200, 219, 236, 0.7); + text-shadow: none; +} +#LookingGlassDialog .notebook-tab:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +#LookingGlassDialog .notebook-tab:selected { + border: 0; + box-shadow: inset 0 -2px #bf562f; + background-color: rgba(17, 35, 51, 0.01); + color: #c8dbec; + text-shadow: none; +} +#LookingGlassDialog StBoxLayout#EvalBox { + padding: 8px; + spacing: 4px; +} +#LookingGlassDialog StBoxLayout#ResultsArea { + spacing: 4px; +} + +.lg-dialog .shell-link, .lg-dialog .shell-link:hover, .lg-dialog .shell-link:active { + color: #bf562f; +} +.lg-dialog .actor-link, .lg-dialog .actor-link:hover, .lg-dialog .actor-link:active { + color: inherit; +} + +.lg-completions-text { + font-size: 1em; + font-style: italic; +} + +.lg-obj-inspector-title { + spacing: 4px; +} + +.lg-obj-inspector-button, .lg-obj-inspector-button:hover { + border: 0; +} + +#Windows { + padding: 8px; +} + +#lookingGlassExtensions { + padding: 8px; +} + +.lg-extensions-list { + padding: 0; + spacing: 6px; +} + +.lg-extension { + padding: 4px; + border: 0; + border-radius: 0; + background-color: transparent; +} + +.lg-extension-name { + font-size: 15pt; + font-weight: 500; +} + +.lg-extension-meta { + spacing: 6px; +} + +#LookingGlassPropertyInspector { + padding: 6px; + border: 0; + border-radius: 3px; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + background-color: #112333; + color: #c8dbec; +} + +/* Login Dialog */ +.login-dialog-banner-view { + padding-top: 24px; + max-width: 23em; +} + +.login-dialog, +.unlock-dialog { + border: 0; + background-color: transparent; +} +.login-dialog StEntry, +.unlock-dialog StEntry { + transition-duration: 100ms; + background-color: rgba(255, 255, 255, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.3); + color: #c8dbec; + selection-background-color: rgba(200, 219, 236, 0.3); + selected-color: #c8dbec; +} +.login-dialog StEntry:focus, +.unlock-dialog StEntry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #c8dbec; +} +.login-dialog StEntry:insensitive, +.unlock-dialog StEntry:insensitive { + color: rgba(200, 219, 236, 0.5); + border-color: transparent; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.2); + color: rgba(200, 219, 236, 0.5); +} +.login-dialog StEntry StLabel.hint-text, +.unlock-dialog StEntry StLabel.hint-text { + color: rgba(200, 219, 236, 0.7); +} +.login-dialog StEntry StIcon.peek-password, +.unlock-dialog StEntry StIcon.peek-password { + color: rgba(200, 219, 236, 0.7); +} +.login-dialog StEntry StIcon.peek-password:hover, +.unlock-dialog StEntry StIcon.peek-password:hover { + color: #c8dbec; +} +.login-dialog .modal-dialog-button-box, +.unlock-dialog .modal-dialog-button-box { + spacing: 3px; +} +.login-dialog .modal-dialog-button, +.unlock-dialog .modal-dialog-button { + color: #bf562f; + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:focus, +.unlock-dialog .modal-dialog-button:focus { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.12); + text-shadow: none; + icon-shadow: none; + box-shadow: 0 0 transparent; +} +.login-dialog .modal-dialog-button:hover, +.unlock-dialog .modal-dialog-button:hover { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.12); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:active, +.unlock-dialog .modal-dialog-button:active { + color: #bf562f; + background-color: rgba(191, 86, 47, 0.16); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:insensitive, +.unlock-dialog .modal-dialog-button:insensitive { + color: rgba(200, 219, 236, 0.3); + background-color: transparent; + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default, +.unlock-dialog .modal-dialog-button:default { + min-width: 32px; + padding: 0 16px; + color: #fff; + background-color: #bf562f; + border-color: transparent; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); + text-shadow: none; + icon-shadow: none; + transition-duration: 100ms; +} +.login-dialog .modal-dialog-button:default:focus, +.unlock-dialog .modal-dialog-button:default:focus { + color: #fff; + background-color: #c76a48; + text-shadow: none; + icon-shadow: none; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); +} +.login-dialog .modal-dialog-button:default:hover, +.unlock-dialog .modal-dialog-button:default:hover { + color: #fff; + background-color: #c76a48; + border-color: transparent; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.44); + text-shadow: none; + icon-shadow: none; +} +.login-dialog .modal-dialog-button:default:active, +.unlock-dialog .modal-dialog-button:default:active { + color: #fff; + background-color: #c97150; + border-color: transparent; + box-shadow: 0 5px 16px rgba(0, 0, 0, 0.5); + text-shadow: none; + icon-shadow: none; + transition-duration: 200ms; +} +.login-dialog .modal-dialog-button:default:insensitive, +.unlock-dialog .modal-dialog-button:default:insensitive { + color: rgba(200, 219, 236, 0.5); + background-color: rgba(200, 219, 236, 0.08); + border-color: transparent; + box-shadow: 0 0 transparent; + text-shadow: none; + icon-shadow: none; +} + +.login-dialog-logo-bin { + padding: 24px 0; +} + +.login-dialog-banner { + color: rgba(200, 219, 236, 0.7); +} + +.login-dialog-button-box { + spacing: 5px; + width: 23em; +} + +.login-dialog-message { + text-align: center; +} + +.caps-lock-warning-label, +.login-dialog-message-warning { + color: #b5735c; +} + +.login-dialog-message-hint { + color: rgba(200, 219, 236, 0.7); +} + +.login-dialog-user-selection-box { + padding: 100px 0; +} + +.login-dialog-not-listed-button { + transition-duration: 100ms; + min-height: 32px; + padding: 0 8px; + margin-top: 1em; + border-radius: 3px; + color: rgba(200, 219, 236, 0.7); + font-size: 10.5pt; + font-weight: 500; +} +.login-dialog-not-listed-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.login-dialog-not-listed-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.login-dialog-not-listed-button:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} + +.login-dialog-user-list-view { + -st-vfade-offset: 1em; +} + +.login-dialog-user-list { + spacing: 12px; + width: 23em; +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:selected { + background-color: rgba(200, 219, 236, 0.08); +} +.login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { + border-right: 2px solid #c8dbec; +} + +.login-dialog-user-list-item { + transition-duration: 100ms; + padding: 6px; + border-radius: 3px; + color: inherit; +} +.login-dialog-user-list-item:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.login-dialog-user-list-item:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.login-dialog-user-list-item:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +.login-dialog-user-list-item:ltr .user-widget { + padding-right: 1em; +} +.login-dialog-user-list-item:rtl .user-widget { + padding-left: 1em; +} +.login-dialog-user-list-item .login-dialog-timed-login-indicator { + height: 2px; + margin-top: 6px; + background-color: #c8dbec; +} + +.login-dialog .user-icon StIcon { + background-color: rgba(200, 219, 236, 0.08); +} + +.user-widget-label { + color: inherit; +} + +.user-widget.horizontal .user-widget-label { + padding-left: 16px; + font-size: 15pt; + font-weight: 500; + text-align: left; +} +.user-widget.horizontal .user-widget-label:ltr { + padding-left: 14px; + text-align: left; +} +.user-widget.horizontal .user-widget-label:rtl { + padding-right: 14px; + text-align: right; +} + +.user-widget.vertical .user-widget-label { + padding-top: 16px; + font-size: 18pt; + font-weight: 400; + text-align: center; +} + +.login-dialog-prompt-layout { + width: 23em; + padding-top: 24px; + padding-bottom: 12px; + spacing: 8px; +} + +.login-dialog-prompt-label { + color: rgba(200, 219, 236, 0.7); + font-size: 1em; + padding-top: 1em; +} + +.cancel-button, +.switch-user-button, +.login-dialog-session-list-button { + transition-duration: 100ms; + width: 32px; + height: 32px; + min-width: 0; + min-height: 0; + padding: 0; + border-radius: 16px; + color: rgba(200, 219, 236, 0.7); +} +.cancel-button:focus, +.switch-user-button:focus, +.login-dialog-session-list-button:focus { + background-color: rgba(200, 219, 236, 0.08); +} +.cancel-button:hover, +.switch-user-button:hover, +.login-dialog-session-list-button:hover { + background-color: rgba(200, 219, 236, 0.08); +} +.cancel-button:active, +.switch-user-button:active, +.login-dialog-session-list-button:active { + transition-duration: 200ms; + background-color: rgba(200, 219, 236, 0.12); +} +.cancel-button StIcon, +.switch-user-button StIcon, +.login-dialog-session-list-button StIcon { + icon-size: 16px; +} + +/* Screen Shield */ +.unlock-dialog-clock { + padding-bottom: 2.5em; + spacing: 24px; + color: #fff; + font-weight: normal; + text-align: center; +} + +.unlock-dialog-clock-time { + padding-top: 42px; + font-size: 96px; + font-weight: 300; + font-feature-settings: "tnum"; +} + +.unlock-dialog-clock-date { + font-size: 34px; + font-weight: 400; +} + +.unlock-dialog-clock-hint { + padding-top: 48px; + color: rgba(255, 255, 255, 0.7); + font-weight: normal; +} + +.unlock-dialog-notifications-container { + width: 23em; + margin: 12px 0; + spacing: 6px; + background-color: transparent; +} +.unlock-dialog-notifications-container .summary-notification-stack-scrollview { + padding-top: 0; + padding-bottom: 0; +} +.unlock-dialog-notifications-container .notification, +.unlock-dialog-notifications-container .unlock-dialog-notification-source { + padding: 8px; + border: 0; + border-radius: 3px; + background-color: rgba(255, 255, 255, 0.04); + color: #fff; +} +.unlock-dialog-notifications-container .notification.critical, +.unlock-dialog-notifications-container .unlock-dialog-notification-source.critical { + background-color: rgba(255, 255, 255, 0.04); + color: #b5735c; +} + +.unlock-dialog-notification-label { + padding: 0 0 0 12px; +} + +.unlock-dialog-notification-count-text { + margin-right: 12px; + padding: 2px 8px; + border-radius: 99px; + background-color: rgba(255, 255, 255, 0.08); + color: #fff; +} + +#lockDialogGroup { + background-color: #000001; + color: #c8dbec; +} + +#unlockDialogNotifications StScrollBar StBin#trough { + background-color: rgba(255, 255, 255, 0.2); +} +#unlockDialogNotifications StScrollBar StButton#vhandle, +#unlockDialogNotifications StScrollBar StButton#hhandle { + background-color: rgba(255, 255, 255, 0.5); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:hover, +#unlockDialogNotifications StScrollBar StButton#hhandle:hover { + background-color: rgba(255, 255, 255, 0.6); +} +#unlockDialogNotifications StScrollBar StButton#vhandle:active, +#unlockDialogNotifications StScrollBar StButton#hhandle:active { + background-color: rgba(255, 255, 255, 0.7); +} + +.screen-shield-background { + background: black; + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.68); +} + +/* Dash to Dock */ +#dashtodockContainer #dash { + background-color: rgba(0, 0, 0, 0.6); +} + +#dashtodockContainer:overview #dash { + background-color: rgba(255, 255, 255, 0.08); +} + +#dashtodockContainer.extended:overview #dash { + background-color: transparent; +} + +#dashtodockContainer.left #dash, +#dashtodockContainer.right #dash { + padding: 3px 0; +} + +#dashtodockContainer.top #dash, +#dashtodockContainer.bottom #dash { + padding: 0 3px; +} + +#dashtodockContainer.extended #dash { + padding: 0; + border-radius: 0; +} + +#dashtodockContainer.left .dash-item-container > StWidget, +#dashtodockContainer.right .dash-item-container > StWidget, +#dashtodockContainer.extended.left .dash-item-container > StWidget, +#dashtodockContainer.extended.right .dash-item-container > StWidget { + padding: 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:first-child > StWidget { + padding: 6px 6px 3px 6px; +} + +#dashtodockContainer.extended.left .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.right .dash-item-container:last-child > StWidget { + padding: 3px 6px 6px 6px; +} + +#dashtodockContainer.top .dash-item-container > StWidget, +#dashtodockContainer.bottom .dash-item-container > StWidget, +#dashtodockContainer.extended.top .dash-item-container > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container > StWidget { + padding: 6px 3px; +} + +#dashtodockContainer.extended.top .dash-item-container:first-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:first-child > StWidget { + padding: 6px 3px 6px 6px; +} + +#dashtodockContainer.extended.top .dash-item-container:last-child > StWidget, +#dashtodockContainer.extended.bottom .dash-item-container:last-child > StWidget { + padding: 6px 6px 6px 3px; +} + +#dashtodockContainer .focused .overview-icon { + background-color: rgba(255, 255, 255, 0.12); +} + +#dashtodockContainer .default.focused .overview-icon { + background-color: transparent; +} + +#dashtodockContainer .app-well-app-running-dot { + background-color: transparent; +} + +#dashtodockContainer .default { + background-size: cover; +} + +#dashtodockContainer.left .default.running1 { + background-image: url("assets/dash/left-running1.svg"); +} + +#dashtodockContainer.left .default.running1.focused { + background-image: url("assets/dash/left-running1-focused.svg"); +} + +#dashtodockContainer.left .default.running2 { + background-image: url("assets/dash/left-running2.svg"); +} + +#dashtodockContainer.left .default.running2.focused { + background-image: url("assets/dash/left-running2-focused.svg"); +} + +#dashtodockContainer.left .default.running3 { + background-image: url("assets/dash/left-running3.svg"); +} + +#dashtodockContainer.left .default.running3.focused { + background-image: url("assets/dash/left-running3-focused.svg"); +} + +#dashtodockContainer.left .default.running4 { + background-image: url("assets/dash/left-running4.svg"); +} + +#dashtodockContainer.left .default.running4.focused { + background-image: url("assets/dash/left-running4-focused.svg"); +} + +#dashtodockContainer.right .default.running1 { + background-image: url("assets/dash/right-running1.svg"); +} + +#dashtodockContainer.right .default.running1.focused { + background-image: url("assets/dash/right-running1-focused.svg"); +} + +#dashtodockContainer.right .default.running2 { + background-image: url("assets/dash/right-running2.svg"); +} + +#dashtodockContainer.right .default.running2.focused { + background-image: url("assets/dash/right-running2-focused.svg"); +} + +#dashtodockContainer.right .default.running3 { + background-image: url("assets/dash/right-running3.svg"); +} + +#dashtodockContainer.right .default.running3.focused { + background-image: url("assets/dash/right-running3-focused.svg"); +} + +#dashtodockContainer.right .default.running4 { + background-image: url("assets/dash/right-running4.svg"); +} + +#dashtodockContainer.right .default.running4.focused { + background-image: url("assets/dash/right-running4-focused.svg"); +} + +#dashtodockContainer.top .default.running1 { + background-image: url("assets/dash/top-running1.svg"); +} + +#dashtodockContainer.top .default.running1.focused { + background-image: url("assets/dash/top-running1-focused.svg"); +} + +#dashtodockContainer.top .default.running2 { + background-image: url("assets/dash/top-running2.svg"); +} + +#dashtodockContainer.top .default.running2.focused { + background-image: url("assets/dash/top-running2-focused.svg"); +} + +#dashtodockContainer.top .default.running3 { + background-image: url("assets/dash/top-running3.svg"); +} + +#dashtodockContainer.top .default.running3.focused { + background-image: url("assets/dash/top-running3-focused.svg"); +} + +#dashtodockContainer.top .default.running4 { + background-image: url("assets/dash/top-running4.svg"); +} + +#dashtodockContainer.top .default.running4.focused { + background-image: url("assets/dash/top-running4-focused.svg"); +} + +#dashtodockContainer.bottom .default.running1 { + background-image: url("assets/dash/bottom-running1.svg"); +} + +#dashtodockContainer.bottom .default.running1.focused { + background-image: url("assets/dash/bottom-running1-focused.svg"); +} + +#dashtodockContainer.bottom .default.running2 { + background-image: url("assets/dash/bottom-running2.svg"); +} + +#dashtodockContainer.bottom .default.running2.focused { + background-image: url("assets/dash/bottom-running2-focused.svg"); +} + +#dashtodockContainer.bottom .default.running3 { + background-image: url("assets/dash/bottom-running3.svg"); +} + +#dashtodockContainer.bottom .default.running3.focused { + background-image: url("assets/dash/bottom-running3-focused.svg"); +} + +#dashtodockContainer.bottom .default.running4 { + background-image: url("assets/dash/bottom-running4.svg"); +} + +#dashtodockContainer.bottom .default.running4.focused { + background-image: url("assets/dash/bottom-running4-focused.svg"); +} + +/* Simple Dock */ +#dash:desktop { + background-color: rgba(0, 0, 0, 0.6); +} + +/* GPaste */ +.popup-menu .search-entry { + color: #c8dbec; + selection-background-color: rgba(191, 86, 47, 0.32); + selected-color: #c8dbec; + transition-duration: 100ms; + background-color: rgba(200, 219, 236, 0.04); + border-color: transparent; + box-shadow: inset 0 -1px rgba(200, 219, 236, 0.3); +} +.popup-menu .search-entry:hover { + box-shadow: inset 0 -1px #c8dbec; +} +.popup-menu .search-entry:focus { + border-color: transparent; + box-shadow: inset 0 -2px #bf562f; + color: #c8dbec; +} +.popup-menu .search-entry .search-entry-icon { + color: rgba(200, 219, 236, 0.7); +} +.popup-menu .search-entry:hover .search-entry-icon, .popup-menu .search-entry:focus .search-entry-icon { + color: #c8dbec; +} diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/color-pick.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/color-pick.svg new file mode 100644 index 0000000..2246776 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/color-pick.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg new file mode 100644 index 0000000..5267834 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-double-click-symbolic.svg @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg new file mode 100644 index 0000000..be37e6f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-drag-symbolic.svg @@ -0,0 +1,20 @@ + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg new file mode 100644 index 0000000..f447991 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-primary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg new file mode 100644 index 0000000..b72e178 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/pointer-secondary-click-symbolic.svg @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg new file mode 100644 index 0000000..2e4e568 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/actions/preview-close-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg new file mode 100644 index 0000000..bfddded --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-back-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg new file mode 100644 index 0000000..beee288 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/carousel-arrow-next-24-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg new file mode 100644 index 0000000..20c4224 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-not-looking-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg new file mode 100644 index 0000000..1f9207e --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/eye-open-negative-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg new file mode 100644 index 0000000..fc6bd93 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-caps-lock-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg new file mode 100644 index 0000000..91fbb7f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-enter-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg new file mode 100644 index 0000000..e8e1117 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-hide-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg new file mode 100644 index 0000000..80b78e4 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-layout-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg new file mode 100644 index 0000000..691eed1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/keyboard-shift-filled-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg new file mode 100644 index 0000000..5edac8f --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/icons/scalable/status/message-indicator-symbolic.svg @@ -0,0 +1,3 @@ + + + diff --git a/themes/blueleaves/gtk/theme/gnome-shell/noise-texture.png b/themes/blueleaves/gtk/theme/gnome-shell/noise-texture.png new file mode 100644 index 0000000..ca1563d Binary files /dev/null and b/themes/blueleaves/gtk/theme/gnome-shell/noise-texture.png differ diff --git a/themes/blueleaves/gtk/theme/gnome-shell/pad-osd.css b/themes/blueleaves/gtk/theme/gnome-shell/pad-osd.css new file mode 100644 index 0000000..31c2377 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/pad-osd.css @@ -0,0 +1,30 @@ +.Leader { + stroke-width: .5 !important; + stroke: #535353; + fill: none !important; +} + +.Button { + stroke-width: .25; + stroke: #ededed; + fill: #ededed; +} + +.Ring { + stroke-width: .5 !important; + stroke: #535353 !important; + fill: none !important; +} + +.Label { + stroke: none !important; + stroke-width: .1 !important; + font-size: .1 !important; + fill: transparent !important; +} + +.TouchStrip, .TouchRing { + stroke-width: .1 !important; + stroke: #ededed !important; + fill: #535353 !important; +} diff --git a/themes/blueleaves/gtk/theme/gnome-shell/process-working.svg b/themes/blueleaves/gtk/theme/gnome-shell/process-working.svg new file mode 100644 index 0000000..51cef00 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gnome-shell/process-working.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc b/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc new file mode 100644 index 0000000..f648179 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc @@ -0,0 +1,894 @@ +# Valyrian-Molten-Steel GTK Theme + +gtk-color-scheme = +"base_color:#0e1b28\nbg_color:#112333\ntooltip_bg_color:#112333\nselected_bg_color:#bf562f\ntext_color:#d3dae3\nfg_color:#c8dbec\ntooltip_fg_color:#c8dbec\nselected_fg_color:#ffffff\nmenubar_bg_color:#0b1721\nmenubar_fg_color:#c8dbec\ntoolbar_bg_color:#112333\ntoolbar_fg_color:#c8dbec\nmenu_bg_color:#0b1721\nmenu_fg_color:#c8dbec\npanel_bg_color:#112333\npanel_fg_color:#c8dbec\nlink_color:#e56637\nbtn_bg_color:#13324d\nbtn_fg_color:#c8dbec\ntitlebar_bg_color:#0b1721\ntitlebar_fg_color:#c8dbec\nprimary_caret_color:#e6e6e6\nsecondary_caret_color:#e6e6e6\naccent_bg_color:#e56637\n" +# Default Style + +style "murrine-default" { + GtkArrow::arrow-scaling= 0.6 + + GtkWidget::cursor_color = @primary_caret_color + GtkWidget::secondary_cursor_color = @secondary_caret_color + GtkWidget::cursor_aspect_ratio = 0.04 + + GtkButton::child-displacement-x = 0 + GtkButton::child-displacement-y = 0 + + GtkButton::default-border = { 0, 0, 0, 0 } + #GtkButton::inner-border = { 2, 2, 1, 1 } + GtkButton::focus-line-width = 1 + #GtkButton::focus-padding = -4 + + GtkButtonBox::child-min-height = 26 + + GtkCheckButton::indicator-size = 16 + + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + GtkEntry::state-hint = 0 + + GtkExpander::expander-size = 16 + + GtkImage::x-ayatana-indicator-dynamic = 1 + + GtkMenu::horizontal-padding = 0 + GtkMenu::vertical-padding = 0 + + GtkMenuBar::internal-padding = 0 + GtkMenuBar::window-dragging = 1 + + GtkMenuItem::arrow-scaling= 0.5 + + GtkPaned::handle-size = 1 + + GtkProgressBar::min-horizontal-bar-height = 12 + GtkProgressBar::min-vertical-bar-width = 12 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 12 + GtkRange::stepper-size = 12 + GtkRange::stepper_spacing = 0 + GtkRange::trough-under-steppers = 1 + + GtkScale::slider-length = 16 + GtkScale::slider-width = 16 + GtkScale::trough-side-details = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::has-secondary-backward-stepper = 0 + GtkScrollbar::has-secondary-forward-stepper = 0 + GtkScrollbar::min-slider-length = 80 + GtkScrollbar::slider-width = 12 + GtkScrollbar::trough-border = 0 + + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkSeparatorMenuItem::horizontal-padding = 0 + + GtkToolbar::internal-padding = 0 + + GtkTreeView::expander-size = 11 + GtkTreeView::vertical-separator = 0 + + GtkWidget::focus-line-width = 1 + # The following line prevents the Firefox tabs + # from jumping a few pixels when you create a new tab + GtkWidget::focus-padding = 0 + + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 1 + GtkWidget::separator-height = 1 + + GtkWindow::resize-grip-height = 0 + GtkWindow::resize-grip-width = 0 + + WnckTasklist::fade-overlay-rect = 0 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified + GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified + + xthickness = 1 + ythickness = 1 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + bg[INSENSITIVE] = @bg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @base_color) + base[SELECTED] = @selected_bg_color + base[ACTIVE] = @selected_bg_color + base[INSENSITIVE] = shade (0.85, @base_color) + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @selected_fg_color + text[INSENSITIVE] = mix (0.5, @base_color, @text_color) + + engine "murrine" { + animation = FALSE + arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows + border_shades = { 1.0, 1.0 } # gradient to draw on border + border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) } + colorize_scrollbar = FALSE + comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow + contrast = 0.8 # overal contrast with borders + focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow + glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight + glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides + glow_shade = 1.0 # amount of glow + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets + highlight_shade = 1.0 # amount of highlight + lightborder_shade = 1.0 # amount of inset light border + lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides + listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised + listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line + menubaritemstyle = 0 # 0 = menuitem look, 1 = button look + menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped + menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped + menustyle = 0 # 0 = none, 1 = vertical striped + progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped + reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient + roundness = 3 # roundness of widgets + scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles + sliderstyle = 0 # 0 = none, 1 = handles + stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles + toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient + } +} + +style "murrine-wide" { + xthickness = 2 + ythickness = 2 +} + +style "murrine-wider" { + xthickness = 3 + ythickness = 3 +} + +style "murrine-thin" { + xthickness = 0 + ythickness = 0 +} + +# Notebook + +style "clearlooks-notebook-bg" { + bg[NORMAL] = @bg_color + bg[ACTIVE] = shade (0.80, @bg_color) +} + +style "clearlooks-notebook" = "clearlooks-notebook-bg" { + xthickness = 2 + ythickness = 2 + + engine "clearlooks" { + radius = 0.1 + } +} + +# Various Standard Widgets + +style "murrine-button" = "murrine-wider" { + bg[NORMAL] = @btn_bg_color + bg[PRELIGHT] = shade (1.10, @btn_bg_color) + bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color) + bg[ACTIVE] = shade (0.95, @btn_bg_color) + bg[INSENSITIVE] = shade (0.75, @btn_bg_color) + #xthickness = 4 + #ythickness = 4 + + engine "murrine" { + border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) } + roundness = 3 + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + } +} + +style "murrine-buttonlabel" { + fg[NORMAL] = @btn_fg_color + fg[PRELIGHT] = @btn_fg_color + fg[SELECTED] = @btn_fg_color + fg[ACTIVE] = @btn_fg_color + fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color) + + text[NORMAL] = @btn_fg_color + text[PRELIGHT] = @btn_fg_color + text[SELECTED] = @btn_fg_color + text[ACTIVE] = @btn_fg_color + text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color) + + engine "murrine" { + } +} + +style "murrine-scrollbar" { + bg[NORMAL] = mix (0.21, @fg_color, @bg_color) + bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color) + bg[ACTIVE] = @selected_bg_color + + engine "murrine" { + roundness = 0 + contrast = 0.0 + border_shades = { 0.9, 0.9 } + trough_shades = { 0.97, 0.97 } + trough_border_shades = { 1.0, 1.0 } + } +} + +style "murrine-overlay-scrollbar" { + bg[ACTIVE] = shade (0.8, @bg_color) + bg[INSENSITIVE] = shade (0.97, @bg_color) + + base[SELECTED] = shade (0.6, @bg_color) + base[INSENSITIVE] = shade (0.85, @bg_color) +} + +style "murrine-scale" = "murrine-thin" { + bg[NORMAL] = @btn_bg_color + bg[ACTIVE] = mix(0.2, @fg_color, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color) + + engine "murrine" { + roundness = 8 + #roundness = 3 + gradient_shades = { 1.08, 1.08, 1.08, 1.08 } + #border_shades = { 0.5, 0.5 } + border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) } + #trough_shades = { 1.08, 1.08 } + trough_border_shades = { 0.8, 0.8 } + } +} + +style "murrine-progressbar" = "murrine-thin" { + bg[NORMAL] = @bg_color + bg[ACTIVE] = mix(0.08, @bg_color, @base_color) + + fg[PRELIGHT] = @selected_fg_color + + engine "murrine" { + #roundness = 2 + roundness = 3 + border_shades = { 1.2, 1.2 } + trough_border_shades = { 0.8, 0.8 } + } +} + +style "murrine-treeview-header" = "murrine-button" { + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color) + engine "murrine" { + roundness = 0 + } +} + +style "murrine-treeview" { + engine "murrine" { + roundness = 0 + } +} + +style "murrine-frame" = "murrine-wide" { + bg[NORMAL] = mix(0.08, @fg_color, @bg_color) +} + +style "murrine-frame-title" { + fg[NORMAL] = lighter (@fg_color) +} + +style "murrine-tooltips" { + xthickness = 5 + ythickness = 5 + + bg[NORMAL] = @tooltip_bg_color + bg[SELECTED] = @tooltip_bg_color + + fg[NORMAL] = @tooltip_fg_color + + engine "murrine" { + textstyle = 0 + roundness = 2 + rgba = FALSE + } +} + +style "murrine-spinbutton" = "murrine-button" { + engine "murrine" { + } +} + +style "clearlooks-radiocheck" = "murrine-default" { + bg[SELECTED] = @base_color + bg[PRELIGHT] = @bg_color + + text[NORMAL] = @accent_bg_color + text[PRELIGHT] = @accent_bg_color + + engine "clearlooks" { + radius = 4.0 + } +} + +style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" { + bg[PRELIGHT] = @bg_color +} + +style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" { + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) +} + +style "murrine-entry" = "murrine-wider" { + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @text_color + text[ACTIVE] = @text_color + text[INSENSITIVE] = mix (0.5, @base_color, @text_color) + engine "murrine" { + #border_shades = { 1.15, 1.15 } + border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) } + roundness = 3 + } +} + +style "metacity-frame" = "murrine-default" { + bg[SELECTED] = @selected_bg_color +} + +style "murrine-statusbar" { } +style "murrine-comboboxentry" = "murrine-entry" { } +style "murrine-hscale" = "murrine-scale" { } +style "murrine-vscale" = "murrine-scale" { } +style "murrine-hscrollbar" = "murrine-scrollbar" { } +style "murrine-vscrollbar" = "murrine-scrollbar" { } + +# Menus + +style "murrine-menu" = "murrine-thin" { + bg[NORMAL] = @menu_bg_color + bg[PRELIGHT] = @selected_bg_color + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = @menu_bg_color + bg[INSENSITIVE] = @menu_bg_color + + fg[NORMAL] = @menu_fg_color + fg[PRELIGHT] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + text[NORMAL] = @menu_fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @selected_fg_color + text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +style "murrine-menu-item" = "murrine-wider" { + bg[PRELIGHT] = @selected_bg_color + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = @selected_bg_color + + fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text + fg[PRELIGHT] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + engine "murrine" { + textstyle = 0 + border_shades = { 1.2, 1.2 } + } +} + +style "murrine-separator-menu-item" = "murrine-thin" { } + +style "murrine-menubar" { + bg[NORMAL] = @menubar_bg_color + bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[ACTIVE] = shade (0.9, @menubar_bg_color) + bg[INSENSITIVE] = @menubar_bg_color + + fg[NORMAL] = @menubar_fg_color + fg[PRELIGHT] = shade (1.08, @menubar_fg_color) + fg[SELECTED] = shade (1.08, @menubar_fg_color) + fg[ACTIVE] = @menubar_fg_color + fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +style "murrine-menubaritem" { + bg[NORMAL] = @menubar_bg_color + bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[ACTIVE] = shade (0.9, @menubar_bg_color) + bg[INSENSITIVE] = @menubar_bg_color + + fg[NORMAL] = @menubar_fg_color + fg[PRELIGHT] = shade (1.08, @menubar_fg_color) + fg[SELECTED] = shade (1.08, @menubar_fg_color) + fg[ACTIVE] = @menubar_fg_color + fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +# Toolbars + +style "murrine-toolbar" = "murrine-thin" { + bg[NORMAL] = @toolbar_bg_color + bg[PRELIGHT] = shade (1.02, @toolbar_bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.9, @toolbar_bg_color) + bg[INSENSITIVE] = @toolbar_bg_color + + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +style "murrine-toolbutton" = "murrine-button" { + bg[NORMAL] = shade (1.08, @toolbar_bg_color) + bg[PRELIGHT] = shade (1.10, @toolbar_bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.95, @toolbar_bg_color) + bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color) + + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +style "murrine-toolbutton-label" = "murrine-toolbutton" { + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +class "GtkToolbar" style "murrine-toolbar" +class "GtkHandleBox" style "murrine-toolbar" +widget_class "*Toolbar*.*Separator*" style "murrine-toolbar" + +# Panels + +style "murrine-panel" = "murrine-thin" { + xthickness = 2 + + bg[NORMAL] = @panel_bg_color + bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color) + bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color) + bg[ACTIVE] = shade (0.8, @panel_bg_color) + bg[INSENSITIVE] = @panel_bg_color + + fg[NORMAL] = @panel_fg_color + fg[PRELIGHT] = shade (1.08, @panel_fg_color) + fg[SELECTED] = shade (1.08, @panel_fg_color) + fg[ACTIVE] = @panel_fg_color + fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color) + + base[NORMAL] = @panel_bg_color + base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color) + base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color) + base[ACTIVE] = shade (0.9, @panel_bg_color) + base[INSENSITIVE] = @panel_bg_color + + text[NORMAL] = @panel_fg_color + text[PRELIGHT] = shade (1.08, @panel_fg_color) + text[SELECTED] = shade (1.08, @panel_fg_color) + text[ACTIVE] = @panel_fg_color + text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color) + + engine "murrine" { + roundness = 0 + contrast = 0.0 + } +} + +widget "*PanelWidget*" style "murrine-panel" +widget "*PanelApplet*" style "murrine-panel" +widget "*fast-user-switch*" style "murrine-panel" +widget "*CPUFreq*Applet*" style "murrine-panel" +widget "*indicator-applet*" style "murrine-panel" +class "PanelApp*" style "murrine-panel" +class "PanelToplevel*" style "murrine-panel" +widget_class "*PanelToplevel*" style "murrine-panel" +widget_class "*notif*" style "murrine-panel" +widget_class "*Notif*" style "murrine-panel" +widget_class "*Tray*" style "murrine-panel" +widget_class "*tray*" style "murrine-panel" +widget_class "*computertemp*" style "murrine-panel" +widget_class "*Applet*Tomboy*" style "murrine-panel" +widget_class "*Applet*Netstatus*" style "murrine-panel" +widget "*gdm-user-switch-menubar*" style "murrine-panel" + +# LXPanel (code based on Lubuntu-default theme's gtkrc file) +widget "*.tclock.*" style "murrine-panel" +widget "*.taskbar.*" style "murrine-panel" +widget_class "*GtkBgbox*" style "murrine-panel" + +style "bold-panel-item" { + font_name = "Bold" + + engine "murrine" { + roundness = 0 + } +} + +widget "*Panel*MenuBar*" style "bold-panel-item" +widget "*gimmie*" style "bold-panel-item" + +# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug +# class "*Panel*" style "murrine-panel" # Disabled to fix bug + +# XFCE Styles + +style "workspace-switcher" = "murrine-panel" { + bg[ACTIVE] = @selected_bg_color + bg[SELECTED] = @selected_bg_color +} + +style "xfce-header" { + bg[NORMAL] = shade (0.9, @bg_color) + base[NORMAL] = shade (1.18, @bg_color) +} + +style "xfdesktop-windowlist" { + bg[NORMAL] = @base_color + fg[INSENSITIVE] = shade (0.95, @base_color) + text[INSENSITIVE] = shade (0.95, @base_color) +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 60 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = @fg_color + XfdesktopIconView::selected-shadow-color = @fg_color + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @bg_color + fg[ACTIVE] = @bg_color + +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @menu_bg_color + bg[SELECTED] = @menu_bg_color + + fg[NORMAL] = @menu_fg_color + + engine "murrine" { + contrast = 0.0 + border_shades = { 0.9, 0.9 } + } +} + +style "xfwm-tabwin-button" { + font_name = "bold" + + bg[SELECTED] = @selected_bg_color +} + +style "xfsm-logout" { + bg[NORMAL] = @menu_bg_color + bg[ACTIVE] = @menu_bg_color + bg[PRELIGHT] = shade (1.1, @menu_bg_color) + bg[SELECTED] = shade (0.5, @menu_bg_color) + bg[INSENSITIVE] = shade (1.3, @menu_bg_color) + + fg[NORMAL] = @menu_fg_color + fg[PRELIGHT] = @menu_fg_color + + text[NORMAL] = @menu_fg_color + + engine "murrine" { + } +} + +style "xfsm-logout-button" { + bg[NORMAL] = shade (1.2, @menu_bg_color) + bg[PRELIGHT] = shade (1.4, @menu_bg_color) + + engine "murrine" { + } +} + +widget "*Pager*" style "workspace-switcher" + +widget "*Xfce*Panel*" style "murrine-panel" +class "*Xfce*Panel*" style "murrine-panel" + +# Thunar Styles + +style "sidepane" { + base[NORMAL] = @bg_color + base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color)) + bg[NORMAL] = @bg_color + text[NORMAL] = mix (0.9, @fg_color, @bg_color) +} + +widget_class "*ThunarShortcutsView*" style "sidepane" +widget_class "*ThunarTreeView*" style "sidepane" +widget_class "*ThunarLocationEntry*" style "murrine-entry" + +style "whiskermenu" { + bg[NORMAL] = @menu_bg_color + bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[PRELIGHT] = @selected_bg_color + + fg[NORMAL] = @menu_fg_color + fg[ACTIVE] = @menu_fg_color + fg[PRELIGHT] = @menu_fg_color +} + +style "whiskermenu-scrollbar" = "murrine-scrollbar" { + bg[NORMAL] = mix (0.21, @fg_color, @bg_color) + bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color) + bg[ACTIVE] = @selected_bg_color + + engine "murrine" { + trough_shades = { 4.97, 4.97 } + trough_border_shades = { 5.0, 5.0 } + } +} + +widget "whiskermenu-window*" style "whiskermenu" +widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar" + +# Gtk2 Open-File Dialog + +widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane" +widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.." style "murrine-treeview-header" + +# Google Chrome/Chromium Styles (requires 9.0.597 or newer) + +style "chromium-toolbar-button" { + engine "murrine" { + roundness = 2 + textstyle = 0 + } +} + +style "chrome-gtk-frame" { + ChromeGtkFrame::frame-color = @titlebar_bg_color + ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color + + ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::incognito-frame-gradient-size = 0 + ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color + + ChromeGtkFrame::scrollbar-trough-color = @bg_color + ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color) +} + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*Chrom*Button*" style "chromium-toolbar-button" + +# General Styles + +class "GtkWidget" style "murrine-default" + +class "GtkFrame" style "murrine-frame" +class "MetaFrames" style "metacity-frame" +class "GtkWindow" style "metacity-frame" + +class "GtkSeparator" style "murrine-wide" +class "GtkCalendar" style "murrine-wide" + +class "GtkSpinButton" style "murrine-spinbutton" + +class "GtkScale" style "murrine-scale" +class "GtkVScale" style "murrine-vscale" +class "GtkHScale" style "murrine-hscale" +class "GtkScrollbar" style "murrine-scrollbar" +class "GtkVScrollbar" style "murrine-vscrollbar" +class "GtkHScrollbar" style "murrine-hscrollbar" + +class "GtkEntry" style "murrine-entry" + +widget_class "*" style "clearlooks-notebook" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook" + +widget_class "*" style "murrine-button" +widget_class "**" style "murrine-statusbar" +widget_class "*" style "murrine-progressbar" +widget_class "*" style "murrine-progressbar" + +widget_class "**" style "murrine-comboboxentry" +widget_class "**" style "murrine-comboboxentry" + +widget_class "**" style "murrine-menu" +widget_class "**" style "murrine-menu-item" +widget_class "**" style "murrine-separator-menu-item" +widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item" +widget_class "**" style "murrine-menubar" +widget_class "***" style "murrine-menubaritem" + +widget_class "*GtkToolButton*" style "murrine-toolbutton" +widget_class "*GtkToggleToolButton*" style "murrine-toolbutton" +widget_class "*GtkMenuToolButton*" style "murrine-toolbutton" +widget_class "*GtkToolbar*Button" style "murrine-toolbutton" + +widget_class "*.." style "murrine-frame-title" + +widget_class "*.*" style "murrine-treeview" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" + +widget_class "*." style "clearlooks-radiocheck" +widget_class "*.*." style "clearlooks-base-radiocheck" +widget_class "*" style "clearlooks-base-radiocheck" + +widget "gtk-tooltip*" style "murrine-tooltips" + +widget_class "**" style "murrine-overlay-scrollbar" + +# Workarounds and Non-Standard Styling + +style "text-is-fg-color-workaround" { + text[NORMAL] = @text_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) +} + +widget_class "*.." style "text-is-fg-color-workaround" + +style "fg-is-text-color-workaround" { + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = darker (@fg_color) +} + +widget_class "**" style "fg-is-text-color-workaround" +widget_class "*" style "fg-is-text-color-workaround" +widget_class "*" style "fg-is-text-color-workaround" + +style "murrine-evo-new-button-workaround" { + engine "murrine" { + toolbarstyle = 0 + } +} + +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround" + +style "inkscape-toolbar-fix" { + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + highlight_shade = 1.0 + } +} + +#widget "*GtkHandleBox*" style "inkscape-toolbar-fix" +#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix" +#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix" + +# Performance Fixes + +style "performance-fix" { + engine "murrine" { + textstyle = 0 + } +} + +widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape +widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp +widget_class "*GimpToolbox*" style "performance-fix" +widget_class "*GimpMenuDock*" style "performance-fix" +widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice +widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.) + +widget_class "*XfceHeading*" style "xfce-header" +widget_class "*XfceDesktop*" style "xfdesktop-windowlist" +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" +widget_class "*XfsmLogoutDialog*" style "xfsm-logout" +widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button" + +# button fg workarounds: +widget_class "*.." style "murrine-buttonlabel" +widget_class "***" style:highest "murrine-buttonlabel" +widget_class "***" style:highest "clearlooks-radiocheck-label" +widget_class "**" style "murrine-buttonlabel" +widget_class "***" style "murrine-buttonlabel" +widget_class "***" style:highest "murrine-entry" +widget_class "****" style:highest "murrine-toolbutton-label" diff --git a/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc.hidpi b/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc.hidpi new file mode 100644 index 0000000..ebe19a5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gtk-2.0/gtkrc.hidpi @@ -0,0 +1,995 @@ +# Valyrian-Molten-Steel GTK Theme + +gtk-color-scheme = +"base_color:#0e1b28\nbg_color:#112333\ntooltip_bg_color:#112333\nselected_bg_color:#bf562f\ntext_color:#d3dae3\nfg_color:#c8dbec\ntooltip_fg_color:#c8dbec\nselected_fg_color:#ffffff\nmenubar_bg_color:#0b1721\nmenubar_fg_color:#c8dbec\ntoolbar_bg_color:#112333\ntoolbar_fg_color:#c8dbec\nmenu_bg_color:#0b1721\nmenu_fg_color:#c8dbec\npanel_bg_color:#112333\npanel_fg_color:#c8dbec\nlink_color:#e56637\nbtn_bg_color:#13324d\nbtn_fg_color:#c8dbec\ntitlebar_bg_color:#0b1721\ntitlebar_fg_color:#c8dbec\nprimary_caret_color:#e6e6e6\nsecondary_caret_color:#e6e6e6\naccent_bg_color:#e56637\n" +# Default Style + +style "murrine-default" { + GtkArrow::arrow-scaling= 1.0 + + GtkButton::child-displacement-x = 0 + GtkButton::child-displacement-y = 0 + + #GtkButton::default-border = { 0, 0, 0, 0 } + GtkButton::inner-border = { 0, 0, 1, 0 } + GtkButton::focus-line-width = 2 + #GtkButton::focus-padding = 4 + GtkButton::focus-padding = 2 + #GtkButton::interior-focus = 1 + + GtkEntry::inner-border = { 4, 4, 5, 4 } + GtkComboBox::inner-border = { 4, 4, 6, 5 } + GtkComboBoxText::inner-border = { 4, 4, 6, 5 } + + #GtkButtonBox::child-min-height = 52 + + GtkCheckButton::indicator-size = 30 + + # The following line hints to gecko (and possibly other appliations) + # that the entry should be drawn transparently on the canvas. + # Without this, gecko will fill in the background of the entry. + GtkEntry::honors-transparent-bg-hint = 1 + GtkEntry::state-hint = 0 + + GtkExpander::expander-size = 30 + + GtkImage::x-ayatana-indicator-dynamic = 1 + + GtkMenu::horizontal-padding = 2 + GtkMenu::vertical-padding = 2 + + GtkMenuBar::internal-padding = 1 + GtkMenuBar::window-dragging = 1 + + GtkMenuItem::arrow-scaling= 0.5 + + GtkPaned::handle-size = 1 + + GtkProgressBar::min-horizontal-bar-height = 14 + GtkProgressBar::min-vertical-bar-width = 14 + + GtkRange::trough-border = 0 + GtkRange::slider-width = 24 + GtkRange::stepper-size = 24 + GtkRange::stepper_spacing = 0 + GtkRange::trough-under-steppers = 1 + + GtkScale::slider-length = 30 + GtkScale::slider-width = 30 + GtkScale::trough-side-details = 1 + + GtkScrollbar::activate-slider = 1 + GtkScrollbar::has-backward-stepper = 0 + GtkScrollbar::has-forward-stepper = 0 + GtkScrollbar::has-secondary-backward-stepper = 0 + GtkScrollbar::has-secondary-forward-stepper = 0 + GtkScrollbar::min-slider-length = 160 + GtkScrollbar::slider-width = 24 + GtkScrollbar::trough-border = 0 + + GtkScrolledWindow::scrollbar-spacing = 0 + GtkScrolledWindow::scrollbars-within-bevel = 1 + + GtkSeparatorMenuItem::horizontal-padding = 0 + + GtkToolbar::internal-padding = 0 + + GtkTreeView::expander-size = 22 + GtkTreeView::vertical-separator = 0 + + GtkWidget::focus-line-width = 2 + # The following line prevents the Firefox tabs + # from jumping a few pixels when you create a new tab + GtkWidget::focus-padding = 0 + + GtkWidget::wide-separators = 1 + GtkWidget::separator-width = 2 + GtkWidget::separator-height = 2 + + GtkWindow::resize-grip-height = 2 + GtkWindow::resize-grip-width = 2 + + WnckTasklist::fade-overlay-rect = 0 + + GnomeHRef::link_color = @link_color + GtkHTML::link-color = @link_color + GtkIMHtmlr::hyperlink-color = @link_color + GtkIMHtml::hyperlink-color = @link_color + GtkWidget::link-color = @link_color + GtkWidget::visited-link-color = @text_color + + GtkToolbar::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified + GtkMenuBar::shadow-type = GTK_SHADOW_NONE # Makes menubars flat and unified + + xthickness = 2 + ythickness = 2 + + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) + + bg[NORMAL] = @bg_color + bg[PRELIGHT] = shade (1.02, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.9, @bg_color) + bg[INSENSITIVE] = @bg_color + + base[NORMAL] = @base_color + base[PRELIGHT] = shade (0.95, @base_color) + base[SELECTED] = @selected_bg_color + base[ACTIVE] = @selected_bg_color + base[INSENSITIVE] = shade (0.85, @base_color) + + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @selected_fg_color + text[INSENSITIVE] = mix (0.5, @base_color, @text_color) + + engine "murrine" { + animation = FALSE + arrowstyle = 1 # 0 = normal arrows, 1 = filled arrows + border_shades = { 1.0, 1.0 } # gradient to draw on border + border_colors = { mix(0.2, @fg_color, @bg_color), mix(0.2, @fg_color, @bg_color) } + colorize_scrollbar = FALSE + comboboxstyle = 0 # 0 = normal combobox, 1 = colorized combobox below arrow + contrast = 0.8 # overal contrast with borders + focusstyle = 3 # 0 = none, 1 = grey dotted, 2 = colored with fill, 3 = colored glow + glazestyle = 0 # 0 = flat highlight, 1 = curved highlight, 2 = concave, 3 = top curved highlight, 4 = beryl highlight + glowstyle = 0 # 0 = glow on top, 1 = glow on bottom, 2 = glow on top and bottom, 3 = glow on middle vertically, 4 = glow on middle horizontally, 5 = glow on all sides + glow_shade = 1.0 # amount of glow + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } # gradient to draw on widgets + highlight_shade = 1.0 # amount of highlight + lightborder_shade = 1.0 # amount of inset light border + lightborderstyle = 1 # 0 = lightborder on top side, 1 = lightborder on all sides + listviewheaderstyle = 0 # 0 = flat, 1 = glassy, 2 = raised + listviewstyle = 0 # 0 = none, 1 = dotted, 2 = line + menubaritemstyle = 0 # 0 = menuitem look, 1 = button look + menubarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient, 3 = striped + menuitemstyle = 0 # 0 = flat, 1 = glassy, 2 = striped + menustyle = 0 # 0 = none, 1 = vertical striped + progressbarstyle = 0 # 0 = none, 1 = diagonal striped, 2 = vertical striped + reliefstyle = 0 # 0 = flat, 1 = inset, 2 = shadow, 3 = shadow with gradient, 4 = stronger shadow with gradient + roundness = 6# roundness of widgets + scrollbarstyle = 0 # 0 = none, 1 = circles, 2 = handles, 3 = diagonal stripes, 4 = diagonal stripes and handles, 5 = horizontal stripes, 6 = horizontal stripes and handles + sliderstyle = 0 # 0 = none, 1 = handles + stepperstyle = 1 # 0 = standard, 1 = integrated stepper handles + toolbarstyle = 0 # 0 = flat, 1 = glassy, 2 = gradient + } +} + +style "murrine-wide" { + xthickness = 6 + ythickness = 6 +} + +style "murrine-wider" { + xthickness = 10 + ythickness = 10 +} + +style "murrine-thin" { + xthickness = 1 + ythickness = 1 +} + +# Notebook + +style "clearlooks-notebook-bg" { + bg[NORMAL] = @bg_color + bg[ACTIVE] = shade (0.80, @bg_color) +} + +style "clearlooks-notebook" = "clearlooks-notebook-bg" { + xthickness = 8 + ythickness = 4 + + engine "clearlooks" { + radius = 0.1 + } +} + +# Various Standard Widgets + +style "murrine-button" = "murrine-wider" { + bg[NORMAL] = @btn_bg_color + bg[PRELIGHT] = shade (1.04, @btn_bg_color) + bg[SELECTED] = mix (0.5, @selected_bg_color, @bg_color) + bg[ACTIVE] = shade (0.95, @btn_bg_color) + bg[INSENSITIVE] = shade (0.75, @btn_bg_color) + xthickness = 10 + ythickness = 10 + #xthickness = 5 + #ythickness = 5 + + engine "murrine" { + border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) } + roundness = 6 + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + } +} + +style "murrine-buttonlabel" { + fg[NORMAL] = @btn_fg_color + fg[PRELIGHT] = @btn_fg_color + fg[SELECTED] = @btn_fg_color + fg[ACTIVE] = @btn_fg_color + fg[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color) + + text[NORMAL] = @btn_fg_color + text[PRELIGHT] = @btn_fg_color + text[SELECTED] = @btn_fg_color + text[ACTIVE] = @btn_fg_color + text[INSENSITIVE] = @btn_fg_color + text[INSENSITIVE] = mix (0.4, @btn_bg_color, @btn_fg_color) + + engine "murrine" { + } +} + +style "murrine-comboboxtext" = "murrine-buttonlabel" { + xthickness = 10 + ythickness = 10 +} + +style "murrine-togglebutton" = "murrine-buttonlabel" { + xthickness = 10 + ythickness = 10 +} + +style "murrine-radiocheck" = "murrine-togglebutton" { + text[NORMAL] = @accent_bg_color + text[PRELIGHT] = @accent_bg_color +} + +style "murrine-scrollbar" { + bg[NORMAL] = mix (0.21, @fg_color, @bg_color) + bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color) + bg[ACTIVE] = @selected_bg_color + + engine "murrine" { + roundness = 6 + contrast = 0.0 + border_shades = { 0.9, 0.9 } + trough_shades = { 0.97, 0.97 } + trough_border_shades = { 1.0, 1.0 } + } +} + +style "murrine-overlay-scrollbar" { + bg[ACTIVE] = shade (0.8, @bg_color) + bg[INSENSITIVE] = shade (0.97, @bg_color) + + base[SELECTED] = shade (0.6, @bg_color) + base[INSENSITIVE] = shade (0.85, @bg_color) +} + +style "murrine-scale" = "murrine-thin" { + bg[NORMAL] = @btn_bg_color + bg[ACTIVE] = mix(0.2, @fg_color, @bg_color) + bg[SELECTED] = @selected_bg_color + bg[INSENSITIVE] = mix(0.95, @bg_color, @btn_bg_color) + + engine "murrine" { + roundness = 25 + #roundness = 6 + gradient_shades = { 1.08, 1.08, 1.08, 1.08 } + #border_shades = { 0.5, 0.5 } + border_colors = { mix(0.25, @btn_fg_color, @btn_bg_color), mix(0.25, @btn_fg_color, @btn_bg_color) } + #trough_shades = { 1.08, 1.08 } + trough_border_shades = { 0.8, 0.8 } + } +} + +style "murrine-progressbar" = "murrine-thin" { + bg[NORMAL] = @bg_color + bg[ACTIVE] = mix(0.08, @bg_color, @base_color) + + fg[PRELIGHT] = @selected_fg_color + + engine "murrine" { + roundness = 6 + border_shades = { 1.2, 1.2 } + trough_border_shades = { 0.8, 0.8 } + } +} + +style "murrine-treeview-header" = "murrine-button" { + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix(0.20, @bg_color, @fg_color) + engine "murrine" { + roundness = 0 + } +} + +style "murrine-treeview" { + engine "murrine" { + roundness = 0 + } +} + +style "murrine-frame" = "murrine-wide" { + bg[NORMAL] = mix(0.08, @fg_color, @bg_color) +} + +style "murrine-frame-title" { + fg[NORMAL] = lighter (@fg_color) +} + +style "murrine-tooltips" { + xthickness = 10 + ythickness = 10 + + bg[NORMAL] = @tooltip_bg_color + bg[SELECTED] = @tooltip_bg_color + + fg[NORMAL] = @tooltip_fg_color + + engine "murrine" { + textstyle = 0 + roundness = 6 + rgba = FALSE + } +} + +style "murrine-spinbutton" = "murrine-button" { + xthickness = 10 + ythickness = 10 + engine "murrine" { + } +} + +style "clearlooks-radiocheck" = "murrine-default" { + bg[SELECTED] = @base_color + bg[PRELIGHT] = @bg_color + + text[NORMAL] = @accent_bg_color + text[PRELIGHT] = @accent_bg_color + + engine "clearlooks" { + radius = 6.0 + } +} + +style "clearlooks-base-radiocheck" = "clearlooks-radiocheck" { + bg[PRELIGHT] = @bg_color +} + +style "clearlooks-radiocheck-label" = "clearlooks-radiocheck" { + fg[NORMAL] = @fg_color + fg[PRELIGHT] = @fg_color + fg[SELECTED] = @fg_color + fg[ACTIVE] = @fg_color + fg[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) +} + +style "murrine-entry" = "murrine-wider" { + text[NORMAL] = @text_color + text[PRELIGHT] = @text_color + text[SELECTED] = @text_color + text[ACTIVE] = @text_color + text[INSENSITIVE] = mix (0.5, @base_color, @text_color) + + xthickness = 10 + ythickness = 10 + engine "murrine" { + #border_shades = { 1.15, 1.15 } + border_colors = { mix(0.22, @text_color, @base_color), mix(0.22, @text_color, @base_color) } + roundness = 6 + } +} + +style "metacity-frame" = "murrine-default" { + bg[SELECTED] = @selected_bg_color +} + +style "murrine-statusbar" { } +style "murrine-comboboxentry" = "murrine-entry" { } +style "murrine-hscale" = "murrine-scale" { } +style "murrine-vscale" = "murrine-scale" { } +style "murrine-hscrollbar" = "murrine-scrollbar" { } +style "murrine-vscrollbar" = "murrine-scrollbar" { } + +# Menus + +style "murrine-menu" = "murrine-thin" { + bg[NORMAL] = @menu_bg_color + bg[PRELIGHT] = @selected_bg_color + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = @menu_bg_color + bg[INSENSITIVE] = @menu_bg_color + + fg[NORMAL] = @menu_fg_color + fg[PRELIGHT] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + text[NORMAL] = @menu_fg_color + text[PRELIGHT] = @selected_fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @selected_fg_color + text[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +style "murrine-menu-item" = "murrine-wider" { + bg[PRELIGHT] = @selected_bg_color + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = @selected_bg_color + + fg[NORMAL] = @menu_fg_color # Fix for XFCE menu text + fg[PRELIGHT] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @selected_fg_color + fg[INSENSITIVE] = mix (0.5, @menu_bg_color, @menu_fg_color) + + engine "murrine" { + textstyle = 0 + border_shades = { 1.2, 1.2 } + } +} + +style "murrine-separator-menu-item" = "murrine-thin" { } + +style "murrine-menubar" { + bg[NORMAL] = @menubar_bg_color + bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[ACTIVE] = shade (0.9, @menubar_bg_color) + bg[INSENSITIVE] = @menubar_bg_color + + fg[NORMAL] = @menubar_fg_color + fg[PRELIGHT] = shade (1.08, @menubar_fg_color) + fg[SELECTED] = shade (1.08, @menubar_fg_color) + fg[ACTIVE] = @menubar_fg_color + fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +style "murrine-menubaritem" { + bg[NORMAL] = @menubar_bg_color + bg[PRELIGHT] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[SELECTED] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[ACTIVE] = shade (0.9, @menubar_bg_color) + bg[INSENSITIVE] = @menubar_bg_color + + fg[NORMAL] = @menubar_fg_color + fg[PRELIGHT] = shade (1.08, @menubar_fg_color) + fg[SELECTED] = shade (1.08, @menubar_fg_color) + fg[ACTIVE] = @menubar_fg_color + fg[INSENSITIVE] = mix (0.5, @menubar_bg_color, @menubar_fg_color) + + engine "murrine" { + roundness = 0 + } +} + +# Toolbars + +style "murrine-toolbar" = "murrine-thin" { + bg[NORMAL] = @toolbar_bg_color + bg[PRELIGHT] = shade (1.02, @toolbar_bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.9, @toolbar_bg_color) + bg[INSENSITIVE] = @toolbar_bg_color + + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +style "murrine-toolbutton" = "murrine-button" { + bg[NORMAL] = shade (1.08, @toolbar_bg_color) + bg[PRELIGHT] = shade (1.10, @toolbar_bg_color) + bg[SELECTED] = @selected_bg_color + bg[ACTIVE] = shade (0.95, @toolbar_bg_color) + bg[INSENSITIVE] = shade (0.85, @toolbar_bg_color) + + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +style "murrine-toolbutton-label" = "murrine-toolbutton" { + fg[NORMAL] = @toolbar_fg_color + fg[PRELIGHT] = @toolbar_fg_color + fg[SELECTED] = @selected_fg_color + fg[ACTIVE] = @toolbar_fg_color + fg[INSENSITIVE] = mix (0.5, @toolbar_bg_color, @toolbar_fg_color) + + engine "murrine" { + } +} + +class "GtkToolbar" style "murrine-toolbar" +class "GtkHandleBox" style "murrine-toolbar" +widget_class "*Toolbar*.*Separator*" style "murrine-toolbar" + +# Panels + +style "murrine-panel" = "murrine-thin" { + xthickness = 2 + + bg[NORMAL] = @panel_bg_color + bg[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color) + bg[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color) + bg[ACTIVE] = shade (0.8, @panel_bg_color) + bg[INSENSITIVE] = @panel_bg_color + + fg[NORMAL] = @panel_fg_color + fg[PRELIGHT] = shade (1.08, @panel_fg_color) + fg[SELECTED] = shade (1.08, @panel_fg_color) + fg[ACTIVE] = @panel_fg_color + fg[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color) + + base[NORMAL] = @panel_bg_color + base[PRELIGHT] = mix (0.21, @panel_fg_color, @panel_bg_color) + base[SELECTED] = mix (0.21, @panel_fg_color, @panel_bg_color) + base[ACTIVE] = shade (0.9, @panel_bg_color) + base[INSENSITIVE] = @panel_bg_color + + text[NORMAL] = @panel_fg_color + text[PRELIGHT] = shade (1.08, @panel_fg_color) + text[SELECTED] = shade (1.08, @panel_fg_color) + text[ACTIVE] = @panel_fg_color + text[INSENSITIVE] = mix (0.5, @panel_bg_color, @panel_fg_color) + + engine "murrine" { + roundness = 0 + contrast = 0.0 + } +} + +widget "*PanelWidget*" style "murrine-panel" +widget "*PanelApplet*" style "murrine-panel" +widget "*fast-user-switch*" style "murrine-panel" +widget "*CPUFreq*Applet*" style "murrine-panel" +widget "*indicator-applet*" style "murrine-panel" +class "PanelApp*" style "murrine-panel" +class "PanelToplevel*" style "murrine-panel" +widget_class "*PanelToplevel*" style "murrine-panel" +widget_class "*notif*" style "murrine-panel" +widget_class "*Notif*" style "murrine-panel" +widget_class "*Tray*" style "murrine-panel" +widget_class "*tray*" style "murrine-panel" +widget_class "*computertemp*" style "murrine-panel" +widget_class "*Applet*Tomboy*" style "murrine-panel" +widget_class "*Applet*Netstatus*" style "murrine-panel" +widget "*gdm-user-switch-menubar*" style "murrine-panel" + +# LXPanel (code based on Lubuntu-default theme's gtkrc file) +widget "*.tclock.*" style "murrine-panel" +widget "*.taskbar.*" style "murrine-panel" +widget_class "*GtkBgbox*" style "murrine-panel" + +style "bold-panel-item" { + font_name = "Bold" + + engine "murrine" { + roundness = 0 + } +} + +widget "*Panel*MenuBar*" style "bold-panel-item" +widget "*gimmie*" style "bold-panel-item" + +# widget_class "*Mail*" style "murrine-panel" # Disabled to fix Evolution bug +# class "*Panel*" style "murrine-panel" # Disabled to fix bug + +# XFCE Styles + +style "workspace-switcher" = "murrine-panel" { + bg[ACTIVE] = @selected_bg_color + bg[SELECTED] = @selected_bg_color +} + +style "xfce-header" { + bg[NORMAL] = shade (0.9, @bg_color) + base[NORMAL] = shade (1.18, @bg_color) +} + +style "xfdesktop-windowlist" { + bg[NORMAL] = @base_color + fg[INSENSITIVE] = shade (0.95, @base_color) + text[INSENSITIVE] = shade (0.95, @base_color) +} + +style "xfdesktop-icon-view" { + XfdesktopIconView::label-alpha = 0 + XfdesktopIconView::selected-label-alpha = 60 + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = @fg_color + XfdesktopIconView::selected-shadow-color = @fg_color + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 + + fg[NORMAL] = @bg_color + fg[ACTIVE] = @bg_color + +} + +style "xfwm-tabwin" { + Xfwm4TabwinWidget::border-width = 1 + Xfwm4TabwinWidget::border-alpha = 1.0 + Xfwm4TabwinWidget::icon-size = 64 + Xfwm4TabwinWidget::alpha = 1.0 + Xfwm4TabwinWidget::border-radius = 2 + + bg[NORMAL] = @menu_bg_color + bg[SELECTED] = @menu_bg_color + + fg[NORMAL] = @menu_fg_color + + engine "murrine" { + contrast = 0.0 + border_shades = { 0.9, 0.9 } + } +} + +style "xfwm-tabwin-button" { + font_name = "bold" + + bg[SELECTED] = @selected_bg_color +} + +style "xfsm-logout" { + bg[NORMAL] = @menu_bg_color + bg[ACTIVE] = @menu_bg_color + bg[PRELIGHT] = shade (1.1, @menu_bg_color) + bg[SELECTED] = shade (0.5, @menu_bg_color) + bg[INSENSITIVE] = shade (1.3, @menu_bg_color) + + fg[NORMAL] = @menu_fg_color + fg[PRELIGHT] = @menu_fg_color + + text[NORMAL] = @menu_fg_color + + engine "murrine" { + } +} + +style "xfsm-logout-button" { + bg[NORMAL] = shade (1.2, @menu_bg_color) + bg[PRELIGHT] = shade (1.4, @menu_bg_color) + + engine "murrine" { + } +} + +widget "*Pager*" style "workspace-switcher" + +widget "*Xfce*Panel*" style "murrine-panel" +class "*Xfce*Panel*" style "murrine-panel" + +# Thunar Styles + +style "sidepane" { + base[NORMAL] = @bg_color + base[INSENSITIVE] = mix (0.4, shade (1.35, @selected_bg_color), shade (0.9, @base_color)) + bg[NORMAL] = @bg_color + text[NORMAL] = mix (0.9, @fg_color, @bg_color) +} + +widget_class "*ThunarShortcutsView*" style "sidepane" +widget_class "*ThunarTreeView*" style "sidepane" +widget_class "*ThunarLocationEntry*" style "murrine-entry" + +style "whiskermenu" { + bg[NORMAL] = @menu_bg_color + bg[ACTIVE] = mix (0.21, @menubar_fg_color, @menubar_bg_color) + bg[PRELIGHT] = @selected_bg_color + + fg[NORMAL] = @menu_fg_color + fg[ACTIVE] = @menu_fg_color + fg[PRELIGHT] = @menu_fg_color +} + +style "whiskermenu-scrollbar" = "murrine-scrollbar" { + bg[NORMAL] = mix (0.21, @fg_color, @bg_color) + bg[PRELIGHT] = mix (0.31, @fg_color, @bg_color) + bg[ACTIVE] = @selected_bg_color + + engine "murrine" { + trough_shades = { 4.97, 4.97 } + trough_border_shades = { 5.0, 5.0 } + } +} + +widget "whiskermenu-window*" style "whiskermenu" +widget "*whisker*GtkVScrollbar" style "whiskermenu-scrollbar" + +# Gtk2 Open-File Dialog + +widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.GtkTreeView*" style "sidepane" +widget_class "*GtkFileChooserWidget.GtkFileChooserDefault.GtkVBox.GtkHPaned.GtkVBox.GtkScrolledWindow.." style "murrine-treeview-header" + +# Google Chrome/Chromium Styles (requires 9.0.597 or newer) + +style "chromium-toolbar-button" { + engine "murrine" { + roundness = 6 + textstyle = 0 + } +} + +style "chrome-gtk-frame" { + ChromeGtkFrame::frame-color = @titlebar_bg_color + ChromeGtkFrame::inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::frame-gradient-size = 0 + ChromeGtkFrame::frame-gradient-color = @titlebar_bg_color + + ChromeGtkFrame::incognito-frame-color = @titlebar_bg_color + ChromeGtkFrame::incognito-inactive-frame-color = @titlebar_bg_color + + ChromeGtkFrame::incognito-frame-gradient-size = 0 + ChromeGtkFrame::incognito-frame-gradient-color = @titlebar_bg_color + + ChromeGtkFrame::scrollbar-trough-color = @bg_color + ChromeGtkFrame::scrollbar-slider-normal-color = mix (0.21, @fg_color, @bg_color) + ChromeGtkFrame::scrollbar-slider-prelight-color = mix (0.31, @fg_color, @bg_color) +} + +class "ChromeGtkFrame" style "chrome-gtk-frame" + +widget_class "*Chrom*Button*" style "chromium-toolbar-button" + +# General Styles + +class "GtkWidget" style "murrine-default" + +class "GtkFrame" style "murrine-frame" +class "MetaFrames" style "metacity-frame" +class "GtkWindow" style "metacity-frame" + +class "GtkSeparator" style "murrine-wide" +class "GtkCalendar" style "murrine-wide" + +class "GtkSpinButton" style "murrine-spinbutton" + +class "GtkScale" style "murrine-scale" +class "GtkVScale" style "murrine-vscale" +class "GtkHScale" style "murrine-hscale" +class "GtkScrollbar" style "murrine-scrollbar" +class "GtkVScrollbar" style "murrine-vscrollbar" +class "GtkHScrollbar" style "murrine-hscrollbar" + +class "GtkEntry" style "murrine-entry" + +widget_class "*" style "clearlooks-notebook" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "**" style "clearlooks-notebook-bg" +widget_class "*.GtkNotebook.*.GtkViewport" style "clearlooks-notebook" + +widget_class "*" style "murrine-button" +widget_class "**" style "murrine-statusbar" +widget_class "*" style "murrine-progressbar" +widget_class "*" style "murrine-progressbar" + +widget_class "**" style "murrine-comboboxentry" +widget_class "**" style "murrine-comboboxentry" + +widget_class "**" style "murrine-menu" +widget_class "**" style "murrine-menu-item" +widget_class "**" style "murrine-separator-menu-item" +widget_class "*Menu*.*Sepa*" style "murrine-separator-menu-item" +widget_class "**" style "murrine-menubar" +widget_class "***" style "murrine-menubaritem" + +widget_class "*GtkToolButton*" style "murrine-toolbutton" +widget_class "*GtkToggleToolButton*" style "murrine-toolbutton" +widget_class "*GtkMenuToolButton*" style "murrine-toolbutton" +widget_class "*GtkToolbar*Button" style "murrine-toolbutton" + +widget_class "*.." style "murrine-frame-title" + +widget_class "*.*" style "murrine-treeview" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" +widget_class "*.." style "murrine-treeview-header" + +widget_class "*." style "clearlooks-radiocheck" +widget_class "*.*." style "clearlooks-base-radiocheck" +widget_class "*" style "clearlooks-base-radiocheck" + +widget "gtk-tooltip*" style "murrine-tooltips" + +widget_class "**" style "murrine-overlay-scrollbar" + +# Workarounds and Non-Standard Styling + +style "text-is-fg-color-workaround" { + text[NORMAL] = @text_color + text[PRELIGHT] = @fg_color + text[SELECTED] = @selected_fg_color + text[ACTIVE] = @fg_color + text[INSENSITIVE] = mix (0.5, @bg_color, @fg_color) +} + +widget_class "*.." style "text-is-fg-color-workaround" + +style "fg-is-text-color-workaround" { + fg[NORMAL] = @text_color + fg[PRELIGHT] = @text_color + fg[ACTIVE] = @selected_fg_color + fg[SELECTED] = @selected_fg_color + fg[INSENSITIVE] = darker (@fg_color) +} + +widget_class "**" style "fg-is-text-color-workaround" +widget_class "*" style "fg-is-text-color-workaround" +widget_class "*" style "fg-is-text-color-workaround" + +style "murrine-evo-new-button-workaround" { + engine "murrine" { + toolbarstyle = 0 + } +} + +widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "murrine-evo-new-button-workaround" + +style "inkscape-toolbar-fix" { + engine "murrine" { + gradient_shades = { 1.0, 1.0, 1.0, 1.0 } + highlight_shade = 1.0 + } +} + +#widget "*GtkHandleBox*" style "inkscape-toolbar-fix" +#widget "*HandleBox*CommandsToolbar*" style "inkscape-toolbar-fix" +#widget "*HandleBox*SnapToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*SelectToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*NodeToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*TweakToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ZoomToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*StarToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*RectToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*3DBoxToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ArcToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*SpiralToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PencilToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PenToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*CalligraphyToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*EraserToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*LPEToolToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*DropperToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*ConnectorToolbar*" style "inkscape-toolbar-fix" +widget "*HandleBox*PaintbucketToolbar*" style "inkscape-toolbar-fix" + + + + +style "gimp-default-style" { +# Uncommenting this line allows to set a different (smaller) font for GIMP. +# +# font_name = "sans 8" +# Enabling the following line for some reason breaks toolbox resize +# increment calculation. You can enable it to get an even smaller GUI +# but need to restart GIMP after the theme change. +# +# GtkWidget::focus-padding = 0 + GtkOptionMenu::indicator-size = { 15, 25 } + GtkOptionMenu::indicator-spacing = { 10, 8, 4, 4 } + GtkPaned::handle-size = 5 + GimpDockWindow::default-height = 600 + GimpDock::font-scale = 1.0 + GimpMenuDock::minimal-width = 400 + GimpToolPalette::tool-icon-size = large-toolbar + GimpToolPalette::button-relief = none + GimpDockbook::tab-border = 0 + GimpDockbook::tab-icon-size = button + GimpColorNotebook::tab-border = 0 + GimpColorNotebook::tab-icon-size = button + GimpDeviceEditor::handle-size = 30 + GimpDockable::content-border = 1 + GimpEditor::content-spacing = 1 + GimpEditor::button-spacing = 1 + GimpEditor::button-icon-size = button + GimpDataEditor::minimal-height = 150 + GimpFrame::label-spacing = 5 + GtkDialog::content-area-border = 2 + GtkDialog::button-spacing = 20 + GtkDialog::action-area-border = 25 + GimpUnitComboBox::appears-as-list = 0 +} + +class "GtkWidget" style "gimp-default-style" +style "gimp-tool-dialog-style" = "gimp-default-style" +{ + GtkDialog::action-area-border = 6 +} +class "GimpToolDialog" style "gimp-tool-dialog-style" +style "gimp-grid-view-style" = "gimp-default-style" +{ + bg[NORMAL] = { 1.0, 1.0, 1.0 } +} +widget "*GimpContainerGridView*GtkViewport*" style "gimp-grid-view-style" +style "gimp-dockable-style" = "gimp-default-style" +{ + GimpFrame::label-bold = 0 + GtkButton::focus-line_width = 1 + GtkButton::focus-padding = 0 +} +widget "*GimpDockable.*" style "gimp-dockable-style" +style "gimp-display-style" = "gimp-default-style" +{ + GimpRuler::font-scale = 1.0 + GimpUnitComboBox::label-scale = 1.0 + GimpScaleComboBox::label-scale = 1.0 + GtkComboBox::arrow-size = 20 + GtkButton::inner-border = { 0, 0, 0, 0 } + GtkButton::focus-line-width = 0 + GtkButton::focus-padding = 0 +} +widget "*GimpDisplayShell.*" style "gimp-display-style" +style "gimp-overlay-style" = "gimp-display-style" +{ + GtkButton::focus-line_width = 2 +} +widget_class "**" style "gimp-overlay-style" + + + + +# Performance Fixes + +style "performance-fix" { + engine "murrine" { + textstyle = 0 + } +} + +widget_class "*gtkmm__GtkWindow*" style "performance-fix" # Inkscape +widget_class "*GimpDisplayShell*" style "performance-fix" # Gimp +widget_class "*GimpToolbox*" style "performance-fix" +widget_class "*GimpMenuDock*" style "performance-fix" +widget "*OOoFixed*" style "performance-fix" # Openoffice/Libreoffice +widget_class "*MozContainer*" style "performance-fix" # Firefox (Not sure if this one does anything though.) + +widget_class "*XfceHeading*" style "xfce-header" +widget_class "*XfceDesktop*" style "xfdesktop-windowlist" +widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" +widget "xfwm4-tabwin*" style "xfwm-tabwin" +widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" +widget_class "*XfsmLogoutDialog*" style "xfsm-logout" +widget_class "*XfsmLogoutDialog*GtkButton" style "xfsm-logout-button" + + +# button fg workarounds: +widget_class "*.." style "murrine-buttonlabel" +widget_class "***" style:highest "murrine-buttonlabel" +widget_class "***" style:highest "clearlooks-radiocheck-label" +widget_class "**" style "murrine-comboboxtext" +widget_class "**" style "murrine-togglebutton" +widget_class "*." style "murrine-radiocheck" +widget_class "***" style:highest "murrine-entry" +widget_class "****" style:highest "murrine-toolbutton-label" diff --git a/themes/blueleaves/gtk/theme/gtk-3.0/gtk-dark.css b/themes/blueleaves/gtk/theme/gtk-3.0/gtk-dark.css new file mode 100644 index 0000000..008939b --- /dev/null +++ b/themes/blueleaves/gtk/theme/gtk-3.0/gtk-dark.css @@ -0,0 +1 @@ +@import url("resource:///org/gnome/arc-theme/gtk-main-dark.css"); diff --git a/themes/blueleaves/gtk/theme/gtk-3.0/gtk.css b/themes/blueleaves/gtk/theme/gtk-3.0/gtk.css new file mode 100644 index 0000000..41cc653 --- /dev/null +++ b/themes/blueleaves/gtk/theme/gtk-3.0/gtk.css @@ -0,0 +1 @@ +@import url("resource:///org/gnome/arc-theme/gtk-main.css"); diff --git a/themes/blueleaves/gtk/theme/gtk-3.0/gtk.gresource b/themes/blueleaves/gtk/theme/gtk-3.0/gtk.gresource new file mode 100644 index 0000000..4e01031 Binary files /dev/null and b/themes/blueleaves/gtk/theme/gtk-3.0/gtk.gresource differ diff --git a/themes/blueleaves/gtk/theme/gtk-3.0/thumbnail.png b/themes/blueleaves/gtk/theme/gtk-3.0/thumbnail.png new file mode 100644 index 0000000..322bba6 Binary files /dev/null and b/themes/blueleaves/gtk/theme/gtk-3.0/thumbnail.png differ diff --git a/themes/blueleaves/gtk/theme/index.theme b/themes/blueleaves/gtk/theme/index.theme new file mode 100644 index 0000000..83f6bf1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/index.theme @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=X-GNOME-Metatheme +Name=Valyrian-Molten-Steel +Comment=A flat theme with transparent elements +Encoding=UTF-8 + +[X-GNOME-Metatheme] +GtkTheme=Valyrian-Molten-Steel +MetacityTheme=Valyrian-Molten-Steel +IconTheme=gnome +CursorTheme=DMZ-Black +ButtonLayout=menu:minimize,maximize,close diff --git a/themes/blueleaves/gtk/theme/metacity-1/button-bg.svg b/themes/blueleaves/gtk/theme/metacity-1/button-bg.svg new file mode 100644 index 0000000..83251f7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/button-bg.svg @@ -0,0 +1,105 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/metacity-1/button-border.svg b/themes/blueleaves/gtk/theme/metacity-1/button-border.svg new file mode 100644 index 0000000..289bfd6 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/button-border.svg @@ -0,0 +1,107 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/metacity-1/close-icon.svg b/themes/blueleaves/gtk/theme/metacity-1/close-icon.svg new file mode 100644 index 0000000..0e4af09 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/close-icon.svg @@ -0,0 +1,104 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/metacity-1/max-icon.svg b/themes/blueleaves/gtk/theme/metacity-1/max-icon.svg new file mode 100644 index 0000000..6b80028 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/max-icon.svg @@ -0,0 +1,75 @@ + +image/svg+xml \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-1.xml b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-1.xml new file mode 100644 index 0000000..ef9c7c5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-1.xml @@ -0,0 +1,764 @@ + + + + Valyrian-Molten-Steel + rtl88 + rtl88 + 2022 + horst3180 + Valyrian-Molten-Steel Metacity theme + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-2.xml b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-2.xml new file mode 100644 index 0000000..b4a362d --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-2.xml @@ -0,0 +1,763 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Valyrian-Molten-Steel</name> + <author>rtl88</author> + <copyright>rtl88</copyright> + <date>2022</date> + <Arc Creator>horst3180</Arc Creator> + <description>Valyrian-Molten-Steel Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="#afb8c6" /> +<constant name="C_title_unfocused" value="#8a939f" /> + +<constant name="C_wm_bg_focused" value="#0b1721" /> +<constant name="C_wm_bg_unfocused" value="#0b1721" /> + +<constant name="C_wm_highlight" value="#353a48" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="#b5735c" /> +<constant name="C_button_close_bg_hover" value="#c5836c" /> +<constant name="C_button_close_bg_active" value="#a5634c" /> + +<constant name="C_icon_close_bg" value="#0b1721" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="#c8dbec" /> +<constant name="C_button_bg_active" value="#bf562f" /> + +<constant name="C_button_border_hover" value="#0b1823" /> + +<constant name="C_icon_bg_focused" value="#c8dbec" /> +<constant name="C_icon_bg_unfocused" value="#98aab9" /> +<constant name="C_icon_bg_hover" value="#98aab9" /> +<constant name="C_icon_bg_active" value="#bf562f" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="3" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="3" right="3" top="0" bottom="0"/> + <aspect_ratio name="button" value="1.0" /> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title x="(0 `max` ((width - title_width) / 2)) + 2" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused"/> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="borderless"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> + +</metacity_theme> diff --git a/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-3.xml b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-3.xml new file mode 100644 index 0000000..3251484 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/metacity-theme-3.xml @@ -0,0 +1,1016 @@ +<?xml version="1.0"?> +<metacity_theme> +<info> + <name>Valyrian-Molten-Steel</name> + <author>rtl88</author> + <copyright>rtl88</copyright> + <date>2022</date> + <Arc Creator>horst3180</Arc Creator> + <description>Valyrian-Molten-Steel Metacity theme</description> +</info> + +<!-- meaningfull constants --> + +<constant name="C_title_focused" value="gtk:custom(wm_title,#70788d)" /> +<constant name="C_title_unfocused" value="gtk:custom(wm_unfocused_title,#979dac)" /> + +<constant name="C_wm_bg_focused" value="gtk:custom(wm_bg,#0b1721)" /> +<constant name="C_wm_bg_unfocused" value="gtk:custom(wm_bg,#0b1721)" /> + +<constant name="C_wm_highlight" value="gtk:custom(wm_highlight,#eeeff1)" /> + +<!-- window button colors --> + +<!-- close --> +<constant name="C_button_close_bg_focused" value="gtk:custom(wm_button_close_bg,#b5735c)" /> +<constant name="C_button_close_bg_hover" value="gtk:custom(wm_button_close_hover_bg,#c5836c)" /> +<constant name="C_button_close_bg_active" value="gtk:custom(wm_button_close_active_bg,#a5634c)" /> + +<constant name="C_icon_close_bg" value="gtk:custom(wm_icon_close_bg,#c8dbec)" /> + +<!-- minimize, maximize --> +<constant name="C_button_bg_hover" value="gtk:custom(wm_button_hover_bg,#c8dbec)" /> +<constant name="C_button_bg_active" value="gtk:custom(wm_button_active_bg,#bf562f)" /> + +<constant name="C_button_border_hover" value="gtk:custom(wm_button_hover_border,#c8dbec)" /> + +<constant name="C_icon_bg_focused" value="gtk:custom(wm_icon_bg,#c8dbec)" /> +<constant name="C_icon_bg_unfocused" value="gtk:custom(wm_icon_unfocused_bg,#98aab9)" /> +<constant name="C_icon_bg_hover" value="gtk:custom(wm_icon_hover_bg,#98aab9)" /> +<constant name="C_icon_bg_active" value="gtk:custom(wm_icon_active_bg,#0e1b28)" /> + +<!-- geometries --> + +<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="left_titlebar_edge" value="2"/> + <distance name="right_titlebar_edge" value="2"/> + <distance name="title_vertical_pad" value="3"/> + <border name="title_border" left="10" right="10" top="3" bottom="3"/> + <border name="button_border" left="0" right="0" top="0" bottom="0"/> + <distance name="button_width" value="30"/> + <distance name="button_height" value="16"/> +</frame_geometry> + +<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> +</frame_geometry> + +<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="left_titlebar_edge" value="0"/> + <distance name="right_titlebar_edge" value="0"/> + <distance name="title_vertical_pad" value="2"/> <!-- + This needs to be 1 less then the + title_vertical_pad on normal state + or you'll have bigger buttons --> + <distance name="bottom_height" value="0" /> +</frame_geometry> + +<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="1" parent="normal"> + <distance name="right_width" value="0" /> +</frame_geometry> + +<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="1" rounded_top_right="false" parent="normal"> + <distance name="left_width" value="0" /> +</frame_geometry> + +<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> + <distance name="title_vertical_pad" value="7"/> + <distance name="left_titlebar_edge" value="1"/> + <distance name="right_titlebar_edge" value="1"/> + <border name="title_border" left="10" right="10" top="0" bottom="1"/> +</frame_geometry> + +<frame_geometry name="small_unfocused" parent="small"> +</frame_geometry> + +<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="1" /> + <distance name="right_width" value="1" /> + <distance name="bottom_height" value="1" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="title_vertical_pad" value="1" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > + <distance name="left_width" value="0" /> + <distance name="right_width" value="0" /> + <distance name="bottom_height" value="0" /> + <distance name="title_vertical_pad" value="0" /> + <border name="title_border" left="10" right="10" top="0" bottom="0" /> + <distance name="button_height" value="0"/> +</frame_geometry> + +<frame_geometry name="modal" title_scale="small" hide_buttons="false" rounded_top_left="1" rounded_top_right="1" parent="small"> + <distance name="title_vertical_pad" value="5"/> +</frame_geometry> + +<frame_geometry name="attached" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> +</frame_geometry> + +<!-- drawing operations --> + + <!-- title --> + +<draw_ops name="title_focused"> + + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_focused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_focused" /> +</draw_ops> + +<draw_ops name="title_unfocused"> + <title version="< 3.1" + x="(0 `max` ((width - title_width) / 2))" + y="(0 `max` ((height - title_height) / 2)) + 1" + color="C_title_unfocused" /> + <title version=">= 3.1" + x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" + y="(0 `max` ((height - title_height) / 2)) + 1" + ellipsize_width="width" + color="C_title_unfocused" /> +</draw_ops> + + <!-- window decorations --> + +<draw_ops name="entire_background_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="entire_background_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> + <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> +</draw_ops> + +<draw_ops name="titlebar_max"> + +</draw_ops> + +<draw_ops name="titlebar_small_focused"> + +</draw_ops> + +<draw_ops name="titlebar_small_unfocused"> + +</draw_ops> + +<draw_ops name="border_focused"> + <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + +<draw_ops name="border_unfocused"> + <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> +</draw_ops> + + +<!--close--> +<draw_ops name="close_focused"> + <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused"> + <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="close_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--maximize--> +<draw_ops name="maximize_focused"> + <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused"> + <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="maximize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<!--minimize--> +<draw_ops name="minimize_focused"> + <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_focused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused"> + <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_prelight"> + <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + +<draw_ops name="minimize_unfocused_pressed"> + <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> + <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> +</draw_ops> + + +<!--Todo--> +<draw_ops name="menu_focused"></draw_ops> +<draw_ops name="menu_focused_pressed"></draw_ops> +<draw_ops name="menu_unfocused"></draw_ops> +<draw_ops name="menu_unfocused_prelight"></draw_ops> +<draw_ops name="menu_unfocused_pressed"></draw_ops> +<draw_ops name="shade_focused"></draw_ops> +<draw_ops name="shade_focused_pressed"></draw_ops> +<draw_ops name="shade_unfocused"></draw_ops> +<draw_ops name="shade_unfocused_prelight"></draw_ops> +<draw_ops name="shade_unfocused_pressed"></draw_ops> + +<!-- frame styles --> + +<frame_style name="normal_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_unfocused" geometry="normal_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_focused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="normal_max_shaded_unfocused" geometry="max"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_max" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_focused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="dialog_unfocused" geometry="normal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_focused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="modal_dialog_unfocused" geometry="modal"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_focused" geometry="small"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_small_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="utility_unfocused" geometry="small_unfocused"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_focused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="border_unfocused" geometry="border"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="borderless" geometry="borderless"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_focused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <piece position="overlay" draw_ops="border_focused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="attached_unfocused" geometry="attached"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <piece position="overlay" draw_ops="border_unfocused" /> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_focused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_left_unfocused" geometry="tiled_left"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_focused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_focused" /> + <piece position="titlebar" draw_ops="titlebar_focused" /> + <piece position="title" draw_ops="title_focused" /> + <button function="close" state="normal" draw_ops="close_focused" /> + <button function="close" state="pressed" draw_ops="close_focused_pressed" /> + <button function="close" state="prelight" draw_ops="close_focused_prelight" /> + <button function="maximize" state="normal" draw_ops="maximize_focused" /> + <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> + <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> + <button function="minimize" state="normal" draw_ops="minimize_focused" /> + <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> + <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> + <button function="menu" state="normal" draw_ops="menu_focused" /> + <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_focused" /> + <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_focused" /> + <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<frame_style name="tiled_right_unfocused" geometry="tiled_right"> + <piece position="entire_background" draw_ops="entire_background_unfocused" /> + <piece position="titlebar" draw_ops="titlebar_unfocused" /> + <piece position="title" draw_ops="title_unfocused" /> + <button function="close" state="normal" draw_ops="close_unfocused"/> + <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> + <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> + <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> + <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> + <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> + <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> + <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> + <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> + <button function="menu" state="normal" draw_ops="menu_unfocused" /> + <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> + <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> + <button function="shade" state="normal" draw_ops="shade_unfocused" /> + <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="unshade" state="normal" draw_ops="shade_unfocused" /> + <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> + <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- placeholder for unimplementated styles--> +<frame_style name="blank" geometry="normal"> + <button function="close" state="normal"><draw_ops></draw_ops></button> + <button function="close" state="pressed"><draw_ops></draw_ops></button> + <button function="maximize" state="normal"><draw_ops></draw_ops></button> + <button function="maximize" state="pressed"><draw_ops></draw_ops></button> + <button function="minimize" state="normal"><draw_ops></draw_ops></button> + <button function="minimize" state="pressed"><draw_ops></draw_ops></button> + <button function="menu" state="normal"><draw_ops></draw_ops></button> + <button function="menu" state="pressed"><draw_ops></draw_ops></button> + <button function="shade" state="normal"><draw_ops></draw_ops></button> + <button function="shade" state="pressed"><draw_ops></draw_ops></button> + <button function="unshade" state="normal"><draw_ops></draw_ops></button> + <button function="unshade" state="pressed"><draw_ops></draw_ops></button> + <button function="above" state="normal"><draw_ops></draw_ops></button> + <button function="above" state="pressed"><draw_ops></draw_ops></button> + <button function="unabove" state="normal"><draw_ops></draw_ops></button> + <button function="unabove" state="pressed"><draw_ops></draw_ops></button> + <button function="stick" state="normal"><draw_ops></draw_ops></button> + <button function="stick" state="pressed"><draw_ops></draw_ops></button> + <button function="unstick" state="normal"><draw_ops></draw_ops></button> + <button function="unstick" state="pressed"><draw_ops></draw_ops></button> +</frame_style> + +<!-- frame style sets --> + +<frame_style_set name="normal_style_set"> + <frame focus="yes" state="normal" resize="both" style="normal_focused"/> + <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> + <frame focus="yes" state="maximized" style="normal_max_focused"/> + <frame focus="no" state="maximized" style="normal_max_unfocused"/> + <frame focus="yes" state="shaded" style="normal_focused"/> + <frame focus="no" state="shaded" style="normal_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> + <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> + <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> + <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> +</frame_style_set> + +<frame_style_set name="dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="dialog_focused"/> + <frame focus="no" state="shaded" style="dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="modal_dialog_style_set"> + <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> + <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="modal_dialog_focused"/> + <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="utility_style_set"> + <frame focus="yes" state="normal" resize="both" style="utility_focused"/> + <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="utility_focused"/> + <frame focus="no" state="shaded" style="utility_unfocused"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="border_style_set"> + <frame focus="yes" state="normal" resize="both" style="border_focused"/> + <frame focus="no" state="normal" resize="both" style="border_unfocused"/> + <frame focus="yes" state="maximized" style="borderless"/> + <frame focus="no" state="maximized" style="borderless"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + +<frame_style_set name="attached_style_set"> + <frame focus="yes" state="normal" resize="both" style="attached_focused"/> + <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> + <frame focus="yes" state="maximized" style="blank"/> + <frame focus="no" state="maximized" style="blank"/> + <frame focus="yes" state="shaded" style="blank"/> + <frame focus="no" state="shaded" style="blank"/> + <frame focus="yes" state="maximized_and_shaded" style="blank"/> + <frame focus="no" state="maximized_and_shaded" style="blank"/> +</frame_style_set> + + +<!-- windows --> + +<window type="normal" style_set="normal_style_set"/> +<window type="dialog" style_set="dialog_style_set"/> +<window type="modal_dialog" style_set="modal_dialog_style_set"/> +<window type="menu" style_set="utility_style_set"/> +<window type="utility" style_set="utility_style_set"/> +<window type="border" style_set="border_style_set"/> +<window version=">= 3.2" type="attached" style_set="attached_style_set"/> + +</metacity_theme> diff --git a/themes/blueleaves/gtk/theme/metacity-1/min-icon.svg b/themes/blueleaves/gtk/theme/metacity-1/min-icon.svg new file mode 100644 index 0000000..92920b5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/metacity-1/min-icon.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + enable-background="new 0 0 32 32" + height="16" + id="Layer_1" + version="1.1" + viewBox="0 0 16 16" + width="16" + xml:space="preserve" + inkscape:version="0.91 r13725" + sodipodi:docname="min-icon.svg"><metadata + id="metadata26"><rdf:RDF><cc:Work + rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs + id="defs24" /><sodipodi:namedview + pagecolor="#e2e2e2" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview22" + showgrid="true" + inkscape:zoom="22.627417" + inkscape:cx="6.164106" + inkscape:cy="8.4082271" + inkscape:window-x="0" + inkscape:window-y="27" + inkscape:window-maximized="1" + inkscape:current-layer="Layer_1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid + type="xygrid" + id="grid3003" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /></sodipodi:namedview><g + style="display:inline" + id="titlebutton-min" + inkscape:label="#g6247" + transform="translate(-587,185.63782)"><g + id="g7138" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"><g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75"><g + id="g4092-0-7-0" + style="display:inline" + transform="translate(58,0)" /></g><path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /></g><rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/themes/blueleaves/gtk/theme/metacity-1/thumbnail.png b/themes/blueleaves/gtk/theme/metacity-1/thumbnail.png new file mode 100644 index 0000000..02c3590 Binary files /dev/null and b/themes/blueleaves/gtk/theme/metacity-1/thumbnail.png differ diff --git a/themes/blueleaves/gtk/theme/openbox-3/close.xbm b/themes/blueleaves/gtk/theme/openbox-3/close.xbm new file mode 100644 index 0000000..0486bd9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/close.xbm @@ -0,0 +1,4 @@ +#define close_width 8 +#define close_height 8 +static unsigned char close_bits[] = { + 0x42, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0x42 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/close_hover.xbm b/themes/blueleaves/gtk/theme/openbox-3/close_hover.xbm new file mode 100644 index 0000000..4a88cff --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/close_hover.xbm @@ -0,0 +1,4 @@ +#define close_width 6 +#define close_height 6 +static unsigned char close_bits[] = { + 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/desk.xbm b/themes/blueleaves/gtk/theme/openbox-3/desk.xbm new file mode 100644 index 0000000..abca780 --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/desk.xbm @@ -0,0 +1,4 @@ +#define desk_toggled_width 8 +#define desk_toggled_height 8 +static unsigned char desk_toggled_bits[] = { + 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/desk_toggled.xbm b/themes/blueleaves/gtk/theme/openbox-3/desk_toggled.xbm new file mode 100644 index 0000000..b4b5330 --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/desk_toggled.xbm @@ -0,0 +1,4 @@ +#define desk_width 8 +#define desk_height 8 +static unsigned char desk_bits[] = { + 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/iconify.xbm b/themes/blueleaves/gtk/theme/openbox-3/iconify.xbm new file mode 100644 index 0000000..9a9743f --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/iconify.xbm @@ -0,0 +1,4 @@ +#define iconify_width 8 +#define iconify_height 8 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/iconify_hover.xbm b/themes/blueleaves/gtk/theme/openbox-3/iconify_hover.xbm new file mode 100644 index 0000000..9a9743f --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/iconify_hover.xbm @@ -0,0 +1,4 @@ +#define iconify_width 8 +#define iconify_height 8 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/max.xbm b/themes/blueleaves/gtk/theme/openbox-3/max.xbm new file mode 100644 index 0000000..88bb9bd --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/max.xbm @@ -0,0 +1,4 @@ +#define max_width 8 +#define max_height 8 +static unsigned char max_bits[] = { + 0xff, 0xff, 0xc3, 0xc3, 0xc3, 0xc3, 0xff, 0xff }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/max_toggled.xbm b/themes/blueleaves/gtk/theme/openbox-3/max_toggled.xbm new file mode 100644 index 0000000..cec3f24 --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/max_toggled.xbm @@ -0,0 +1,4 @@ +#define max_toggled_width 8 +#define max_toggled_height 8 +static unsigned char max_toggled_bits[] = { + 0xff, 0xff, 0xc3, 0xc3, 0xc3, 0xc3, 0xff, 0xff }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/shade.xbm b/themes/blueleaves/gtk/theme/openbox-3/shade.xbm new file mode 100644 index 0000000..fcacf42 --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/shade.xbm @@ -0,0 +1,4 @@ +#define shade_width 8 +#define shade_height 8 +static unsigned char shade_bits[] = { + 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/shade_toggled.xbm b/themes/blueleaves/gtk/theme/openbox-3/shade_toggled.xbm new file mode 100644 index 0000000..594201e --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/shade_toggled.xbm @@ -0,0 +1,4 @@ +#define shade_toggled_width 8 +#define shade_toggled_height 8 +static unsigned char shade_toggled_bits[] = { + 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; diff --git a/themes/blueleaves/gtk/theme/openbox-3/themerc b/themes/blueleaves/gtk/theme/openbox-3/themerc new file mode 100644 index 0000000..689501f --- /dev/null +++ b/themes/blueleaves/gtk/theme/openbox-3/themerc @@ -0,0 +1,156 @@ +# Name: Valyrian-Molten-Steel Openbox theme +# Author: rtl88 <github.com/rtlewis1/GTK/tree/VALYRIAN> +# License: CC-BY-SA-2.0 +# Base Creator: Satyajit Sahoo + +# @TODO: finish replacing the colors here + + +# Menu +menu.border.color: #c8dbec + +menu.title.bg: Solid Flat +menu.title.bg.color: #0b1721 +menu.title.bg.shadow: 0 +menu.title.text.color: #c8dbec +menu.title.text.justify: Center + +menu.items.bg: Solid Flat +menu.items.bg.color: #0b1721 +menu.items.text.color: #c8dbec +menu.items.disabled.text.color: #98aab9 + +menu.items.active.bg: Solid Flat +menu.items.active.bg.color: #bf562f +menu.items.active.text.color: #c8dbec + +menu.separator.color: #98aab9 +menu.separator.width: 1 +menu.separator.padding.width: 2 +menu.separator.padding.height: 4 + +# Window focused +window.active.title.separator.color: #0b1721 + +# Active window +window.active.border.color: #132433 + + +window.active.title.bg: flat solid +window.active.title.bg.color: #0b1721 +window.active.title.separator.color: #0b1721 +window.active.text.justify: center + +window.active.label.bg: parentrelative +window.active.label.text.color: #c8dbec + +window.active.handle.bg: flat solid +window.active.handle.bg.color: #0b1721 + +window.active.grip.bg: flat solid +window.active.grip.bg.color: #0b1721 + +window.active.button.unpressed.bg: flat solid +window.active.button.unpressed.bg.color: #0b1721 +window.active.button.unpressed.image.color: #c8dbec + +window.active.button.pressed.bg: flat solid +window.active.button.pressed.bg.color: #bf562f +window.active.button.pressed.image.color: #ffffff + +window.active.button.disabled.bg: flat solid +window.active.button.disabled.bg.color: #0b1721 +window.active.button.disabled.image.color: #98aab9 + +window.active.button.hover.bg: flat solid +window.active.button.hover.bg.color: #0b1721 +window.active.button.hover.image.color: #bf562f + +#window.active.button.toggled.bg: #bf562f +#window.active.button.toggled.image.color: #ffffff + +# Inactive window +window.inactive.border.color: #132433 + +window.inactive.title.bg: flat solid +window.inactive.title.bg.color: #0b1721 +window.inactive.title.separator.color: #0b1721 +window.inactive.text.justify: center + +window.inactive.label.bg: parentrelative +window.inactive.label.text.color: #98aab9 + +window.inactive.handle.bg: flat solid +window.inactive.handle.bg.color: #0b1721 + +window.inactive.grip.bg: flat solid +window.inactive.grip.bg.color: #0b1721 + +window.inactive.button.unpressed.bg: flat solid +window.inactive.button.unpressed.bg.color: #0b1721 +window.inactive.button.unpressed.image.color: #98aab9 + +window.inactive.button.pressed.bg: flat solid +window.inactive.button.pressed.bg.color: #bf562f +window.inactive.button.pressed.image.color: #ffffff + +window.inactive.button.disabled.bg: flat solid +window.inactive.button.disabled.bg.color: #98aab9 +window.inactive.button.disabled.image.color: #0b1721 + +window.inactive.button.hover.bg: flat solid +window.inactive.button.hover.bg.color: #0b1721 +window.inactive.button.hover.image.color: #bf562f + + +# OSD +osd.border.width: 1 +osd.border.color: #bf562f + +osd.bg: flat solid +osd.bg.color: #0b1721 +osd.label.bg: flat solid +osd.label.bg.color: #0b1721 +osd.label.text.color: #c8dbec + +# OSD +osd.bg: Solid Flat +osd.bg.color: #0b1721 +osd.bg.shadow: 0 + +osd.border.width: 2 +osd.hilight.bg: Solid Flat +osd.hilight.bg.color: #bf562f +osd.unhilight.bg: flat solid +osd.unhilight.bg.color: #112333 + +osd.button.unpressed.bg: flat border +osd.button.unpressed.bg.color: #163a59 +#osd.button.unpressed.*.border.color: #c8dbec + +osd.button.pressed.bg: flat border +osd.button.pressed.bg.color: #bf562f +#osd.button.pressed.*.border.color: #ffffff + +osd.button.focused.bg: flat solid border +osd.button.focused.bg.color: #c8dbec +#osd.button.focused.*.border.color: #112333 + +osd.button.focused.box.color: #bf562f + + +# Fonts +window.active.label.text.font:shadow=n +window.inactive.label.text.font:shadow=n +menu.items.font:shadow=n +menu.title.text.font:shadow=n + + +# Everything else +border.width: 2 +padding.width: 8 +padding.height: 2 +window.handle.width: 0 +window.client.padding.width: 0 +window.label.text.justify: center +#menu.overlap: 0 diff --git a/themes/blueleaves/gtk/theme/plank/dock.theme b/themes/blueleaves/gtk/theme/plank/dock.theme new file mode 100644 index 0000000..f1753ab --- /dev/null +++ b/themes/blueleaves/gtk/theme/plank/dock.theme @@ -0,0 +1,64 @@ +# Valyrian-Molten-Steel theme for Plank +# Author: rtl88 +# Based on: Arc theme for Plank by Horst3180 +# Adapted from the default Plank theme + +[PlankDrawingTheme] +#The roundness of the top corners. +TopRoundness=2 +#The roundness of the bottom corners. +BottomRoundness=0 +#The thickness (in pixels) of lines drawn. +LineWidth=1 +#The color (RGBA) of the outer stroke. +OuterStrokeColor=22;;26;;38;;255 +#The starting color (RGBA) of the fill gradient. +FillStartColor=53;;57;;69;;242 +#The ending color (RGBA) of the fill gradient. +FillEndColor=53;;57;;69;;242 +#The color (RGBA) of the inner stroke. +InnerStrokeColor=53;;57;;69;;0 + +[PlankDrawingDockTheme] +#The padding on the left/right dock edges, in tenths of a percent of IconSize. +HorizPadding=1 +#The padding on the top dock edge, in tenths of a percent of IconSize. +TopPadding= 1 +#The padding on the bottom dock edge, in tenths of a percent of IconSize. +BottomPadding=1 +#The padding between items on the dock, in tenths of a percent of IconSize. +ItemPadding=2 +#The size of item indicators, in tenths of a percent of IconSize. +IndicatorSize=3 +#The size of the icon-shadow behind every item, in tenths of a percent of IconSize. +IconShadowSize=0 +#The height (in percent of IconSize) to bounce an icon when the application sets urgent. +UrgentBounceHeight=1.6666666666666667 +#The height (in percent of IconSize) to bounce an icon when launching an application. +LaunchBounceHeight=0.625 +#The opacity value (0 to 1) to fade the dock to when hiding it. +FadeOpacity=1 +#The amount of time (in ms) for click animations. +ClickTime=300 +#The amount of time (in ms) to bounce an urgent icon. +UrgentBounceTime=600 +#The amount of time (in ms) to bounce an icon when launching an application. +LaunchBounceTime=600 +#The amount of time (in ms) for active window indicator animations. +ActiveTime=300 +#The amount of time (in ms) to slide icons into/out of the dock. +SlideTime=300 +#The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). +FadeTime=250 +#The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). +HideTime=150 +#The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. +GlowSize=30 +#The total time (in ms) to show the hidden-dock urgent glow. +GlowTime=10000 +#The time (in ms) of each pulse of the hidden-dock urgent glow. +GlowPulseTime=2000 +#The hue-shift (-180 to 180) of the urgent indicator color. +UrgentHueShift=150 +#The time (in ms) to move an item to its new position or its addition/removal to/from the dock. +ItemMoveTime=450 diff --git a/themes/blueleaves/gtk/theme/unity/close.svg b/themes/blueleaves/gtk/theme/unity/close.svg new file mode 100644 index 0000000..16f4d1e --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_dash.svg b/themes/blueleaves/gtk/theme/unity/close_dash.svg new file mode 100644 index 0000000..8a8db47 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_dash.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/close_dash_disabled.svg new file mode 100644 index 0000000..ec316d2 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_dash_disabled.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/close_dash_prelight.svg new file mode 100644 index 0000000..daeeecf --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_dash_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/close_dash_pressed.svg new file mode 100644 index 0000000..7badf18 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_dash_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#a5634c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_focused_normal.svg b/themes/blueleaves/gtk/theme/unity/close_focused_normal.svg new file mode 100644 index 0000000..16f4d1e --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_focused_normal.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_focused_prelight.svg b/themes/blueleaves/gtk/theme/unity/close_focused_prelight.svg new file mode 100644 index 0000000..c2da86b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_focused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_focused_pressed.svg b/themes/blueleaves/gtk/theme/unity/close_focused_pressed.svg new file mode 100644 index 0000000..4cf0307 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_focused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#a5634c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_unfocused.svg b/themes/blueleaves/gtk/theme/unity/close_unfocused.svg new file mode 100644 index 0000000..3ba0707 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_unfocused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_unfocused_prelight.svg b/themes/blueleaves/gtk/theme/unity/close_unfocused_prelight.svg new file mode 100644 index 0000000..c2da86b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_unfocused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/close_unfocused_pressed.svg b/themes/blueleaves/gtk/theme/unity/close_unfocused_pressed.svg new file mode 100644 index 0000000..4cf0307 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/close_unfocused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#a5634c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/close_dash.svg b/themes/blueleaves/gtk/theme/unity/dash/close_dash.svg new file mode 100644 index 0000000..8a8db47 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/close_dash.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3"> + <g + id="g4092-0-2-21-0-9-7" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8" /> + </g> + </g> + <g + id="g4778-2-68-8-7" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/close_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/dash/close_dash_disabled.svg new file mode 100644 index 0000000..ec316d2 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/close_dash_disabled.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/close_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/dash/close_dash_prelight.svg new file mode 100644 index 0000000..daeeecf --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/close_dash_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/close_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/dash/close_dash_pressed.svg new file mode 100644 index 0000000..7badf18 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/close_dash_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#a5634c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/maximize_dash.svg b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash.svg new file mode 100644 index 0000000..ccb70d5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_disabled.svg new file mode 100644 index 0000000..be50336 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_prelight.svg new file mode 100644 index 0000000..c92c557 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_pressed.svg new file mode 100644 index 0000000..c3a9f5d --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/maximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/minimize_dash.svg b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash.svg new file mode 100644 index 0000000..3f103a9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_disabled.svg new file mode 100644 index 0000000..af5357b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_prelight.svg new file mode 100644 index 0000000..d7fcafc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#98aab9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_pressed.svg new file mode 100644 index 0000000..8761627 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/dash/minimize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="4.8956836" + inkscape:cy="9.0696203" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#0e1b28;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_19.svg new file mode 100644 index 0000000..e909080 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#828282" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-0.75898517" + inkscape:cy="9.0594719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1275" + inkscape:window-height="630" + inkscape:window-x="49" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#0e1b28;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.90196079" + id="rect3338" + width="2" + height="17" + x="2" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_37.svg new file mode 100644 index 0000000..81d4733 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_ltr_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#828282" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="1.4637299" + inkscape:cy="12.768116" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="4" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_19.svg new file mode 100644 index 0000000..a0391ec --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="1.149139" + inkscape:cy="8.9402141" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#0e1b28;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.4" + id="rect3338" + width="2" + height="17" + x="2" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_37.svg new file mode 100644 index 0000000..7d9a43f --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_ltr_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="8.2254385" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="opacity:0.4;fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="4" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_19.svg new file mode 100644 index 0000000..6d8ba66 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_19.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-2.1423752" + inkscape:cy="8.8448079" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="opacity:0.4;fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="17" + x="6" + y="1034.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_37.svg new file mode 100644 index 0000000..a0fe093 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_outline_rtl_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_outline_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="8.2254385" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="650" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.4" + id="rect3338" + width="4" + height="33.000019" + x="12" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_19.svg new file mode 100644 index 0000000..97adadf --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="20.962996" + inkscape:cx="-4.2413119" + inkscape:cy="9.0594719" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="17" + x="6" + y="1034.3622" + ry="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_37.svg new file mode 100644 index 0000000..bbfa3d4 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_arrow_rtl_37.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_arrow_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="22.627417" + inkscape:cx="1.4637299" + inkscape:cy="5.6970486" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="33.000019" + x="12" + y="1017.3622" + ry="1.7382812e-05" + rx="1.7382812e-05" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_back_150.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_back_150.svg new file mode 100644 index 0000000..28a7d31 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_back_150.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_back_150.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:zoom="2.2250293" + inkscape:cx="36.35956" + inkscape:cy="127.34179" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2989" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_back_54.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_back_54.svg new file mode 100644 index 0000000..d69be25 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_back_54.svg @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_back_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6" /> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:zoom="17.481481" + inkscape:cx="26.660864" + inkscape:cy="43.535494" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" + inkscape:snap-bbox="true"> + <inkscape:grid + type="xygrid" + id="grid2985" /> + </sodipodi:namedview> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_150.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_150.svg new file mode 100644 index 0000000..4120531 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_150.svg @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_edge_150.svg"> + <metadata + id="metadata16"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview14" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="3.1466667" + inkscape:cx="43.369154" + inkscape:cy="69.620822" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2993" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" + id="path8" /> + </clipPath> + <clipPath + id="clipPath10"> + <rect + y="316" + x="353" + height="148" + width="148" + opacity="0.8" + fill="#ff00ff" + color="#000000" + rx="12" + id="rect12" /> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_54.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_54.svg new file mode 100644 index 0000000..f8a9801 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_edge_54.svg @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_edge_54.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:zoom="24.722548" + inkscape:cx="10.242601" + inkscape:cy="56.465656" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid3757" /> + </sodipodi:namedview> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 440,81.001953 c -1.67866,0 -2.99805,1.319387 -2.99805,2.998047 l 0,44 c 0,1.67866 1.31939,2.99805 2.99805,2.99805 l 44,0 c 1.67866,0 2.99805,-1.31939 2.99805,-2.99805 l 0,-44 c 0,-1.67866 -1.31939,-2.998047 -2.99805,-2.998047 l -44,0 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_200.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_200.svg new file mode 100644 index 0000000..01bb0d9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_200.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> + <defs> + <clipPath> + <path d="m 427.33333,22.026666 0,69.333333 69.33333,0 0,-69.333333 -69.33333,0 z m 13.11917,9.013333 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105834 l 0,43.094999 c 0,2.276228 -1.8296,4.105834 -4.10583,4.105834 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105834 l 0,-43.094999 c 0,-2.276228 1.8296,-4.105834 4.10583,-4.105834 z"/> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_62.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_62.svg new file mode 100644 index 0000000..105b068 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_glow_62.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62.000001"> + <defs> + <clipPath> + <path d="m 1,25 0,62 62,0 0,-62 -62,0 z m 9,6 44,0 c 1.662,0 3,1.338 3,3 l 0,44 c 0,1.662 -1.338,3 -3,3 L 10,81 C 8.338,81 7,79.662 7,78 L 7,34 c 0,-1.662 1.338,-3 3,-3 z"/> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_150.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_150.svg new file mode 100644 index 0000000..d99f333 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_150.svg @@ -0,0 +1,96 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_selected_back_150.svg"> + <metadata + id="metadata16"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview14" + showgrid="true" + inkscape:zoom="1.1125147" + inkscape:cx="-204.38973" + inkscape:cy="91.79881" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2993" /> + </sodipodi:namedview> + <defs + id="defs4"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4138" /> + </linearGradient> + <clipPath + id="clipPath6"> + <rect + y="1040.22" + x="505" + height="150" + width="150" + opacity="0.2" + fill-rule="evenodd" + color="#000000" + rx="42" + id="rect8" /> + </clipPath> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4140" + x1="75" + y1="1" + x2="75" + y2="148" + gradientUnits="userSpaceOnUse" /> + </defs> + <rect + style="fill:url(#linearGradient4140);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" + id="rect2995" + width="148" + height="147" + x="1" + y="1" + transform="translate(-1e-5,0)" + ry="1" /> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_54.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_54.svg new file mode 100644 index 0000000..84194dc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_selected_back_54.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_selected_back_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4136" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4138" + x1="27" + y1="1" + x2="27" + y2="52" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1366" + inkscape:window-height="718" + id="namedview4" + showgrid="true" + inkscape:zoom="8.7407407" + inkscape:cx="11.220234" + inkscape:cy="23.327385" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2985" /> + </sodipodi:namedview> + <rect + style="opacity:1;fill:url(#linearGradient4138);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" + id="rect2987" + width="52" + height="51" + x="1" + y="1" + ry="1" /> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_200.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_200.svg new file mode 100644 index 0000000..9e68b14 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_200.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> + <defs> + <clipPath> + <path d="m 489.73333,21.333331 0,69.333332 69.33333,0 0,-69.333332 -69.33333,0 z m 13.11917,9.013334 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105833 l 0,43.094999 c 0,2.276227 -1.8296,4.105833 -4.10583,4.105833 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105833 l 0,-43.094999 c 0,-2.276227 1.8296,-4.105833 4.10583,-4.105833 z"/> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_62.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_62.svg new file mode 100644 index 0000000..c6d2811 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_shadow_62.svg @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="62" + height="62" + viewBox="0 0 61.999999 62.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shadow_62.svg"> + <metadata + id="metadata12"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview10" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:zoom="10.766271" + inkscape:cx="46.152641" + inkscape:cy="12.729335" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <defs + id="defs4"> + <clipPath + id="clipPath6"> + <path + d="m 4,24 c -2.216,0 -4,1.784 -4,4 l 0,56 c 0,2.216 1.784,4 4,4 l 56,0 c 2.216,0 4,-1.784 4,-4 l 0,-56 c 0,-2.216 -1.784,-4 -4,-4 L 4,24 z m 6,6 44,0 c 2.216,0 4,1.784 4,4 l 0,44 c 0,2.216 -1.784,4 -4,4 L 10,82 C 7.784,82 6,80.216 6,78 L 6,34 c 0,-2.216 1.784,-4 4,-4 z" + id="path8" /> + </clipPath> + </defs> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_150.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_150.svg new file mode 100644 index 0000000..a456296 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_150.svg @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="150" + height="150" + viewBox="0 0 149.99998 150" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shine_150.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6" /> + <sodipodi:namedview + pagecolor="#6e6e6e" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0.90588235" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="17.800235" + inkscape:cx="26.229204" + inkscape:cy="7.3679574" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid2985" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_54.svg b/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_54.svg new file mode 100644 index 0000000..efff6c4 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_icon_shine_54.svg @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="54" + height="54" + viewBox="0 0 54 54.000001" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="launcher_icon_shine_54.svg"> + <metadata + id="metadata8"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs6"> + <linearGradient + inkscape:collect="always" + id="linearGradient3762"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop3764" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3766" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3762" + id="linearGradient3768" + x1="0" + y1="27" + x2="2.999999" + y2="27" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0,-1,1,0,0,54)" /> + </defs> + <sodipodi:namedview + pagecolor="#000000" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0.67843137" + inkscape:pageshadow="2" + inkscape:window-width="1301" + inkscape:window-height="650" + id="namedview4" + showgrid="true" + inkscape:snap-bbox="true" + inkscape:zoom="8.7407407" + inkscape:cx="27.214228" + inkscape:cy="18.946249" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <inkscape:grid + type="xygrid" + id="grid3753" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_19.svg new file mode 100644 index 0000000..8ac8790 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_19.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_ltr_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="15.178831" + inkscape:cx="2.3818874" + inkscape:cy="5.0805669" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="648" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="3.0000174" + x="2" + y="1041.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_37.svg new file mode 100644 index 0000000..0c5c35e --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_pip_ltr_37.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_ltr_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="16" + inkscape:cx="-7.5475486" + inkscape:cy="14.518805" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + rx="3.0675728e-06" + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="5.0000172" + x="4" + y="1031.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_19.svg b/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_19.svg new file mode 100644 index 0000000..78e0efd --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_19.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="10" + height="19" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_rtl_19.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="32" + inkscape:cx="0.4532629" + inkscape:cy="12.759685" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1033.3622)"> + <rect + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="2" + height="3.0000174" + x="6" + y="1041.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_37.svg b/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_37.svg new file mode 100644 index 0000000..3d44328 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/launcher_pip_rtl_37.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="20" + height="37" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + inkscape:export-filename="test.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + sodipodi:docname="launcher_pip_rtl_37.svg"> + <defs + id="defs4"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath4069"> + <rect + style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" + id="rect4071" + width="10" + height="19" + x="20" + y="1033.3622" /> + </clipPath> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#0e1b28" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="11.313709" + inkscape:cx="3.9744094" + inkscape:cy="10.722806" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + inkscape:window-width="1301" + inkscape:window-height="744" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:snap-bbox-midpoints="true" + inkscape:object-paths="true" + inkscape:snap-intersection-paths="true" + inkscape:object-nodes="true" + inkscape:snap-smooth-nodes="true" + inkscape:snap-midpoints="true" + inkscape:snap-object-midpoints="true" + inkscape:snap-text-baseline="false" + inkscape:snap-center="true" + inkscape:snap-page="true" + inkscape:snap-nodes="false"> + <inkscape:grid + type="xygrid" + id="grid4740" + empspacing="8" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + </sodipodi:namedview> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1015.3622)"> + <rect + rx="3.0675728e-06" + style="fill:#0e1b28;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="rect3338" + width="4" + height="5.0000172" + x="12" + y="1031.3622" + ry="3.0675728e-06" /> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize.svg b/themes/blueleaves/gtk/theme/unity/maximize.svg new file mode 100644 index 0000000..10149f9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_dash.svg b/themes/blueleaves/gtk/theme/unity/maximize_dash.svg new file mode 100644 index 0000000..ccb70d5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/maximize_dash_disabled.svg new file mode 100644 index 0000000..be50336 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/maximize_dash_prelight.svg new file mode 100644 index 0000000..c92c557 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/maximize_dash_pressed.svg new file mode 100644 index 0000000..c3a9f5d --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_focused_normal.svg b/themes/blueleaves/gtk/theme/unity/maximize_focused_normal.svg new file mode 100644 index 0000000..10149f9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_focused_normal.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_focused_prelight.svg b/themes/blueleaves/gtk/theme/unity/maximize_focused_prelight.svg new file mode 100644 index 0000000..6bc944b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_focused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_focused_pressed.svg b/themes/blueleaves/gtk/theme/unity/maximize_focused_pressed.svg new file mode 100644 index 0000000..82bcae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_focused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_unfocused.svg b/themes/blueleaves/gtk/theme/unity/maximize_unfocused.svg new file mode 100644 index 0000000..bc9897a --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_unfocused_prelight.svg b/themes/blueleaves/gtk/theme/unity/maximize_unfocused_prelight.svg new file mode 100644 index 0000000..6bc944b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_unfocused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/maximize_unfocused_pressed.svg b/themes/blueleaves/gtk/theme/unity/maximize_unfocused_pressed.svg new file mode 100644 index 0000000..82bcae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/maximize_unfocused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize.svg b/themes/blueleaves/gtk/theme/unity/minimize.svg new file mode 100644 index 0000000..829a391 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_dash.svg b/themes/blueleaves/gtk/theme/unity/minimize_dash.svg new file mode 100644 index 0000000..3f103a9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/minimize_dash_disabled.svg new file mode 100644 index 0000000..af5357b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/minimize_dash_prelight.svg new file mode 100644 index 0000000..d7fcafc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#98aab9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/minimize_dash_pressed.svg new file mode 100644 index 0000000..8761627 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="4.8956836" + inkscape:cy="9.0696203" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#0e1b28;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_focused_normal.svg b/themes/blueleaves/gtk/theme/unity/minimize_focused_normal.svg new file mode 100644 index 0000000..829a391 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_focused_normal.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_focused_prelight.svg b/themes/blueleaves/gtk/theme/unity/minimize_focused_prelight.svg new file mode 100644 index 0000000..bbc7eaa --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_focused_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#98aab9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_focused_pressed.svg b/themes/blueleaves/gtk/theme/unity/minimize_focused_pressed.svg new file mode 100644 index 0000000..c1d76bc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_focused_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_unfocused.svg b/themes/blueleaves/gtk/theme/unity/minimize_unfocused.svg new file mode 100644 index 0000000..01868dc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_unfocused.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_unfocused_prelight.svg b/themes/blueleaves/gtk/theme/unity/minimize_unfocused_prelight.svg new file mode 100644 index 0000000..bbc7eaa --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_unfocused_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#98aab9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/minimize_unfocused_pressed.svg b/themes/blueleaves/gtk/theme/unity/minimize_unfocused_pressed.svg new file mode 100644 index 0000000..c1d76bc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/minimize_unfocused_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused.svg b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused.svg new file mode 100644 index 0000000..16f4d1e --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_prelight.svg b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_prelight.svg new file mode 100644 index 0000000..c2da86b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_pressed.svg b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_pressed.svg new file mode 100644 index 0000000..3ba0707 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/sheet_style_close_focused_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize.svg b/themes/blueleaves/gtk/theme/unity/unmaximize.svg new file mode 100644 index 0000000..10149f9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_dash.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_dash.svg new file mode 100644 index 0000000..ccb70d5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_dash.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_dash_disabled.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_disabled.svg new file mode 100644 index 0000000..be50336 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_disabled.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_disabled.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_dash_prelight.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_prelight.svg new file mode 100644 index 0000000..c92c557 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="32.000001" + inkscape:cx="10.337718" + inkscape:cy="9.0639316" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_dash_pressed.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_pressed.svg new file mode 100644 index 0000000..c3a9f5d --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_dash_pressed.svg @@ -0,0 +1,247 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_dash_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4170" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4172" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="16.000001" + inkscape:cx="5.2618001" + inkscape:cy="4.6396105" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:#0e1b28;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_focused_normal.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_normal.svg new file mode 100644 index 0000000..10149f9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_normal.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_focused_prelight.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_prelight.svg new file mode 100644 index 0000000..6bc944b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_focused_pressed.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_pressed.svg new file mode 100644 index 0000000..82bcae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_focused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused.svg new file mode 100644 index 0000000..bc9897a --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_prelight.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_prelight.svg new file mode 100644 index 0000000..6bc944b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_pressed.svg b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_pressed.svg new file mode 100644 index 0000000..82bcae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/unmaximize_unfocused_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/close.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/close.svg new file mode 100644 index 0000000..16f4d1e --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/close.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-dark-8" + inkscape:label="#g6210" + transform="translate(-641,1218)"> + <g + id="g4927-9-2-8-4" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-6"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b5735c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-5" /> + </g> + </g> + <g + id="g4778-2-68-8-7-9" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-7" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-7" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-5" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-8" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-8" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/close_prelight.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/close_prelight.svg new file mode 100644 index 0000000..c2da86b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/close_prelight.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-hover-dark" + inkscape:label="#g6260" + transform="translate(-538,1218)"> + <g + id="g4927-97-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-9-1-3"> + <g + id="g4092-0-2-3-4-6" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#c5836c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" + transform="translate(962,156.00002)" + id="path4068-7-5-8-2-3" /> + </g> + </g> + <g + id="g4778-4-0-2" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-44-1-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-9-3-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-3-1-7" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-9-3-3" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-7-1-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-3-3-7" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-02-1-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-7-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-4-7-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="542" + height="16" + width="16" + id="rect17883-5-4-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/close_pressed.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/close_pressed.svg new file mode 100644 index 0000000..4cf0307 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/close_pressed.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-close-active-dark" + inkscape:label="#g6332" + transform="translate(-437.00001,1218)"> + <g + id="g4927-8-7-4-9" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-3-7-46-6"> + <g + id="g4092-0-2-2-1-7-2" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#a5634c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" + transform="translate(962.00001,139.00001)" + id="path4068-7-5-4-9-7-6" /> + </g> + </g> + <g + id="g4778-3-6-0-5" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-6-0-90-6" + transform="translate(-60,-518)" /> + <g + id="layer10-2-3-6-6-1" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-2-2-6-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-7-0-2-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-6-3-5-2" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-4-1-7-0" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-0-2-8-3" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-4-0-5-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-5-0-0-9" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="441" + height="16" + width="16" + id="rect17883-02-4-3" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/close_unfocused.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/close_unfocused.svg new file mode 100644 index 0000000..3ba0707 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/close_unfocused.svg @@ -0,0 +1,214 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="close_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.4" + id="titlebutton-close-backdrop-dark" + inkscape:label="#g6210" + transform="translate(-641.00002,1218)"> + <g + id="g4927-9-2-8-0" + style="display:inline;opacity:1" + transform="translate(-678,-432.63782)"> + <g + transform="translate(-103,0)" + style="display:inline;opacity:1" + id="g4490-6-5-2-5-3-3"> + <g + id="g4092-0-2-21-0-9-7-0" + style="display:inline" + transform="translate(58,0)"> + <path + inkscape:connector-curvature="0" + style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" + transform="translate(962.00001,190.00002)" + id="path4068-7-5-9-6-5-8-3" /> + </g> + </g> + <g + id="g4778-2-68-8-7-6" + transform="translate(1323,246.86719)" + style="fill:#0e1b28;fill-opacity:1"> + <g + style="display:inline;fill:#0e1b28;fill-opacity:1" + id="layer9-9-4-4-1-1-0" + transform="translate(-60,-518)" /> + <g + id="layer10-2-1-8-0-4-0" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer11-16-4-9-6-9-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + transform="matrix(0.75,0,0,0.75,2,2.0546875)" + id="g2996-76-5-96-3-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(-60,-518)" + id="layer12-4-5-7-9-4-0" + style="fill:#0e1b28;fill-opacity:1"> + <g + transform="translate(19,-242)" + id="layer4-4-1-9-5-6-3-3" + style="display:inline;fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <g + id="layer13-2-6-11-3-1-8" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer14-4-0-33-2-4-4" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + <g + id="layer15-7-3-0-6-6-6" + transform="translate(-60,-518)" + style="fill:#0e1b28;fill-opacity:1" /> + </g> + </g> + <rect + y="-185.63782" + x="645" + height="16" + width="16" + id="rect17883-39-99-8-6" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/maximize.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize.svg new file mode 100644 index 0000000..10149f9 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-max-dark" + inkscape:label="#g6234" + transform="translate(-612.00002,1218)"> + <g + id="g7146-16-4" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-96-8-9"> + <g + id="g4092-0-6-83-7-4" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-95-1-7" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + y="-185.63782" + x="616" + height="16" + width="16" + id="rect17883-29-2-2" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_prelight.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_prelight.svg new file mode 100644 index 0000000..6bc944b --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_prelight.svg @@ -0,0 +1,224 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_pressed.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_pressed.svg new file mode 100644 index 0000000..82bcae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_pressed.svg @@ -0,0 +1,347 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4188" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4185" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4187" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4190" + x1="88.996741" + y1="972" + x2="88.996741" + y2="978.00692" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="1.200547" + inkscape:cy="10.23084" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-max-hover-dark" + inkscape:label="#g6284" + transform="translate(-509,1218)"> + <g + id="g4891-5-8" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1302" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-4-6-6" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-78-2-6" + inkscape:connector-curvature="0" /> + <g + id="g4806-9-0-6" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-7-6-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-3-2-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-75-1-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-9-2-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-5-0-4" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-8-0-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-7-5-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-1-4-1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-0-0-6"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="opacity:1;fill:#98aab9;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-6-7-1" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="513" + height="16" + width="16" + id="rect17883-0-1-5" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + <g + style="display:inline" + id="titlebutton-max-active-dark" + inkscape:label="#g6356" + transform="translate(-408.00001,1218)"> + <g + id="g4891-4-5-5" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-132,0)" + style="display:inline;opacity:1" + id="g4490-2-9-1-2-4-8"> + <g + id="g4092-0-6-3-6-8-3-7" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-6-5-1-6-6-0" /> + </g> + </g> + <g + id="g4806-5-2-2-9" + transform="translate(1294,247)" + style="fill:#c0e3ff;fill-opacity:1"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-78-2-0-0-8" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-3-9-9-51-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-19-7-6-4-7" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-4-7-4-0-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-8-9-7-6-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-5-4-2-4-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-1-4-6-4-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-7-0-8-22-2" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-3-7-2-3-1"> + <path + sodipodi:nodetypes="csscccsscc" + inkscape:connector-curvature="0" + d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" + style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4293-4-9-0-2" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="412" + height="16" + width="16" + id="rect17883-79-3-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_unfocused.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_unfocused.svg new file mode 100644 index 0000000..bc9897a --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/maximize_unfocused.svg @@ -0,0 +1,170 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="maximize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + <sodipodi:guide + orientation="0,1" + position="12,12" + id="guide4318" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-max-backdrop-dark" + inkscape:label="#g6521" + style="display:inline;opacity:0.4" + transform="translate(-612.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7146-1-1-6" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-29,0)" + style="display:inline;opacity:1" + id="g4490-2-6-0"> + <g + id="g4092-0-6-9-2" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + id="path4293-5-6-4" + style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csscccsscc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-6-2-5" + width="16" + height="16" + x="616" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/minimize.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize.svg new file mode 100644 index 0000000..829a391 --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline;opacity:0.7" + id="titlebutton-min-dark" + inkscape:label="#g6247" + transform="translate(-583.00002,1218)"> + <g + id="g7138-6-5" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-75-4-7"> + <g + id="g4092-0-7-0-4-9" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-3-8-5" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + y="-185.63782" + x="587" + height="16" + width="16" + id="rect17883-32-6-9" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_prelight.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_prelight.svg new file mode 100644 index 0000000..bbc7eaa --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_prelight.svg @@ -0,0 +1,220 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_prelight.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-hover-dark" + inkscape:label="#g6308" + transform="translate(-480,1218)"> + <g + id="g4909-3-7" + style="display:inline;opacity:1" + transform="translate(-781,-432.63782)"> + <ellipse + cy="255" + cx="1273" + style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-5-9-6-7-2-1-6-1" + rx="6" + ry="6.0000005" /> + <path + style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" + id="path4068-7-5-9-6-7-2-5-23-4-3" + inkscape:connector-curvature="0" /> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-0-4-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-4-15-6" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-1-8-3" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-6-4-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-4-8-0" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-0-8-2" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-1-7-5" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-9-9-9" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-2-7-8" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-6-2-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#98aab9;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-8-2-3" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + y="-185.63782" + x="484" + height="16" + width="16" + id="rect17883-11-4-0" + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_pressed.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_pressed.svg new file mode 100644 index 0000000..c1d76bc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_pressed.svg @@ -0,0 +1,260 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_pressed.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="selected_fg_color" + osb:paint="solid"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4172" /> + </linearGradient> + <linearGradient + id="selected_bg_color" + osb:paint="solid"> + <stop + style="stop-color:#bf562f;stop-opacity:1;" + offset="0" + id="stop4169" /> + </linearGradient> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_bg_color" + id="linearGradient4171" + x1="1376" + y1="248" + x2="1376" + y2="262" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#selected_fg_color" + id="linearGradient4174" + x1="89.0002" + y1="974" + x2="89.0002" + y2="976" + gradientUnits="userSpaceOnUse" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="-0.56721978" + inkscape:cy="13.766373" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + style="display:inline" + id="titlebutton-min-active-dark" + inkscape:label="#g6414" + transform="translate(-379.00001,1218)"> + <g + id="g4909-1-2-0" + style="display:inline;opacity:1" + transform="translate(-882,-432.63782)"> + <g + transform="translate(-161,0)" + style="display:inline;opacity:1" + id="g4490-3-6-1-4-1-6"> + <g + id="g4092-0-7-2-0-0-94-2" + style="display:inline" + transform="translate(58,0)"> + <circle + r="7" + cy="255" + cx="1376" + style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4068-7-3-0-3-6-8-3" /> + </g> + </g> + <g + style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" + id="g4834-9-3-8-5" + transform="translate(1265,247)"> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="status" + id="layer9-3-9-1-0-4" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="devices" + id="layer10-4-0-5-8-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="apps" + id="layer11-2-5-2-6-8" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="places" + id="layer13-5-7-4-2-5" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + inkscape:label="mimetypes" + id="layer14-6-2-3-2-9" + style="fill:#c0e3ff;fill-opacity:1" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emblems" + id="layer15-52-0-6-6-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="emotes" + id="g71291-3-4-6-0-6" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="categories" + id="g4953-8-6-8-7-4" /> + <g + transform="translate(-81.0002,-967)" + style="display:inline;fill:#c0e3ff;fill-opacity:1" + inkscape:label="actions" + id="layer12-45-3-7-96-7"> + <path + sodipodi:nodetypes="ccccc" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + id="rect9057-3-5-1-1" + d="m 86.0002,974 0,2 6,0 0,-2 z" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-79-9-2-2" + width="16" + height="16" + x="383" + y="-185.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_unfocused.svg b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_unfocused.svg new file mode 100644 index 0000000..01868dc --- /dev/null +++ b/themes/blueleaves/gtk/theme/unity/window-buttons/minimize_unfocused.svg @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="24" + height="24" + id="svg4306" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="minimize_unfocused.svg" + style="enable-background:new"> + <defs + id="defs4308"> + <linearGradient + id="linearGradient3770"> + <stop + style="stop-color:#000000;stop-opacity:0.62827224;" + offset="0" + id="stop3772" /> + <stop + style="stop-color:#000000;stop-opacity:0.49803922;" + offset="1" + id="stop3774" /> + </linearGradient> + <linearGradient + id="linearGradient4882"> + <stop + style="stop-color:#0e1b28;stop-opacity:1;" + offset="0" + id="stop4884" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop4886" /> + </linearGradient> + <linearGradient + id="linearGradient3784-6"> + <stop + style="stop-color:#0e1b28;stop-opacity:0.21568628;" + offset="0" + id="stop3786-4" /> + <stop + style="stop-color:#0e1b28;stop-opacity:0;" + offset="1" + id="stop3788-6" /> + </linearGradient> + <linearGradient + id="linearGradient4892"> + <stop + id="stop4894" + offset="0" + style="stop-color:#2f3a42;stop-opacity:1;" /> + <stop + id="stop4896" + offset="1" + style="stop-color:#1d242a;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient4882-4"> + <stop + id="stop4884-9" + offset="0" + style="stop-color:#728495;stop-opacity:1;" /> + <stop + id="stop4886-9" + offset="1" + style="stop-color:#617c95;stop-opacity:0;" /> + </linearGradient> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#f0f1f2" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="22.627418" + inkscape:cx="4.6255954" + inkscape:cy="10.407616" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="true" + showguides="true" + inkscape:guide-bbox="true" + inkscape:window-width="1366" + inkscape:window-height="721" + inkscape:window-x="0" + inkscape:window-y="25" + inkscape:window-maximized="1" + inkscape:snap-bbox="true" + inkscape:snap-global="true" + inkscape:snap-bbox-midpoints="false" + inkscape:bbox-paths="true" + inkscape:bbox-nodes="true" + inkscape:snap-bbox-edge-midpoints="true"> + <inkscape:grid + type="xygrid" + id="grid4314" + empspacing="5" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="1,0" + position="12,12" + id="guide4316" /> + </sodipodi:namedview> + <metadata + id="metadata4311"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Ebene 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,-1028.3622)"> + <g + id="titlebutton-min-backdrop-dark" + inkscape:label="#g6534" + style="display:inline;opacity:0.4" + transform="translate(-583.00002,1201)"> + <g + style="display:inline;opacity:1" + id="g7138-0-7-7" + transform="translate(-781,-415.63782)"> + <g + transform="translate(-58,0)" + style="display:inline;opacity:1" + id="g4490-3-6-9"> + <g + id="g4092-0-7-6-5" + style="display:inline" + transform="translate(58,0)" /> + </g> + <path + inkscape:connector-curvature="0" + d="m 1373,254 0,2 6,0 0,-2 z" + id="rect9057-4-09-2" + style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" + id="rect17883-39-3-46-6" + width="16" + height="16" + x="587" + y="-168.63782" /> + </g> + </g> +</svg> diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-active.xpm new file mode 100644 index 0000000..24e44f4 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_active_xpm[] = { +"8 1 2 1", +" c None", +". c #132433", +"........"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-inactive.xpm new file mode 100644 index 0000000..13fe360 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-inactive.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_inactive_xpm[] = { +"8 1 2 1", +" c None", +". c #0b1721", +"........"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-left-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-left-active.xpm new file mode 100644 index 0000000..8d82474 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-left-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_left_active_xpm[] = { +"1 1 2 1", +" c None", +". c #132433", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-left-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-left-inactive.xpm new file mode 100644 index 0000000..9ce0e87 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-left-inactive.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_left_inactive_xpm[] = { +"1 1 2 1", +" c None", +". c #0b1721", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-right-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-right-active.xpm new file mode 100644 index 0000000..fc3d4e1 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-right-active.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_right_active_xpm[] = { +"1 1 2 1", +" c None", +". c #132433", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/bottom-right-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/bottom-right-inactive.xpm new file mode 100644 index 0000000..6810697 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/bottom-right-inactive.xpm @@ -0,0 +1,6 @@ +/* XPM */ +static char * bottom_right_inactive_xpm[] = { +"1 1 2 1", +" c None", +". c #0b1721", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/close-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/close-active.xpm new file mode 100644 index 0000000..61530bd --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/close-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * close_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++....++........", +"........+++..+++........", +".........++++++.........", +"..........++++..........", +"..........++++..........", +".........++++++.........", +"........+++..+++........", +"........++....++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/close-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/close-inactive.xpm new file mode 100644 index 0000000..9ad7b77 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/close-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * close_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++....++........", +"........+++..+++........", +".........++++++.........", +"..........++++..........", +"..........++++..........", +".........++++++.........", +"........+++..+++........", +"........++....++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/close-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/close-prelight.xpm new file mode 100644 index 0000000..96853ff --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/close-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * close_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++....++........", +"........+++..+++........", +".........++++++.........", +"..........++++..........", +"..........++++..........", +".........++++++.........", +"........+++..+++........", +"........++....++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/close-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/close-pressed.xpm new file mode 100644 index 0000000..96853ff --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/close-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * close_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++....++........", +"........+++..+++........", +".........++++++.........", +"..........++++..........", +"..........++++..........", +".........++++++.........", +"........+++..+++........", +"........++....++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/hide-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/hide-active.xpm new file mode 100644 index 0000000..d40355b --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/hide-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * hide_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/hide-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/hide-inactive.xpm new file mode 100644 index 0000000..24bb4bc --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/hide-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * hide_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/hide-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/hide-prelight.xpm new file mode 100644 index 0000000..be62d75 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/hide-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * hide_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/hide-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/hide-pressed.xpm new file mode 100644 index 0000000..be62d75 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/hide-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * hide_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/left-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/left-active.xpm new file mode 100644 index 0000000..719c435 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/left-active.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * left_active_xpm[] = { +"1 21 2 1", +" c None", +". c #132433", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/left-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/left-inactive.xpm new file mode 100644 index 0000000..f0f5c60 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/left-inactive.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * left_inactive_xpm[] = { +"1 21 2 1", +" c None", +". c #0b1721", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-active.xpm new file mode 100644 index 0000000..f027757 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-inactive.xpm new file mode 100644 index 0000000..a5b0027 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-prelight.xpm new file mode 100644 index 0000000..11a8ab5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-pressed.xpm new file mode 100644 index 0000000..11a8ab5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-active.xpm new file mode 100644 index 0000000..66cbd94 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-inactive.xpm new file mode 100644 index 0000000..8ed8896 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-prelight.xpm new file mode 100644 index 0000000..aa71203 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-pressed.xpm new file mode 100644 index 0000000..aa71203 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/maximize-toggled-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * maximize_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........++++++++........", +"........++++++++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++....++........", +"........++++++++........", +"........++++++++........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/menu-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/menu-active.xpm new file mode 100644 index 0000000..b2bd6cf --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/menu-active.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * menu_active_xpm[] = { +"24 16 2 1", +" c None", +". c #0b1721", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/menu-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/menu-inactive.xpm new file mode 100644 index 0000000..b3c7b84 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/menu-inactive.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * menu_inactive_xpm[] = { +"24 16 2 1", +" c None", +". c #0b1721", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/menu-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/menu-prelight.xpm new file mode 100644 index 0000000..4e7da01 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/menu-prelight.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * menu_prelight_xpm[] = { +"24 16 2 1", +" c None", +". c #0b1721", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/menu-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/menu-pressed.xpm new file mode 100644 index 0000000..e88d4a5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/menu-pressed.xpm @@ -0,0 +1,21 @@ +/* XPM */ +static char * menu_pressed_xpm[] = { +"24 16 2 1", +" c None", +". c #0b1721", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/right-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/right-active.xpm new file mode 100644 index 0000000..98326cf --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/right-active.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * right_active_xpm[] = { +"1 21 2 1", +" c None", +". c #132433", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/right-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/right-inactive.xpm new file mode 100644 index 0000000..231dae7 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/right-inactive.xpm @@ -0,0 +1,26 @@ +/* XPM */ +static char * right_inactive_xpm[] = { +"1 21 2 1", +" c None", +". c #0b1721", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +".", +"."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-active.xpm new file mode 100644 index 0000000..ac3ee4b --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"..........++++..........", +".........++++++.........", +"........++++++++........", +".......+++.++.+++.......", +"...........++...........", +"...........++...........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-inactive.xpm new file mode 100644 index 0000000..151d38d --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"..........++++..........", +".........++++++.........", +"........++++++++........", +".......+++.++.+++.......", +"...........++...........", +"...........++...........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-prelight.xpm new file mode 100644 index 0000000..f4ede7d --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"..........++++..........", +".........++++++.........", +"........++++++++........", +".......+++.++.+++.......", +"...........++...........", +"...........++...........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-pressed.xpm new file mode 100644 index 0000000..f4ede7d --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"..........++++..........", +".........++++++.........", +"........++++++++........", +".......+++.++.+++.......", +"...........++...........", +"...........++...........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-active.xpm new file mode 100644 index 0000000..606f46f --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"...........++...........", +"...........++...........", +".......+++.++.+++.......", +"........++++++++........", +".........++++++.........", +"..........++++..........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-inactive.xpm new file mode 100644 index 0000000..11840c2 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * shade_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"...........++...........", +"...........++...........", +".......+++.++.+++.......", +"........++++++++........", +".........++++++.........", +"..........++++..........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-prelight.xpm new file mode 100644 index 0000000..12ba5ec --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"...........++...........", +"...........++...........", +".......+++.++.+++.......", +"........++++++++........", +".........++++++.........", +"..........++++..........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-pressed.xpm new file mode 100644 index 0000000..12ba5ec --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/shade-toggled-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * shade_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +"...........++...........", +"...........++...........", +".......+++.++.+++.......", +"........++++++++........", +".........++++++.........", +"..........++++..........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-active.xpm new file mode 100644 index 0000000..5c885b8 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * stick_active_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++..++.........", +"........++....++........", +"........++....++........", +".........++..++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-inactive.xpm new file mode 100644 index 0000000..a615793 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++..++.........", +"........++....++........", +"........++....++........", +".........++..++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-prelight.xpm new file mode 100644 index 0000000..d53eb02 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++..++.........", +"........++....++........", +"........++....++........", +".........++..++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-pressed.xpm new file mode 100644 index 0000000..d53eb02 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++..++.........", +"........++....++........", +"........++....++........", +".........++..++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-active.xpm new file mode 100644 index 0000000..4199c0d --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_active_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #c8dbec", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++++++.........", +"........++++++++........", +"........++++++++........", +".........++++++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-inactive.xpm new file mode 100644 index 0000000..166b7a0 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #98aab9", +"@ c #0b1721", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++++++.........", +"........++++++++........", +"........++++++++........", +".........++++++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-prelight.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-prelight.xpm new file mode 100644 index 0000000..1440422 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-prelight.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++++++.........", +"........++++++++........", +"........++++++++........", +".........++++++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-pressed.xpm b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-pressed.xpm new file mode 100644 index 0000000..1440422 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/stick-toggled-pressed.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * stick_toggled_prelight_xpm[] = { +"24 26 4 1", +" c None", +". c #0b1721", +"+ c #bf562f s active_color_1", +"@ c #132433", +"@@@@@@@@@@@@@@@@@@@@@@@@", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"...........++...........", +".........++++++.........", +".........++++++.........", +"........++++++++........", +"........++++++++........", +".........++++++.........", +".........++++++.........", +"...........++...........", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................", +"........................"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/themerc b/themes/blueleaves/gtk/theme/xfwm4/themerc new file mode 100644 index 0000000..27feff6 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/themerc @@ -0,0 +1,23 @@ +# Name: VALYRIAN-Molten-Steel xfwm4 theme +# Author: rtl88 <github.com/rtlewis1/GTK/tree/VALYRIAN> +# Base creator: Satyajit Sahoo + +active_text_color=#c8dbec +inactive_text_color=#98aab9 +button_offset=3 +button_spacing=0 +show_app_icon=true +full_width_title=true +maximized_offset=0 +title_horizontal_offset=3 +title_shadow_active=false +title_shadow_inactive=false +title_vertical_offset_active=0 +title_vertical_offset_inactive=0 +title_shadow_active=false +title_shadow_inactive=false +shadow_delta_height=0 +shadow_delta_width=0 +shadow_delta_x=0 +shadow_delta_y=0 +shadow_opacity=30 diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-1-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-1-active.xpm new file mode 100644 index 0000000..04dc207 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-1-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_1_active_xpm[] = { +"2 26 3 1", +" c None", +". c #132433", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-1-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-1-inactive.xpm new file mode 100644 index 0000000..8b5fc70 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-1-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_1_inactive_xpm[] = { +"2 26 3 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-2-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-2-active.xpm new file mode 100644 index 0000000..6ba7c60 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-2-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_2_active_xpm[] = { +"2 26 3 1", +" c None", +". c #132433", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-2-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-2-inactive.xpm new file mode 100644 index 0000000..fdcecf0 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-2-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_2_inactive_xpm[] = { +"2 26 3 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-3-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-3-active.xpm new file mode 100644 index 0000000..d83631e --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-3-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_3_active_xpm[] = { +"2 26 3 1", +" c None", +". c #132433", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-3-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-3-inactive.xpm new file mode 100644 index 0000000..1d1ac9b --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-3-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_3_inactive_xpm[] = { +"2 26 3 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-4-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-4-active.xpm new file mode 100644 index 0000000..f237984 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-4-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_4_active_xpm[] = { +"2 26 3 1", +" c None", +". c #132433", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-4-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-4-inactive.xpm new file mode 100644 index 0000000..cc3021d --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-4-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_4_inactive_xpm[] = { +"2 26 3 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-5-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-5-active.xpm new file mode 100644 index 0000000..e2820d5 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-5-active.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_5_active_xpm[] = { +"2 26 3 1", +" c None", +". c #132433", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/title-5-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/title-5-inactive.xpm new file mode 100644 index 0000000..c0ea3db --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/title-5-inactive.xpm @@ -0,0 +1,32 @@ +/* XPM */ +static char * title_5_inactive_xpm[] = { +"2 26 3 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"..", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++", +"++"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/top-left-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/top-left-active.xpm new file mode 100644 index 0000000..0dd2eac --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/top-left-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_left_active_xpm[] = { +"2 26 4 1", +" c None", +". c #132433", +"+ c #132433", +"@ c #0b1721", +" .", +".+", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/top-left-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/top-left-inactive.xpm new file mode 100644 index 0000000..ec28317 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/top-left-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_left_inactive_xpm[] = { +"2 26 4 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"@ c #0b1721", +" .", +".+", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@", +".@"}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/top-right-active.xpm b/themes/blueleaves/gtk/theme/xfwm4/top-right-active.xpm new file mode 100644 index 0000000..612d02c --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/top-right-active.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_right_active_xpm[] = { +"2 26 4 1", +" c None", +". c #132433", +"+ c #132433", +"@ c #0b1721", +". ", +"+.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@."}; diff --git a/themes/blueleaves/gtk/theme/xfwm4/top-right-inactive.xpm b/themes/blueleaves/gtk/theme/xfwm4/top-right-inactive.xpm new file mode 100644 index 0000000..f6ebdb0 --- /dev/null +++ b/themes/blueleaves/gtk/theme/xfwm4/top-right-inactive.xpm @@ -0,0 +1,33 @@ +/* XPM */ +static char * top_right_inactive_xpm[] = { +"2 26 4 1", +" c None", +". c #0b1721", +"+ c #0b1721", +"@ c #0b1721", +". ", +"+.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@.", +"@."}; diff --git a/themes/blueleaves/kitty-colors.conf b/themes/blueleaves/kitty-colors.conf new file mode 100644 index 0000000..c5ea118 --- /dev/null +++ b/themes/blueleaves/kitty-colors.conf @@ -0,0 +1,23 @@ +# Color theme: Base4Tone Classic P +# Auto-generated by Gogh (https://Gogh-Co.github.io/Gogh/) + +color0 #1c1d21 +color1 #BF562F +color2 #1398aa +color3 #3ccadd +color4 #929ff7 +color5 #a57af0 +color6 #23b4c7 +color7 #ffe8ee +color8 #57585d +color9 #c06935 +color10 #5ad2e2 +color11 #a4e6ef +color12 #d0d5fb +color13 #b792f6 +color14 #c6cdfb +color15 #f6f6f9 +#background #09141B +background #0e1b28 +foreground #9092a2 +cursor #6a878a diff --git a/themes/blueleaves/polybar-colors.ini b/themes/blueleaves/polybar-colors.ini new file mode 100644 index 0000000..637a4cd --- /dev/null +++ b/themes/blueleaves/polybar-colors.ini @@ -0,0 +1,25 @@ +;; ┌────────────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀▀░█▀█░█░░░█▀█░█▀▄░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█░░░█░█░█░░░█░█░█▀▄░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[color] + +;; Use pywal.sh in scripts directory to use colors from an image/wallpaper. + +;; main colors +background = #aa141C21 +foreground = #FFE8EE +;; 141C21 +;foreground = #141C21 +;background = #aaFFFFFF +primary = #027C9B +red = #BF562F +green = #A57AF0 +yellow = #BF562F + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/bars.ini b/themes/blueleaves/polybar/bars.ini new file mode 100644 index 0000000..95600ab --- /dev/null +++ b/themes/blueleaves/polybar/bars.ini @@ -0,0 +1,508 @@ +;; ┌────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀▄░█▀█░█▀▄░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█▀▄░█▀█░█▀▄░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀░░▀░▀░▀░▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[bar] +fill = █ +empty = █ +indicator = + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/volume] +type = internal/alsa + +; Soundcard to be used +; Usually in the format hw:# where # is the card number +; You can find the different card numbers in `/proc/asound/cards` +master-soundcard = default +speaker-soundcard = default +headphone-soundcard = default + +; Name of the master, speaker and headphone mixers +; Use the following command to list available mixer controls: +; $ amixer scontrols | sed -nr "s/.*'([[:alnum:]]+)'.*/\1/p" +; If master, speaker or headphone-soundcard isn't the default, +; use `amixer -c # scontrols` instead where # is the number +; of the master, speaker or headphone soundcard respectively +; +; Default: Master +master-mixer = Master + +; Optionally define speaker and headphone mixers +; Default: none +;;speaker-mixer = Speaker +; Default: none +;;headphone-mixer = Headphone + +; NOTE: This is required if headphone_mixer is defined +; Use the following command to list available device controls +; $ amixer controls | sed -r "/CARD/\!d; s/.*=([0-9]+).*name='([^']+)'.*/printf '%3.0f: %s\n' '\1' '\2'/e" | sort +; You may also need to use `amixer -c # controls` as above for the mixer names +; Default: none +;;headphone-id = 9 + +; Use volume mapping (similar to amixer -M and alsamixer), where the increase in volume is linear to the ear +; Default: false +;;mapped = true + +; Interval for volume increase/decrease (in percent points) +; Default: 5 +interval = 5 + +; Available tags: +; <label-volume> (default) +; <ramp-volume> +; <bar-volume> +format-volume = <ramp-volume> <label-volume> + +; Available tags: +; <label-muted> (default) +; <ramp-volume> +; <bar-volume> +format-muted-prefix =  + +; Available tokens: +; %percentage% (default) +label-volume = %percentage%% + +; Available tokens: +; %percentage% (default +label-muted = "" +label-muted-foreground = ${color.red} + +; Only applies if <ramp-volume> is used +ramp-volume-0 =" " +ramp-volume-1 =" " +ramp-volume-2 =" " +ramp-volume-3 =" " +ramp-volume-4 =" " + +; Only applies if <bar-volume> is used +bar-volume-width = 11 +bar-volume-gradient = false + +bar-volume-indicator = ${bar.indicator} +bar-volume-indicator-foreground = ${color.foreground} + +bar-volume-fill = ${bar.fill} +bar-volume-foreground-0 = ${color.primary} +bar-volume-foreground-1 = ${color.primary} +bar-volume-foreground-2 = ${color.primary} +bar-volume-foreground-3 = ${color.primary} +bar-volume-foreground-4 = ${color.red} + +bar-volume-empty = ${bar.empty} +bar-volume-empty-foreground = ${color.foreground} + +; If defined, it will replace <ramp-volume> when +; headphones are plugged in to `headphone_control_numid` +; If undefined, <ramp-volume> will be used for both +; Only applies if <ramp-volume> is used +ramp-headphones-0 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/brightness] +;type = internal/xbacklight +type = internal/backlight + +; Use the following command to list available cards: +; $ ls -1 /sys/class/backlight/ +card = intel_backlight +;card = amdgpu_bl0 + +; Available tags: +; <label> (default) +; <ramp> +; <bar> +format = <label> +format-prefix = " " +; Available tokens: +; %percentage% (default) +label = %percentage%% + +; Only applies if <ramp> is used +ramp-0 =  +ramp-1 =  +ramp-2 =  +ramp-3 =  +ramp-4 =  + +; Only applies if <bar> is used +bar-width = 11 +bar-gradient = false + +bar-indicator = ${bar.indicator} +bar-indicator-foreground = ${color.foreground} + +bar-fill = ${bar.fill} +bar-foreground-0 = ${color.primary} +bar-foreground-1 = ${color.primary} +bar-foreground-2 = ${color.primary} +bar-foreground-3 = ${color.primary} +bar-foreground-4 = ${color.primary} + +bar-empty = ${bar.empty} +bar-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/battery_bar] +type = internal/battery + +; This is useful in case the battery never reports 100% charge +full-at = 99 + +; Use the following command to list batteries and adapters: +; $ ls -1 /sys/class/power_supply/ +battery = BAT1 +adapter = ACAD + +; If an inotify event haven't been reported in this many +; seconds, manually poll for new values. +; +; Needed as a fallback for systems that don't report events +; on sysfs/procfs. +; +; Disable polling by setting the interval to 0. +; +; Default: 5 +poll-interval = 10 + +; see "man date" for details on how to format the time string +; NOTE: if you want to use syntax tags here you need to use %%{...} +; Default: %H:%M:%S +time-format = %H:%M + +; Available tags: +; <label-charging> (default) +; <bar-capacity> +; <ramp-capacity> +; <animation-charging> +format-charging = <bar-capacity> +format-charging-prefix = " " + +; Available tags: +; <label-discharging> (default) +; <bar-capacity> +; <ramp-capacity> +; <animation-discharging> +format-discharging = <bar-capacity> +format-discharging-prefix = " " + +; Available tags: +; <label-full> (default) +; <bar-capacity> +; <ramp-capacity> +format-full = <label-full> +format-full-prefix = " " + +; Available tokens: +; %percentage% (default) +; %time% +; %consumption% (shows current charge rate in watts) + +label-charging = %percentage%% + +; Available tokens: +; %percentage% (default) +; %time% +; %consumption% (shows current discharge rate in watts) +label-discharging = %percentage%% + +; Available tokens: +; %percentage% (default) +label-full = "Full" + +; Only applies if <bar-capacity> is used +bar-capacity-width = 11 +bar-capacity-gradient = false + +bar-capacity-indicator = ${bar.indicator} +bar-capacity-indicator-foreground = ${color.foreground} + +bar-capacity-fill = ${bar.fill} +bar-capacity-foreground-0 = ${color.green} +bar-capacity-foreground-1 = ${color.green} +bar-capacity-foreground-2 = ${color.yellow} +bar-capacity-foreground-3 = ${color.yellow} +bar-capacity-foreground-4 = ${color.red} + +bar-capacity-empty = ${bar.empty} +bar-capacity-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/cpu_bar] +type = internal/cpu + +; Seconds to sleep between updates +; Default: 1 +interval = 0.5 + +; Available tags: +; <label> (default) +; <bar-load> +; <ramp-load> +; <ramp-coreload> +;;format = <label> <ramp-coreload> +format = <bar-load> <label> +format-prefix = " " + +; Available tokens: +; %percentage% (default) - total cpu load averaged over all cores +; %percentage-sum% - Cumulative load on all cores +; %percentage-cores% - load percentage for each core +; %percentage-core[1-9]% - load percentage for specific core +label = "%percentage%%" + +; Only applies if <bar-load> is used +bar-load-width = 11 +bar-load-gradient = false + +bar-load-indicator = ${bar.indicator} +bar-load-indicator-foreground = ${color.foreground} + +bar-load-fill = ${bar.fill} +bar-load-foreground-0 = ${color.green} +bar-load-foreground-1 = ${color.green} +bar-load-foreground-2 = ${color.yellow} +bar-load-foreground-3 = ${color.yellow} +bar-load-foreground-4 = ${color.red} + +bar-load-empty = ${bar.empty} +bar-load-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/filesystem_bar] +type = internal/fs + +; Mountpoints to display +mount-0 = / +;;mount-1 = /home +;;mount-2 = /var + +; Seconds to sleep between updates +; Default: 30 +interval = 30 + +; Display fixed precision values +; Default: false +fixed-values = false + +; Spacing between entries +; Default: 2 +;;spacing = 4 + +; Available tags: +; <label-mounted> (default) +; <bar-free> +; <bar-used> +; <ramp-capacity> +format-mounted = <bar-used> <label-mounted> +format-mounted-prefix = " " + +; Available tags: +; <label-unmounted> (default) +format-unmounted = <label-unmounted> +format-unmounted-prefix = " " + +; Available tokens: +; %mountpoint% +; %type% +; %fsname% +; %percentage_free% +; %percentage_used% +; %total% +; %free% +; %used% +; Default: %mountpoint% %percentage_free%% +label-mounted = %used%/%total% + +; Available tokens: +; %mountpoint% +; Default: %mountpoint% is not mounted +label-unmounted = %mountpoint%: not mounted + +; Only applies if <bar-used> is used +bar-used-width = 11 +bar-used-gradient = false + +bar-used-indicator = ${bar.indicator} +bar-used-indicator-foreground = ${color.foreground} + +bar-used-fill = ${bar.fill} +bar-used-foreground-0 = ${color.green} +bar-used-foreground-1 = ${color.green} +bar-used-foreground-2 = ${color.yellow} +bar-used-foreground-3 = ${color.yellow} +bar-used-foreground-4 = ${color.red} + +bar-used-empty = ${bar.empty} +bar-used-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/memory_bar] +type = internal/memory + +; Seconds to sleep between updates +; Default: 1 +interval = 2 + +; Available tags: +; <label> (default) +; <bar-used> +; <bar-free> +; <ramp-used> +; <ramp-free> +; <bar-swap-used> +; <bar-swap-free> +; <ramp-swap-used> +; <ramp-swap-free> +format = <bar-used> <label> +format-prefix = " " + +; Available tokens: +; %percentage_used% (default) +; %percentage_free% +; %gb_used% +; %gb_free% +; %gb_total% +; %mb_used% +; %mb_free% +; %mb_total% +; %percentage_swap_used% +; %percentage_swap_free% +; %mb_swap_total% +; %mb_swap_free% +; %mb_swap_used% +; %gb_swap_total% +; %gb_swap_free% +; %gb_swap_used% + +label = "%mb_used%" + +; Only applies if <bar-used> is used +bar-used-width = 11 +bar-used-gradient = false + +bar-used-indicator = ${bar.indicator} +bar-used-indicator-foreground = ${color.foreground} + +bar-used-fill = ${bar.fill} +bar-used-foreground-0 = ${color.green} +bar-used-foreground-1 = ${color.green} +bar-used-foreground-2 = ${color.yellow} +bar-used-foreground-3 = ${color.yellow} +bar-used-foreground-4 = ${color.red} + +bar-used-empty = ${bar.empty} +bar-used-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/mpd_bar] +type = internal/mpd + +; Host where mpd is running (either ip or domain name) +; Can also be the full path to a unix socket where mpd is running. +;;host = 127.0.0.1 +;;port = 6600 +;;password = mysecretpassword + +; Seconds to sleep between progressbar/song timer sync +; Default: 1 +interval = 1 + +; Available tags: +; <label-song> (default) +; <label-time> +; <bar-progress> +; <toggle> - gets replaced with <icon-(pause|play)> +; <toggle-stop> - gets replaced with <icon-(stop|play)> +; <icon-random> +; <icon-repeat> +; <icon-repeatone> (deprecated) +; <icon-single> - Toggle playing only a single song. Replaces <icon-repeatone> +; <icon-consume> +; <icon-prev> +; <icon-stop> +; <icon-play> +; <icon-pause> +; <icon-next> +; <icon-seekb> +; <icon-seekf> +format-online = <icon-pause><icon-play> <icon-single> <icon-random> <icon-next> <label-song> +format-online-prefix = + +;format-playing = ${self.format-online} +;format-paused = ${self.format-online} +;format-stopped = ${self.format-online} + +; Available tags: +; <label-offline> +format-offline = <label-offline> +format-offline-prefix =  + +; Available tokens: +; %artist% +; %album-artist% +; %album% +; %date% +; %title% +; Default: %artist% - %title% +label-song = "%title%" +label-song-maxlen = 25 +label-song-ellipsis = true + +; Available tokens: +; %elapsed% +; %total% +; Default: %elapsed% / %total% +label-time = %elapsed% / %total% + +; Available tokens: +; None +label-offline = " Offline" + +; Only applies if <icon-X> is used +icon-play = " " +icon-pause = " " +icon-stop =  +icon-next = "󰙡 " +icon-prev =  +icon-seekf = +icon-seekb = +icon-random = " " +icon-repeat = +icon-repeatone = +icon-single = "󰎤 " +icon-consume = + +; Used to display the state of random/repeat/repeatone/single +; Only applies if <icon-[random|repeat|repeatone|single]> is used +toggle-on-foreground = ${color.primary} +toggle-off-foreground = ${color.foreground} + +; Only applies if <bar-progress> is used +bar-progress-width = 11 +bar-progress-gradient = false + +bar-progress-indicator = ${bar.indicator} +bar-progress-indicator-foreground = ${color.yellow} + +bar-progress-fill = ${bar.fill} +bar-progress-foreground-0 = ${color.yellow} + +bar-progress-empty = ${bar.empty} +bar-progress-empty-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/colors.ini b/themes/blueleaves/polybar/colors.ini new file mode 100644 index 0000000..4b770b2 --- /dev/null +++ b/themes/blueleaves/polybar/colors.ini @@ -0,0 +1,19 @@ +;; ┌────────────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀▀░█▀█░█░░░█▀█░█▀▄░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█░░░█░█░█░░░█░█░█▀▄░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀▀░▀▀▀░▀▀▀░▀▀▀░▀░▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[color] + +background = #aa141C21 +foreground = #FFE8EE +primary = #027C9B +red = #BF562F +green = #A57AF0 +yellow = #BF562F + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/config.ini b/themes/blueleaves/polybar/config.ini new file mode 100644 index 0000000..8727f52 --- /dev/null +++ b/themes/blueleaves/polybar/config.ini @@ -0,0 +1,336 @@ +;; ┌────────────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀▀░█▀█░█▀█░█▀▀░▀█▀░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█░░░█░█░█░█░█▀▀░░█░░█░█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀▀░▀▀▀░▀░▀░▀░░░▀▀▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Global WM Settings + +[global/wm] +; Adjust the _NET_WM_STRUT_PARTIAL top value +; Used for top aligned bars +margin-bottom = 0 + +; Adjust the _NET_WM_STRUT_PARTIAL bottom value +; Used for bottom aligned bars +margin-top = 0 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; File Inclusion +; include an external file, like module file, etc. + +include-file = ~/.config/polybar/hack/bars.ini +include-file = ~/.config/polybar/hack/colors.ini +include-file = ~/.config/polybar/hack/modules.ini +include-file = ~/.config/polybar/hack/user_modules.ini + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Bar Settings + +[bar/main] +; Use either of the following command to list available outputs: +; If unspecified, the application will pick the first one it finds. +; $ polybar -m | cut -d ':' -f 1 +; $ xrandr -q | grep " connected" | cut -d ' ' -f1 +monitor = eDP-1 + +; Use the specified monitor as a fallback if the main one is not found. +monitor-fallback = + +; Require the monitor to be in connected state +; XRandR sometimes reports my monitor as being disconnected (when in use) +monitor-strict = false + +; Tell the Window Manager not to configure the window. +; Use this to detach the bar if your WM is locking its size/position. +override-redirect = true + +; Put the bar at the bottom of the screen +bottom = false + +; Prefer fixed center position for the `modules-center` block +; When false, the center position will be based on the size of the other blocks. +fixed-center = true + +; Dimension defined as pixel value (e.g. 35) or percentage (e.g. 50%), +; the percentage can optionally be extended with a pixel offset like so: +; 50%:-10, this will result in a width or height of 50% minus 10 pixels +width = 98.9% +height = 26 + +; Offset defined as pixel value (e.g. 35) or percentage (e.g. 50%) +; the percentage can optionally be extended with a pixel offset like so: +; 50%:-10, this will result in an offset in the x or y direction +; of 50% minus 10 pixels +offset-x = 0.6% +offset-y = 0.5% + +; Background ARGB color (e.g. #f00, #ff992a, #ddff1023) +background = ${color.background} + +; Foreground ARGB color (e.g. #f00, #ff992a, #ddff1023) +foreground = ${color.foreground} + +; Background gradient (vertical steps) +; background-[0-9]+ = #aarrggbb +;;background-0 = + + +; Value used for drawing rounded corners +; Note: This shouldn't be used together with border-size because the border +; doesn't get rounded +; Individual top/bottom values can be defined using: +; radius-{top,bottom} +radius-top = 10 +radius-bottom = 10 + +; Under-/overline pixel size and argb color +; Individual values can be defined using: +; {overline,underline}-size +; {overline,underline}-color +underline-size = 2 +;underline-color = ${color.foreground} + +; Values applied to all borders +; Individual side values can be defined using: +; border-{left,top,right,bottom}-size +; border-{left,top,right,bottom}-color +; The top and bottom borders are added to the bar height, so the effective +; window height is: +; height + border-top-size + border-bottom-size +; Meanwhile the effective window width is defined entirely by the width key and +; the border is placed withing this area. So you effectively only have the +; following horizontal space on the bar: +; width - border-right-size - border-left-size +;border-bottom-size = 2 +;border-bottom-color = ${color.primary} + +; Number of spaces to add at the beginning/end of the bar +; Individual side values can be defined using: +; padding-{left,right} +padding = 1 + +; Number of spaces to add before/after each module +; Individual side values can be defined using: +; module-margin-{left,right} +module-margin-left = 0 +module-margin-right = 0 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +; Fonts are defined using <font-name>;<vertical-offset> +; Font names are specified using a fontconfig pattern. +; font-0 = NotoSans-Regular:size=8;2 +; font-1 = MaterialIcons:size=10 +; font-2 = Termsynu:size=8;-1 +; font-3 = FontAwesome:size=10 +; See the Fonts wiki page for more details + +font-0 = "Terminus:size=10;3" +font-1 = "siji:size=12;3" +font-2 = "Iosevka Nerd Font:size=13;3" +; Modules are added to one of the available blocks +; modules-left = cpu ram +; modules-center = xwindow xbacklight +; modules-right = ipc clock + +;modules-left = launcher workspaces google github reddit gmail twitter +;modules-center = +;modules-right = updates alsa battery network date sysmenu + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[bar/top] +inherit = bar/main +;border-bottom-size = 1 +;border-bottom-color = ${color.primary} +modules-left = tray sep windows sep monocle +modules-center = workspaces +modules-right = temperature sep cpu sep memory sep volume sep battery sep bluetooth checknet sep date +enable-ipc = true +wm-restack = bspwm + +[bar/other] +inherit = bar/top +monitor = HDMI-1 +border-bottom-color = ${color.primary} +modules-left = tray sep windows sep monocle +modules-center = workspaces +modules-right = date sep +background = ${color.background} +foreground = ${color.foreground} +font-0 = "Terminus:size=10;3" +font-1 = "siji:size=12;3" +font-2 = "Iosevka Nerd Font:size=13;3" +;modules-center = workspaces +;modules-right = ch sep xkeyboard sep date +;enable-ipc = true +;wm-restack = bspwm + +; [bar/bottom] +; inherit = bar/main +; bottom = true +; border-top-size = 1 +; border-top-color = ${color.primary} +; modules-left = +; modules-center = windows +; modules-right = +; enable-ipc = true +; width = 20% +; offset-x = 40% + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +; The separator will be inserted between the output of each module +separator = + +; Opacity value between 0.0 and 1.0 used on fade in/out +dim-value = 1.0 + +; Value to be used to set the WM_NAME atom +; If the value is empty or undefined, the atom value +; will be created from the following template: polybar-[BAR]_[MONITOR] +; NOTE: The placeholders are not available for custom values +wm-name = + +; Locale used to localize various module data (e.g. date) +; Expects a valid libc locale, for example: sv_SE.UTF-8 +locale = + +; Position of the system tray window +; If empty or undefined, tray support will be disabled +; NOTE: A center aligned tray will cover center aligned modules +; +; Available positions: +; left +; center +; right +; none +;tray-position = left + +; If true, the bar will not shift its +; contents when the tray changes +;tray-detached = true + +; Tray icon max size +;tray-maxsize = 21 + +; Background color for the tray container +; ARGB color (e.g. #f00, #ff992a, #ddff1023) +; By default the tray container will use the bar +; background color. +;tray-background = ${color.background} + +; Tray offset defined as pixel value (e.g. 35) or percentage (e.g. 50%) +;tray-offset-x = 5 +;tray-offset-y = 0 + +; Pad the sides of each tray icon +;tray-padding = 5 + +; Scale factor for tray clients +;tray-scale = 1.0 + +; Restack the bar window and put it above the +; selected window manager's root +; +; Fixes the issue where the bar is being drawn +; on top of fullscreen window's +; +; Currently supported WM's: +; bspwm +; i3 (requires: `override-redirect = true`) +wm-restack = bspwm +override-redirect = true + +; Set a DPI values used when rendering text +; This only affects scalable fonts +; dpi = + +; Enable support for inter-process messaging +; See the Messaging wiki page for more details. +;enable-ipc = true + +; Fallback click handlers that will be called if +; there's no matching module handler found. +click-left = +click-middle = +click-right = +scroll-up = +scroll-down = +double-click-left = +double-click-middle = +double-click-right = + +; Requires polybar to be built with xcursor support (xcb-util-cursor) +; Possible values are: +; - default : The default pointer as before, can also be an empty string (default) +; - pointer : Typically in the form of a hand +; - ns-resize : Up and down arrows, can be used to indicate scrolling +cursor-click = +cursor-scroll = + +;; WM Workspace Specific + +; bspwm +;;scroll-up = bspwm-desknext +;;scroll-down = bspwm-deskprev +;;scroll-up = bspc desktop -f prev.local +;;scroll-down = bspc desktop -f next.local + +;i3 +;;scroll-up = i3wm-wsnext +;;scroll-down = i3wm-wsprev +;;scroll-up = i3-msg workspace next_on_output +;;scroll-down = i3-msg workspace prev_on_output + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Application Settings + +[settings] +; The throttle settings lets the eventloop swallow up til X events +; if they happen within Y millisecond after first event was received. +; This is done to prevent flood of update event. +; +; For example if 5 modules emit an update event at the same time, we really +; just care about the last one. But if we wait too long for events to swallow +; the bar would appear sluggish so we continue if timeout +; expires or limit is reached. +throttle-output = 5 +throttle-output-for = 10 + +; Time in milliseconds that the input handler will wait between processing events +;throttle-input-for = 30 + +; Reload upon receiving XCB_RANDR_SCREEN_CHANGE_NOTIFY events +screenchange-reload = false + +; Compositing operators +; @see: https://www.cairographics.org/manual/cairo-cairo-t.html#cairo-operator-t +compositing-background = source +compositing-foreground = over +compositing-overline = over +compositing-underline = over +compositing-border = over + +; Define fallback values used by all module formats +;format-foreground = +;format-background = +;format-underline = +;format-overline = +;format-spacing = +;format-padding = +;format-margin = +;format-offset = + +; Enables pseudo-transparency for the bar +; If set to true the bar can be transparent without a compositor. +pseudo-transparency = false + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/launch.sh b/themes/blueleaves/polybar/launch.sh new file mode 100755 index 0000000..a630612 --- /dev/null +++ b/themes/blueleaves/polybar/launch.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +# Add this script to your wm startup file. + +DIR="$HOME/.config/polybar/hack" + +# Terminate already running bar instances +killall -q polybar + +# Wait until the processes have been shut down +# while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done + +# Launch the bar +polybar -q top -c "$DIR"/config.ini & +polybar -q other -c "$DIR"/config.ini & +polybar -q bottom -c "$DIR"/config.ini & diff --git a/themes/blueleaves/polybar/modules.ini b/themes/blueleaves/polybar/modules.ini new file mode 100644 index 0000000..c653d10 --- /dev/null +++ b/themes/blueleaves/polybar/modules.ini @@ -0,0 +1,1177 @@ +;; ┌────────────────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▄█░█▀█░█▀▄░█░█░█░░░█▀▀░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█░█░█░█░█░█░█░█░█░░░█▀▀░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀░▀░▀▀▀░▀▀░░▀▀▀░▀▀▀░▀▀▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/alsa] +type = internal/alsa + +; Soundcard to be used +; Usually in the format hw:# where # is the card number +; You can find the different card numbers in `/proc/asound/cards` +master-soundcard = default +speaker-soundcard = default +headphone-soundcard = default + +; Name of the master, speaker and headphone mixers +; Use the following command to list available mixer controls: +; $ amixer scontrols | sed -nr "s/.*'([[:alnum:]]+)'.*/\1/p" +; If master, speaker or headphone-soundcard isn't the default, +; use `amixer -c # scontrols` instead where # is the number +; of the master, speaker or headphone soundcard respectively +; +; Default: Master +master-mixer = Master + +; Optionally define speaker and headphone mixers +; Default: none +;;speaker-mixer = Speaker +; Default: none +;;headphone-mixer = Headphone + +; NOTE: This is required if headphone_mixer is defined +; Use the following command to list available device controls +; $ amixer controls | sed -r "/CARD/\!d; s/.*=([0-9]+).*name='([^']+)'.*/printf '%3.0f: %s\n' '\1' '\2'/e" | sort +; You may also need to use `amixer -c # controls` as above for the mixer names +; Default: none +;;headphone-id = 9 + +; Use volume mapping (similar to amixer -M and alsamixer), where the increase in volume is linear to the ear +; Default: false +;;mapped = true + +; Interval for volume increase/decrease (in percent points) +; Default: 5 +interval = 5 + +; Available tags: +; <label-volume> (default) +; <ramp-volume> +; <bar-volume> +format-volume = <ramp-volume> <label-volume> + +; Available tags: +; <label-muted> (default) +; <ramp-volume> +; <bar-volume> +format-muted = <label-muted> +format-muted-prefix =  + +; Available tokens: +; %percentage% (default) +label-volume = %percentage%% + +; Available tokens: +; %percentage% (default +label-muted = " Muted" +label-muted-foreground = ${color.red} + +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  +ramp-volume-3 =  +ramp-volume-4 =  + +; If defined, it will replace <ramp-volume> when +; headphones are plugged in to `headphone_control_numid` +; If undefined, <ramp-volume> will be used for both +; Only applies if <ramp-volume> is used +ramp-headphones-0 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/backlight] +;type = internal/xbacklight +type = internal/backlight + +; Use the following command to list available cards: +; $ ls -1 /sys/class/backlight/ +card = intel_backlight +;card = amdgpu_bl0 + +; Available tags: +; <label> (default) +; <ramp> +; <bar> +format = <ramp> <label> + +; Available tokens: +; %percentage% (default) +label = %percentage%% + +; Only applies if <ramp> is used +ramp-0 =  +ramp-1 =  +ramp-2 =  +ramp-3 =  +ramp-4 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/battery] +type = internal/battery + +; This is useful in case the battery never reports 100% charge +full-at = 99 + +; Use the following command to list batteries and adapters: +; $ ls -1 /sys/class/power_supply/ +battery = BAT1 +adapter = ACAD + +; If an inotify event haven't been reported in this many +; seconds, manually poll for new values. +; +; Needed as a fallback for systems that don't report events +; on sysfs/procfs. +; +; Disable polling by setting the interval to 0. +; +; Default: 5 +poll-interval = 4 + +; see "man date" for details on how to format the time string +; NOTE: if you want to use syntax tags here you need to use %%{...} +; Default: %H:%M:%S +time-format =%H + +; Available tags: +; <label-charging> (default) +; <bar-capacity> +; <ramp-capacity> +; <animation-charging> +format-charging = <animation-charging> <label-charging> + +; Available tags: +; <label-discharging> (default) +; <bar-capacity> +; <ramp-capacity> +; <animation-discharging> +format-discharging = <ramp-capacity> <label-discharging> + +; Available tags: +; <label-full> (default) +; <bar-capacity> +; <ramp-capacity> +format-full = <label-full> +format-full-prefix = "" + +; Available tokens: +; %percentage% (default) +; %time% +; %consumption% (shows current charge rate in watts) +label-charging = "%percentage%% (%consumption%w)" + +; Available tokens: +; %percentage% (default) +; %time% +; %consumption% (shows current discharge rate in watts) +label-discharging = "%percentage%% (%consumption%w)" + +; Available tokens: +; %percentage% (default) +label-full = "󱈏" + +; Only applies if <ramp-capacity> is used +ramp-capacity-0 = "󰂎 " +ramp-capacity-1 = "󱊡 " +ramp-capacity-2 = "󱊢 " +ramp-capacity-3 = "󱊣 " +ramp-capacity-4 = "󱈏 " + +; Only applies if <bar-capacity> is used +;bar-capacity-width = 10 + +; Only applies if <animation-charging> is used +animation-charging-0 = "󱊤 " +animation-charging-1 = "󱊥 " +animation-charging-2 = "󱊦 " + +; Framerate in milliseconds +animation-charging-framerate = 750 + +; Only applies if <animation-discharging> is used +;;animation-discharging-0 = ${battery.anim0} +;;animation-discharging-1 = ${battery.anim1} + +; Framerate in milliseconds +;animation-discharging-framerate = 500 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;;[module/bspwm] +;;type = internal/bspwm + +; Only show workspaces defined on the same output as the bar +; NOTE: The bspwm and XRandR monitor names must match, which they do by default. +; Default: true +;;pin-workspaces = true + +; Output mode flags after focused state label +; Default: false +;;inline-mode = false + +; Create click handler used to focus workspace +; Default: true +;;enable-click = false + +; Create scroll handlers used to cycle workspaces +; Default: true +;;enable-scroll = false + +; Set the scroll cycle direction +; Default: true +;;reverse-scroll = false + +; Use fuzzy (partial) matching on labels when assigning +; icons to workspaces +; Example: code;♚ will apply the icon to all workspaces +; containing 'code' in the label +; Default: false +;;fuzzy-match = true + +; ws-icon-[0-9]+ = label;icon +; Note that the label needs to correspond with the bspwm workspace name +;;ws-icon-0 = code;♚ +;;ws-icon-1 = office;♛ +;;ws-icon-2 = graphics;♜ +;;ws-icon-3 = mail;♝ +;;ws-icon-4 = web;♞ +;;ws-icon-default = ♟ + +; Available tags: +; <label-monitor> +; <label-state> - gets replaced with <label-(focused|urgent|occupied|empty)> +; <label-mode> - gets replaced with <label-(monocle|tiled|fullscreen|floating|locked|sticky|private)> +; Default: <label-state> +;;format = <label-state> <label-mode> + +; Available tokens: +; %name% +; Default: %name% +;;label-monitor = %name% + +; If any values for label-dimmed-N are defined, the workspace/mode +; colors will get overridden with those values if the monitor is out of focus +; To only override workspaces in a specific state, use: +; label-dimmed-focused +; label-dimmed-occupied +; label-dimmed-urgent +; label-dimmed-empty +;;label-dimmed-foreground = #555 +;;label-dimmed-underline = ${bar/top.background} +;;label-dimmed-focused-background = #f00 + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +;;label-focused = %icon% +;;label-focused-foreground = #ffffff +;;label-focused-background = #3f3f3f +;;label-focused-underline = #fba922 + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +;;label-occupied = %icon% +;;label-occupied-underline = #555555 + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +;;label-urgent = %icon% +;;label-urgent-foreground = #000000 +;;label-urgent-background = #bd2c40 +;;label-urgent-underline = #9b0a20 + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +;;label-empty = %icon% +;;label-empty-foreground = #55 + +; The following labels will be used to indicate the layout/mode +; for the focused workspace. Requires <label-mode> +; +; Available tokens: +; None +;label-monocle =  +;label-tiled =  +;label-fullscreen =  +;label-floating =  +;label-pseudotiled = P +;label-locked =  +;label-locked-foreground = #bd2c40 +;label-sticky =  +;label-sticky-foreground = #fba922 +;label-private =  +;label-private-foreground = #bd2c40 + +; Separator in between workspaces +;;label-separator = | +;;label-separator-padding = 2 +;;label-separator-foreground = #ffb52a + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/cpu] +type = internal/cpu + +; Seconds to sleep between updates +; Default: 1 +interval = 1 + +; Available tags: +; <label> (default) +; <bar-load> +; <ramp-load> +; <ramp-coreload> +;;format = <label> <ramp-coreload> +format = <label> +format-prefix = " " + +; Available tokens: +; %percentage% (default) - total cpu load averaged over all cores +; %percentage-sum% - Cumulative load on all cores +; %percentage-cores% - load percentage for each core +; %percentage-core[1-9]% - load percentage for specific core +label = " %percentage:2%%" + +; Spacing between individual per-core ramps +;;ramp-coreload-spacing = 1 +;;ramp-coreload-0 = ${cpu.load0} +;;ramp-coreload-1 = ${cpu.load1} + +;;ramp-load-0 = ${cpu.load0} +;;ramp-load-1 = ${cpu.load1} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/date] +type = internal/date + +; Seconds to sleep between updates +interval = 1.0 + +; See "http://en.cppreference.com/w/cpp/io/manip/put_time" for details on how to format the date string +; NOTE: if you want to use syntax tags here you need to use %%{...} +;;date = %Y-%m-%d% + +; Optional time format +;;time = " %I:%M %p" +time = "󰥔 %H:%M:%S" +; if `date-alt` or `time-alt` is defined, clicking +; the module will toggle between formats +;;date-alt = %A, %d %B %Y +time-alt = " %a, %d %b %Y" + +; Available tags: +; <label> (default) +format = <label> + +; Available tokens: +; %date% +; %time% +; Default: %date% +label = %time% + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/filesystem] +type = internal/fs + +; Mountpoints to display +mount-0 = / +;;mount-1 = /home +;;mount-2 = /var + +; Seconds to sleep between updates +; Default: 30 +interval = 30 + +; Display fixed precision values +; Default: false +fixed-values = true + +; Spacing between entries +; Default: 2 +;;spacing = 4 + +; Available tags: +; <label-mounted> (default) +; <bar-free> +; <bar-used> +; <ramp-capacity> +format-mounted = <label-mounted> +format-mounted-prefix = " " + +; Available tags: +; <label-unmounted> (default) +format-unmounted = <label-unmounted> +format-unmounted-prefix =  + +; Available tokens: +; %mountpoint% +; %type% +; %fsname% +; %percentage_free% +; %percentage_used% +; %total% +; %free% +; %used% +; Default: %mountpoint% %percentage_free%% +label-mounted = " %free%" + +; Available tokens: +; %mountpoint% +; Default: %mountpoint% is not mounted +label-unmounted = " %mountpoint%: not mounted" + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;;[module/github] +;;type = internal/github + +; Accessing an access token stored in file +;;token = ${file:/path/to/file/containing/github/access.token} + +; Accessing an access token stored in an environment variable +;;token = ${env:GITHUB_ACCESS_TOKEN} + +; Whether empty notifications should be displayed or not +;;empty-notifications = false + +; Number of seconds in between requests +;;interval = 10 + +; Available tags: +; <label> (default) +;;format = <label> +;;format-prefix = ${github.icon} + +; Available tokens: +; %notifications% (default) +; Default: Notifications: %notifications% +;;label = %notifications% + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;;[module/i3] +;;type = internal/i3 + +; Only show workspaces defined on the same output as the bar +; +; Useful if you want to show monitor specific workspaces +; on different bars +; +; Default: false +;;pin-workspaces = true + +; This will split the workspace name on ':' +; Default: false +;;strip-wsnumbers = true + +; Sort the workspaces by index instead of the default +; sorting that groups the workspaces by output +; Default: false +;;index-sort = true + +; Create click handler used to focus workspace +; Default: true +;;enable-click = false + +; Create scroll handlers used to cycle workspaces +; Default: true +;;enable-scroll = false + +; Wrap around when reaching the first/last workspace +; Default: true +;;wrapping-scroll = false + +; Set the scroll cycle direction +; Default: true +;;reverse-scroll = false + +; Use fuzzy (partial) matching on labels when assigning +; icons to workspaces +; Example: code;♚ will apply the icon to all workspaces +; containing 'code' in the label +; Default: false +;;fuzzy-match = true + +; ws-icon-[0-9]+ = label;icon +; NOTE: The label needs to match the name of the i3 workspace +;;ws-icon-0 = 1;♚ +;;ws-icon-1 = 2;♛ +;;ws-icon-2 = 3;♜ +;;ws-icon-3 = 4;♝ +;;ws-icon-4 = 5;♞ +;;ws-icon-default = ♟ +; NOTE: You cannot skip icons, e.g. to get a ws-icon-6 +; you must also define a ws-icon-5. + +; Available tags: +; <label-state> (default) - gets replaced with <label-(focused|unfocused|visible|urgent)> +; <label-mode> (default) +;;format = <label-state> <label-mode> + +; Available tokens: +; %mode% +; Default: %mode% +;;label-mode = %mode% +;;label-mode-padding = 2 +;;label-mode-background = #e60053 + +; Available tokens: +; %name% +; %icon% +; %index% +; %output% +; Default: %icon% %name% +;;label-focused = %index% +;;label-focused-foreground = #ffffff +;;label-focused-background = #3f3f3f +;;label-focused-underline = #fba922 +;;label-focused-padding = 4 + +; Available tokens: +; %name% +; %icon% +; %index% +; %output% +; Default: %icon% %name% +;;label-unfocused = %index% +;;label-unfocused-padding = 4 + +; Available tokens: +; %name% +; %icon% +; %index% +; %output% +; Default: %icon% %name% +;;label-visible = %index% +;;label-visible-underline = #555555 +;;label-visible-padding = 4 + +; Available tokens: +; %name% +; %icon% +; %index% +; %output% +; Default: %icon% %name% +;;label-urgent = %index% +;;label-urgent-foreground = #000000 +;;label-urgent-background = #bd2c40 +;;label-urgent-padding = 4 + +; Separator in between workspaces +;;label-separator = | +;;label-separator-padding = 2 +;;label-separator-foreground = #ffb52a + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/memory] +type = internal/memory + +; Seconds to sleep between updates +; Default: 1 +interval = 1 + +; Available tags: +; <label> (default) +; <bar-used> +; <bar-free> +; <ramp-used> +; <ramp-free> +; <bar-swap-used> +; <bar-swap-free> +; <ramp-swap-used> +; <ramp-swap-free> +format = <label> +format-prefix = " " + +; Available tokens: +; %percentage_used% (default) +; %percentage_free% +; %gb_used% +; %gb_free% +; %gb_total% +; %mb_used% +; %mb_free% +; %mb_total% +; %percentage_swap_used% +; %percentage_swap_free% +; %mb_swap_total% +; %mb_swap_free% +; %mb_swap_used% +; %gb_swap_total% +; %gb_swap_free% +; %gb_swap_used% + +label = " %percentage_used%%" + +; Only applies if <ramp-used> is used +;;ramp-used-0 = ${memory.used0} +;;ramp-used-1 = ${memory.used1} +;;ramp-used-2 = ${memory.used2} + +; Only applies if <ramp-free> is used +;;ramp-free-0 = ${memory.free0} +;;ramp-free-1 = ${memory.free1} +;;ramp-free-2 = ${memory.free2} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/mpd] +type = internal/mpd + +; Host where mpd is running (either ip or domain name) +; Can also be the full path to a unix socket where mpd is running. +host = 127.0.0.1 +port = 6600 +password = kapuchinamusica + +; Seconds to sleep between progressbar/song timer sync +; Default: 1 +interval = 1 + +; Available tags: +; <label-song> (default) +; <label-time> +; <bar-progress> +; <toggle> - gets replaced with <icon-(pause|play)> +; <toggle-stop> - gets replaced with <icon-(stop|play)> +; <icon-random> +; <icon-repeat> +; <icon-repeatone> (deprecated) +; <icon-single> - Toggle playing only a single song. Replaces <icon-repeatone> +; <icon-consume> +; <icon-prev> +; <icon-stop> +; <icon-play> +; <icon-pause> +; <icon-next> +; <icon-seekb> +; <icon-seekf> +format-online = <label-song> <icon-prev> <toggle> <icon-next> +format-online-prefix =  +format-online-foreground = ${color.foreground} + +;format-playing = ${self.format-online} +;format-paused = ${self.format-online} +;format-stopped = ${self.format-online} + +; Available tags: +; <label-offline> +format-offline = <label-offline> +format-offline-prefix =  +format-offline-foreground = ${color.foreground} + +; Available tokens: +; %artist% +; %album-artist% +; %album% +; %date% +; %title% +; Default: %artist% - %title% +label-song = " %artist% - %title%" +label-song-maxlen = 25 +label-song-ellipsis = true + +; Available tokens: +; %elapsed% +; %total% +; Default: %elapsed% / %total% +label-time = %elapsed% / %total% + +; Available tokens: +; None +label-offline = " Offline" + +; Only applies if <icon-X> is used +icon-play =  +icon-pause =  +icon-stop =  +icon-next =  +icon-prev =  +icon-seekb = +icon-seekf = +icon-random = +icon-repeat = +icon-repeatone = +icon-single = +icon-consume = + +; Used to display the state of random/repeat/repeatone/single +; Only applies if <icon-[random|repeat|repeatone|single]> is used +toggle-on-foreground = ${color.primary} +toggle-off-foreground = ${color.red} + +; Only applies if <bar-progress> is used +;;bar-progress-width = 45 +;;bar-progress-indicator = | +;;bar-progress-fill = ─ +;;bar-progress-empty = ─ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +; If you use both a wired and a wireless network, just add 2 module definitions. For example +[module/wired-network] +type = internal/network +interface = eth0 + +[module/wireless-network] +type = internal/network +interface = wlp3s0 + +; Normal Module +[module/network] +type = internal/network +interface = wlp0s20f3 + +; Seconds to sleep between updates +; Default: 1 +interval = 1.0 + +; Test connectivity every Nth update +; A value of 0 disables the feature +; NOTE: Experimental (needs more testing) +; Default: 0 +;ping-interval = 3 + +; @deprecated: Define min width using token specifiers (%downspeed:min% and %upspeed:min%) +; Minimum output width of upload/download rate +; Default: 3 +;;udspeed-minwidth = 5 + +; Accumulate values from all interfaces +; when querying for up/downspeed rate +; Default: false +accumulate-stats = true + +; Consider an `UNKNOWN` interface state as up. +; Some devices have an unknown state, even when they're running +; Default: false +unknown-as-up = true + +; Available tags: +; <label-connected> (default) +; <ramp-signal> +format-connected = <ramp-signal> <label-connected> + +; Available tags: +; <label-disconnected> (default) +format-disconnected = <label-disconnected> +format-disconnected-prefix =  + +; Available tags: +; <label-connected> (default) +; <label-packetloss> +; <animation-packetloss> +;;format-packetloss = <animation-packetloss> <label-connected> + +; Available tokens: +; %ifname% [wireless+wired] +; %local_ip% [wireless+wired] +; %local_ip6% [wireless+wired] +; %essid% [wireless] +; %signal% [wireless] +; %upspeed% [wireless+wired] +; %downspeed% [wireless+wired] +; %linkspeed% [wired] +; Default: %ifname% %local_ip% +label-connected = "%{A1:networkmanager_dmenu &:}%essid%%{A}" + +; Available tokens: +; %ifname% [wireless+wired] +; Default: (none) +label-disconnected = "%{A1:networkmanager_dmenu &:} Offline%{A}" +;;label-disconnected-foreground = #66ffffff + +; Available tokens: +; %ifname% [wireless+wired] +; %local_ip% [wireless+wired] +; %local_ip6% [wireless+wired] +; %essid% [wireless] +; %signal% [wireless] +; %upspeed% [wireless+wired] +; %downspeed% [wireless+wired] +; %linkspeed% [wired] +; Default: (none) +;label-packetloss = %essid% +;label-packetloss-foreground = #eefafafa + +; Only applies if <ramp-signal> is used +ramp-signal-0 =  +ramp-signal-1 =  +ramp-signal-2 =  + +; Only applies if <animation-packetloss> is used +;;animation-packetloss-0 = ⚠ +;;animation-packetloss-0-foreground = #ffa64c +;;animation-packetloss-1 = ⚠ +;;animation-packetloss-1-foreground = #000000 +; Framerate in milliseconds +;;animation-packetloss-framerate = 500 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/speed] +type = internal/network +interface = wlp0s20f3 + +; Seconds to sleep between updates +; Default: 1 +interval = 1.0 + +; Test connectivity every Nth update +; A value of 0 disables the feature +; NOTE: Experimental (needs more testing) +; Default: 0 +;ping-interval = 3 + +; @deprecated: Define min width using token specifiers (%downspeed:min% and %upspeed:min%) +; Minimum output width of upload/download rate +; Default: 3 +;;udspeed-minwidth = 5 + +; Accumulate values from all interfaces +; when querying for up/downspeed rate +; Default: false +accumulate-stats = irue + +; Consider an `UNKNOWN` interface state as up. +; Some devices have an unknown state, even when they're running +; Default: false +unknown-as-up = true + +; Available tags: +; <label-connected> (default) +; <ramp-signal> +format-connected = <label-connected> +format-connected-prefix =  +; Available tags: +; <label-disconnected> (default) +format-disconnected = <label-disconnected> +format-disconnected-prefix = 󰖪 + +; Available tags: +; <label-connected> (default) +; <label-packetloss> +; <animation-packetloss> +;;format-packetloss = <animation-packetloss> <label-connected> + +; Available tokens: +; %ifname% [wireless+wired] +; %local_ip% [wireless+wired] +; %local_ip6% [wireless+wired] +; %essid% [wireless] +; %signal% [wireless] +; %upspeed% [wireless+wired] +; %downspeed% [wireless+wired] +; %linkspeed% [wired] +; Default: %ifname% %local_ip% +label-connected = " %{A1:networkmanager_dmenu &:} %essid% %downspeed:8% 󰇚 %upspeed:8% 󰕒 %{A}" + +; Available tokens: +; %ifname% [wireless+wired] +; Default: (none) +label-disconnected = " %{A1:networkmanager_dmenu &:} Disconnected%{A}" +;;label-disconnected-foreground = #66ffffff + +; Available tokens: +; %ifname% [wireless+wired] +; %local_ip% [wireless+wired] +; %local_ip6% [wireless+wired] +; %essid% [wireless] +; %signal% [wireless] +; %upspeed% [wireless+wired] +; %downspeed% [wireless+wired] +; %linkspeed% [wired] +; Default: (none) +;label-packetloss = %essid% +;label-packetloss-foreground = #eefafafa + +; Only applies if <ramp-signal> is used +ramp-signal-0 =  +ramp-signal-1 =  +ramp-signal-2 =  + +; Only applies if <animation-packetloss> is used +;;animation-packetloss-0 = ⚠ +;;animation-packetloss-0-foreground = #ffa64c +;;animation-packetloss-1 = ⚠ +;;animation-packetloss-1-foreground = #000000 +; Framerate in milliseconds +;;animation-packetloss-framerate = 500 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/pulseaudio] +type = internal/pulseaudio + +; Sink to be used, if it exists (find using `pacmd list-sinks`, name field) +; If not, uses default sink +sink = alsa_output.pci-0000_03_00.6.analog-stereo + +; Use PA_VOLUME_UI_MAX (~153%) if true, or PA_VOLUME_NORM (100%) if false +; Default: true +use-ui-max = false + +; Interval for volume increase/decrease (in percent points) +; Default: 5 +interval = 5 + +; Available tags: +; <label-volume> (default) +; <ramp-volume> +; <bar-volume> +format-volume = <ramp-volume> <label-volume> + +; Available tags: +; <label-muted> (default) +; <ramp-volume> +; <bar-volume> +format-muted = <label-muted> +format-muted-prefix =  + +; Available tokens: +; %percentage% (default) +label-volume = %percentage%% + +; Available tokens: +; %percentage% (default +label-muted = " Muted" +label-muted-foreground = ${color.red} + +; Only applies if <ramp-volume> is used +; Only applies if <ramp-volume> is used +ramp-volume-0 =  +ramp-volume-1 =  +ramp-volume-2 =  +ramp-volume-3 =  +ramp-volume-4 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/temperature] +type = internal/temperature + +; Seconds to sleep between updates +; Default: 1 +interval = 1.5 + +; Thermal zone to use +; To list all the zone types, run +; $ for i in /sys/class/thermal/thermal_zone*; do echo "$i: $(<$i/type)"; done +; Default: 0 +thermal-zone = 0 + +; Full path of temperature sysfs path +; Use `sensors` to find preferred temperature source, then run +; $ for i in /sys/class/hwmon/hwmon*/temp*_input; do echo "$(<$(dirname $i)/name): $(cat ${i%_*}_label 2>/dev/null || echo $(basename ${i%_*})) $(readlink -f $i)"; done +; to find path to desired file +; Default reverts to thermal zone setting +hwmon-path = /sys/devices/platform/coretemp.0/hwmon/hwmon5/temp1_input +;;hwmon-path = /sys/devices/pci0000:00/0000:00:01.3/0000:01:00.0/hwmon/hwmon0/temp1_input + +; Threshold temperature to display warning label (in degrees celsius) +; Default: 80 +warn-temperature = 65 + +; Whether or not to show units next to the temperature tokens (°C, °F) +; Default: true +units = true + +; Available tags: +; <label> (default) +; <ramp> +format = + +; Available tags: +; <label-warn> (default) +; <ramp> +format-warn = <ramp> <label-warn> + +; Available tokens: +; %temperature% (deprecated) +; %temperature-c% (default, temperature in °C) +; %temperature-f% (temperature in °F) +label = "%temperature-c% " + +; Available tokens: +; %temperature% (deprecated) +; %temperature-c% (default, temperature in °C) +; %temperature-f% (temperature in °F) +label-warn = "%temperature-c% " +label-warn-foreground = ${color.red} + +; Requires the <ramp> tag +; The icon selection will range from 0 to `warn-temperature` +; with the current temperature as index. +ramp-0 =  +ramp-1 =  +ramp-2 =  +ramp-3 =  +ramp-4 =  + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/tray] +type = internal/tray + +tray-foreground = ${color.foreground} +format-margin = 2px +tray-spacing = 10px +tray-size = 66% + +[module/xkeyboard] +type = internal/xkeyboard + +; List of indicators to ignore +blacklist-0 = num lock +blacklist-1 = scroll lock + +; Available tags: +; <label-layout> (default) +; <label-indicator> (default) +format = <label-layout> <label-indicator> +format-prefix =  + +; Available tokens: +; %layout% +; %name% +; %number% +; Default: %layout% + +label-layout = "%icon% %layout%" + +; Available tokens: +; %name% +; Default: %name% +label-indicator-on = %name% +label-indicator-on-foreground = ${color.red} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/title] +type = internal/xwindow + +; Available tags: +; <label> (default) +format = <label> +;format-prefix =  + +; Available tokens: +; %title% +; Default: %title% +label = "%title%" +label-maxlen = 35 + +; Used instead of label when there is no window title +label-empty = Kolinux - farther from God with every day + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/workspaces] +type = internal/xworkspaces + +; Only show workspaces defined on the same output as the bar +; +; Useful if you want to show monitor specific workspaces +; on different bars +; +; Default: false +pin-workspaces = true + +; Create click handler used to focus desktop +; Default: true +enable-click = true + +; Create scroll handlers used to cycle desktops +; Default: true +enable-scroll = false + +; icon-[0-9]+ = <desktop-name>;<icon> +; NOTE: The desktop name needs to match the name configured by the WM +; You can get a list of the defined desktops using: +; $ xprop -root _NET_DESKTOP_NAMES +;icon-0 = Admin;󱡝 +;icon-1 = Messengers;󰪌 +icon-0 = Browsing;󰲠 +icon-1 = I;󰲢 +icon-2 = II;󰲤 +icon-3 = III;󰲦 +icon-4 = IV;󰲨 +icon-5 = Coding;󰲪 +icon-6 = Zettlr;󰲬 +icon-7 = Messengers;󰲮 +icon-8 = Admin;󰲰 +icon-9 = V;󰿬 +icon-10 = VI;󰍶 +icon-11 = VII;󰐗 +icon-default = 󰃚 + +; Available tags: +; <label-monitor> +; <label-state> - gets replaced with <label-(active|urgent|occupied|empty)> +; Default: <label-state> +format = <label-state> +format-padding = 1 + +; Available tokens: +; %name% +; Default: %name% +label-monitor = %name% + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +label-active = "󰻂" +label-active-foreground = ${color.yellow} + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +label-occupied = %icon% +label-occupied-foreground = ${color.primary} + +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +label-urgent = "󰵚" +label-urgent-foreground = ${color.green} +;label-urgent-underline = ${color.red} +; Available tokens: +; %name% +; %icon% +; %index% +; Default: %icon% %name% +label-empty = "󰄰" +label-empty-foreground = ${color.foreground} + +label-active-padding = 2 +label-urgent-padding = 2 +label-occupied-padding = 2 +label-empty-padding = 2 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/preview.ini b/themes/blueleaves/polybar/preview.ini new file mode 100644 index 0000000..b4c6212 --- /dev/null +++ b/themes/blueleaves/polybar/preview.ini @@ -0,0 +1,321 @@ +;; ┌────────────────────────────────────────────────────────────────────┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█▀█░█▀▄░█▀▀░█░█░▀█▀░█▀▀░█░█░█▀▀│ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█▀▀░█▀▄░█▀▀░▀▄▀░░█░░█▀▀░█▄█░▀▀█│ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀░░░▀░▀░▀▀▀░░▀░░▀▀▀░▀▀▀░▀░▀░▀▀▀│ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └────────────────────────────────────────────────────────────────────┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Global WM Settings + +[global/wm] +; Adjust the _NET_WM_STRUT_PARTIAL top value +; Used for top aligned bars +margin-bottom = 0 + +; Adjust the _NET_WM_STRUT_PARTIAL bottom value +; Used for bottom aligned bars +margin-top = 0 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; File Inclusion +; include an external file, like module file, etc. + +include-file = ~/.config/polybar/hack/bars.ini +include-file = ~/.config/polybar/hack/colors.ini +include-file = ~/.config/polybar/hack/modules.ini +include-file = ~/.config/polybar/hack/user_modules.ini + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Bar Settings + +[bar/main] +; Use either of the following command to list available outputs: +; If unspecified, the application will pick the first one it finds. +; $ polybar -m | cut -d ':' -f 1 +; $ xrandr -q | grep " connected" | cut -d ' ' -f1 +monitor = + +; Use the specified monitor as a fallback if the main one is not found. +monitor-fallback = + +; Require the monitor to be in connected state +; XRandR sometimes reports my monitor as being disconnected (when in use) +monitor-strict = false + +; Tell the Window Manager not to configure the window. +; Use this to detach the bar if your WM is locking its size/position. +override-redirect = false + +; Put the bar at the bottom of the screen +bottom = false + +; Prefer fixed center position for the `modules-center` block +; When false, the center position will be based on the size of the other blocks. +fixed-center = true + +; Dimension defined as pixel value (e.g. 35) or percentage (e.g. 50%), +; the percentage can optionally be extended with a pixel offset like so: +; 50%:-10, this will result in a width or height of 50% minus 10 pixels +width = 100% +height = 26 + +; Offset defined as pixel value (e.g. 35) or percentage (e.g. 50%) +; the percentage can optionally be extended with a pixel offset like so: +; 50%:-10, this will result in an offset in the x or y direction +; of 50% minus 10 pixels +offset-x = 0% +offset-y = 0% + +; Background ARGB color (e.g. #f00, #ff992a, #ddff1023) +background = ${color.background} + +; Foreground ARGB color (e.g. #f00, #ff992a, #ddff1023) +foreground = ${color.foreground} + +; Background gradient (vertical steps) +; background-[0-9]+ = #aarrggbb +;;background-0 = + +; Value used for drawing rounded corners +; Note: This shouldn't be used together with border-size because the border +; doesn't get rounded +; Individual top/bottom values can be defined using: +; radius-{top,bottom} +radius-top = 0.0 +radius-bottom = 0.0 + +; Under-/overline pixel size and argb color +; Individual values can be defined using: +; {overline,underline}-size +; {overline,underline}-color +underline-size = 2 +underline-color = ${color.foreground} + +; Values applied to all borders +; Individual side values can be defined using: +; border-{left,top,right,bottom}-size +; border-{left,top,right,bottom}-color +; The top and bottom borders are added to the bar height, so the effective +; window height is: +; height + border-top-size + border-bottom-size +; Meanwhile the effective window width is defined entirely by the width key and +; the border is placed withing this area. So you effectively only have the +; following horizontal space on the bar: +; width - border-right-size - border-left-size +;border-bottom-size = 2 +;border-bottom-color = ${color.primary} + +; Number of spaces to add at the beginning/end of the bar +; Individual side values can be defined using: +; padding-{left,right} +padding = 1 + +; Number of spaces to add before/after each module +; Individual side values can be defined using: +; module-margin-{left,right} +module-margin-left = 0 +module-margin-right = 0 + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +; Fonts are defined using <font-name>;<vertical-offset> +; Font names are specified using a fontconfig pattern. +; font-0 = NotoSans-Regular:size=8;2 +; font-1 = MaterialIcons:size=10 +; font-2 = Termsynu:size=8;-1 +; font-3 = FontAwesome:size=10 +; See the Fonts wiki page for more details + +font-0 = "Terminus:size=10;3" +font-1 = "waffle:size=10;3" + +; Modules are added to one of the available blocks +; modules-left = cpu ram +; modules-center = xwindow xbacklight +; modules-right = ipc clock + +;modules-left = launcher workspaces google github reddit gmail twitter +;modules-center = +;modules-right = mpd updates alsa battery network date sysmenu + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[bar/top] +inherit = bar/main +offset-y = 10 +border-top-size = 2 +border-top-color = ${color.primary} +modules-left = launcher sep title +modules-center = workspaces +modules-right = alsa sep battery sep checknet sep date sep sysmenu +enable-ipc = true + +[bar/mid] +inherit = bar/main +offset-y = 48 +modules-center = battery_bar sep cpu_bar sep memory_bar sep filesystem_bar sep mpd_bar sep volume sep brightness +enable-ipc = true + +[bar/bottom] +inherit = bar/main +offset-y = 84 +border-bottom-size = 2 +border-bottom-color = ${color.primary} +modules-left = menu sep mpd sep color-switch +modules-center = cpu sep memory sep filesystem sep temperature sep updates sep speed +modules-right = backlight sep pulseaudio sep network sep keyboard sep powermenu +enable-ipc = true + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +; The separator will be inserted between the output of each module +separator = + +; Opacity value between 0.0 and 1.0 used on fade in/out +dim-value = 1.0 + +; Value to be used to set the WM_NAME atom +; If the value is empty or undefined, the atom value +; will be created from the following template: polybar-[BAR]_[MONITOR] +; NOTE: The placeholders are not available for custom values +wm-name = + +; Locale used to localize various module data (e.g. date) +; Expects a valid libc locale, for example: sv_SE.UTF-8 +locale = + +; Position of the system tray window +; If empty or undefined, tray support will be disabled +; NOTE: A center aligned tray will cover center aligned modules +; +; Available positions: +; left +; center +; right +; none +tray-position = none + +; If true, the bar will not shift its +; contents when the tray changes +tray-detached = false + +; Tray icon max size +tray-maxsize = 16 + +; Background color for the tray container +; ARGB color (e.g. #f00, #ff992a, #ddff1023) +; By default the tray container will use the bar +; background color. +tray-background = ${color.background} + +; Tray offset defined as pixel value (e.g. 35) or percentage (e.g. 50%) +tray-offset-x = 0 +tray-offset-y = 0 + +; Pad the sides of each tray icon +tray-padding = 0 + +; Scale factor for tray clients +tray-scale = 1.0 + +; Restack the bar window and put it above the +; selected window manager's root +; +; Fixes the issue where the bar is being drawn +; on top of fullscreen window's +; +; Currently supported WM's: +; bspwm +; i3 (requires: `override-redirect = true`) +;;wm-restack = + +; Set a DPI values used when rendering text +; This only affects scalable fonts +; dpi = + +; Enable support for inter-process messaging +; See the Messaging wiki page for more details. +;enable-ipc = true + +; Fallback click handlers that will be called if +; there's no matching module handler found. +click-left = +click-middle = +click-right = +scroll-up = +scroll-down = +double-click-left = +double-click-middle = +double-click-right = + +; Requires polybar to be built with xcursor support (xcb-util-cursor) +; Possible values are: +; - default : The default pointer as before, can also be an empty string (default) +; - pointer : Typically in the form of a hand +; - ns-resize : Up and down arrows, can be used to indicate scrolling +cursor-click = +cursor-scroll = + +;; WM Workspace Specific + +; bspwm +;;scroll-up = bspwm-desknext +;;scroll-down = bspwm-deskprev +;;scroll-up = bspc desktop -f prev.local +;;scroll-down = bspc desktop -f next.local + +;i3 +;;scroll-up = i3wm-wsnext +;;scroll-down = i3wm-wsprev +;;scroll-up = i3-msg workspace next_on_output +;;scroll-down = i3-msg workspace prev_on_output + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +;; Application Settings + +[settings] +; The throttle settings lets the eventloop swallow up til X events +; if they happen within Y millisecond after first event was received. +; This is done to prevent flood of update event. +; +; For example if 5 modules emit an update event at the same time, we really +; just care about the last one. But if we wait too long for events to swallow +; the bar would appear sluggish so we continue if timeout +; expires or limit is reached. +throttle-output = 5 +throttle-output-for = 10 + +; Time in milliseconds that the input handler will wait between processing events +;throttle-input-for = 30 + +; Reload upon receiving XCB_RANDR_SCREEN_CHANGE_NOTIFY events +screenchange-reload = false + +; Compositing operators +; @see: https://www.cairographics.org/manual/cairo-cairo-t.html#cairo-operator-t +compositing-background = source +compositing-foreground = over +compositing-overline = over +compositing-underline = over +compositing-border = over + +; Define fallback values used by all module formats +;format-foreground = +;format-background = +;format-underline = +;format-overline = +;format-spacing = +;format-padding = +;format-margin = +;format-offset = + +; Enables pseudo-transparency for the bar +; If set to true the bar can be transparent without a compositor. +pseudo-transparency = false + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ diff --git a/themes/blueleaves/polybar/preview.sh b/themes/blueleaves/polybar/preview.sh new file mode 100755 index 0000000..e2addb1 --- /dev/null +++ b/themes/blueleaves/polybar/preview.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +DIR="$HOME/.config/polybar/hack" + +# Terminate already running bar instances +killall -q polybar + +# Wait until the processes have been shut down +while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done + +# Launch the preview bar +polybar -q top -c "$DIR"/preview.ini & +polybar -q mid -c "$DIR"/preview.ini & +polybar -q bottom -c "$DIR"/preview.ini & diff --git a/themes/blueleaves/polybar/scripts/bluetooth.sh b/themes/blueleaves/polybar/scripts/bluetooth.sh new file mode 100755 index 0000000..9ac7dca --- /dev/null +++ b/themes/blueleaves/polybar/scripts/bluetooth.sh @@ -0,0 +1,8 @@ +devices_amount=$(bluetoothctl devices | cut -f2 -d' ' | while read uuid; do bluetoothctl info $uuid; done|grep -e "Connected: yes" | wc -l) + +if [ $devices_amount -gt 0 ]; then + echo $devices_amount +else + echo "" +fi + diff --git a/themes/blueleaves/polybar/scripts/check-network b/themes/blueleaves/polybar/scripts/check-network new file mode 100755 index 0000000..d268826 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/check-network @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +count=0 +connected=" " +disconnected="󰤫 " + +ID="$(ip link | awk '/state UP/ {print $2}')" + +while true; do + if (ping -c 1 archlinux.org || ping -c 1 bitbucket.org || ping -c 1 github.com || ping -c 1 sourceforge.net) &>/dev/null; then + if [[ $ID == e* ]]; then + echo "$connected" ; sleep 10 + else + echo "$connected" ; sleep 10 + fi + else + echo "$disconnected" ; sleep 5 + fi +done diff --git a/themes/blueleaves/polybar/scripts/checkupdates b/themes/blueleaves/polybar/scripts/checkupdates new file mode 100755 index 0000000..4d8a5e8 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/checkupdates @@ -0,0 +1,117 @@ +#!/usr/bin/bash +# +# checkupdates: Safely print a list of pending updates. +# +# Copyright (c) 2013 Kyle Keen <keenerd@gmail.com> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +declare -r myname='checkupdates' +declare -r myver='1.0.0' + +plain() { + (( QUIET )) && return + local mesg=$1; shift + printf "${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&1 +} + +msg() { + (( QUIET )) && return + local mesg=$1; shift + printf "${GREEN}==>${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&1 +} + +msg2() { + (( QUIET )) && return + local mesg=$1; shift + printf "${BLUE} ->${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&1 +} + +ask() { + local mesg=$1; shift + printf "${BLUE}::${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}" "$@" >&1 +} + +warning() { + local mesg=$1; shift + printf "${YELLOW}==> $(gettext "WARNING:")${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2 +} + +error() { + local mesg=$1; shift + printf "${RED}==> $(gettext "ERROR:")${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2 +} + +# check if messages are to be printed using color +unset ALL_OFF BOLD BLUE GREEN RED YELLOW +if [[ -t 2 && ! $USE_COLOR = "n" ]]; then + # prefer terminal safe colored and bold text when tput is supported + if tput setaf 0 &>/dev/null; then + ALL_OFF="$(tput sgr0)" + BOLD="$(tput bold)" + BLUE="${BOLD}$(tput setaf 4)" + GREEN="${BOLD}$(tput setaf 2)" + RED="${BOLD}$(tput setaf 1)" + YELLOW="${BOLD}$(tput setaf 3)" + else + ALL_OFF="\e[1;0m" + BOLD="\e[1;1m" + BLUE="${BOLD}\e[1;34m" + GREEN="${BOLD}\e[1;32m" + RED="${BOLD}\e[1;31m" + YELLOW="${BOLD}\e[1;33m" + fi +fi +readonly ALL_OFF BOLD BLUE GREEN RED YELLOW + + +if (( $# > 0 )); then + echo "${myname} v${myver}" + echo + echo "Safely print a list of pending updates" + echo + echo "Usage: ${myname}" + echo + echo 'Note: Export the "CHECKUPDATES_DB" variable to change the path of the temporary database.' + exit 0 +fi + +if ! type -P fakeroot >/dev/null; then + error 'Cannot find the fakeroot binary.' + exit 1 +fi + +if [[ -z $CHECKUPDATES_DB ]]; then + CHECKUPDATES_DB="${TMPDIR:-/tmp}/checkup-db-${USER}/" +fi + +trap 'rm -f $CHECKUPDATES_DB/db.lck' INT TERM EXIT + +DBPath="$(pacman-conf DBPath)" +if [[ -z "$DBPath" ]] || [[ ! -d "$DBPath" ]]; then + DBPath="/var/lib/pacman/" +fi + +mkdir -p "$CHECKUPDATES_DB" +ln -s "${DBPath}/local" "$CHECKUPDATES_DB" &> /dev/null +if ! fakeroot -- pacman -Sy --dbpath "$CHECKUPDATES_DB" --logfile /dev/null &> /dev/null; then + error 'Cannot fetch updates' + exit 1 +fi +pacman -Qu --dbpath "$CHECKUPDATES_DB" 2> /dev/null | grep -v '\[.*\]' + +exit 0 + +# vim: set noet: diff --git a/themes/blueleaves/polybar/scripts/color-switch.sh b/themes/blueleaves/polybar/scripts/color-switch.sh new file mode 100755 index 0000000..f8224f6 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/color-switch.sh @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +SDIR="$HOME/.config/polybar/hack/scripts" + +# Launch Rofi +MENU="$(rofi -no-config -no-lazy-grab -sep "|" -dmenu -i -p '' \ +-theme $SDIR/rofi/styles.rasi \ +<<< "♥ amber|♥ blue|♥ blue-gray|♥ brown|♥ cyan|♥ deep-orange|\ +♥ deep-purple|♥ green|♥ gray|♥ indigo|♥ blue-light|♥ green-light|\ +♥ lime|♥ orange|♥ pink|♥ purple|♥ red|♥ teal|♥ yellow|♥ amber-dark|\ +♥ blue-dark|♥ blue-gray-dark|♥ brown-dark|♥ cyan-dark|♥ deep-orange-dark|\ +♥ deep-purple-dark|♥ green-dark|♥ gray-dark|♥ indigo-dark|♥ blue-light-dark|\ +♥ green-light-dark|♥ lime-dark|♥ orange-dark|♥ pink-dark|♥ purple-dark|♥ red-dark|♥ teal-dark|♥ yellow-dark|")" + case "$MENU" in + ## Light Colors + *amber) "$SDIR"/colors-light.sh --amber ;; + *blue) "$SDIR"/colors-light.sh --blue ;; + *blue-gray) "$SDIR"/colors-light.sh --blue-gray ;; + *brown) "$SDIR"/colors-light.sh --brown ;; + *cyan) "$SDIR"/colors-light.sh --cyan ;; + *deep-orange) "$SDIR"/colors-light.sh --deep-orange ;; + *deep-purple) "$SDIR"/colors-light.sh --deep-purple ;; + *green) "$SDIR"/colors-light.sh --green ;; + *gray) "$SDIR"/colors-light.sh --gray ;; + *indigo) "$SDIR"/colors-light.sh --indigo ;; + *blue-light) "$SDIR"/colors-light.sh --light-blue ;; + *green-light) "$SDIR"/colors-light.sh --light-green ;; + *lime) "$SDIR"/colors-light.sh --lime ;; + *orange) "$SDIR"/colors-light.sh --orange ;; + *pink) "$SDIR"/colors-light.sh --pink ;; + *purple) "$SDIR"/colors-light.sh --purple ;; + *red) "$SDIR"/colors-light.sh --red ;; + *teal) "$SDIR"/colors-light.sh --teal ;; + *yellow) "$SDIR"/colors-light.sh --yellow ;; + ## Dark Colors + *amber-dark) "$SDIR"/colors-dark.sh --amber ;; + *blue-dark) "$SDIR"/colors-dark.sh --blue ;; + *blue-gray-dark) "$SDIR"/colors-dark.sh --blue-gray ;; + *brown-dark) "$SDIR"/colors-dark.sh --brown ;; + *cyan-dark) "$SDIR"/colors-dark.sh --cyan ;; + *deep-orange-dark) "$SDIR"/colors-dark.sh --deep-orange ;; + *deep-purple-dark) "$SDIR"/colors-dark.sh --deep-purple ;; + *green-dark) "$SDIR"/colors-dark.sh --green ;; + *gray-dark) "$SDIR"/colors-dark.sh --gray ;; + *indigo-dark) "$SDIR"/colors-dark.sh --indigo ;; + *blue-light-dark) "$SDIR"/colors-dark.sh --light-blue ;; + *green-light-dark) "$SDIR"/colors-dark.sh --light-green ;; + *lime-dark) "$SDIR"/colors-dark.sh --lime ;; + *orange-dark) "$SDIR"/colors-dark.sh --orange ;; + *pink-dark) "$SDIR"/colors-dark.sh --pink ;; + *purple-dark) "$SDIR"/colors-dark.sh --purple ;; + *red-dark) "$SDIR"/colors-dark.sh --red ;; + *teal-dark) "$SDIR"/colors-dark.sh --teal ;; + *yellow-dark) "$SDIR"/colors-dark.sh --yellow + esac diff --git a/themes/blueleaves/polybar/scripts/colors-dark.sh b/themes/blueleaves/polybar/scripts/colors-dark.sh new file mode 100755 index 0000000..2798200 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/colors-dark.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash + +# Color files +PFILE="$HOME/.config/polybar/hack/colors.ini" +RFILE="$HOME/.config/polybar/hack/scripts/rofi/colors.rasi" + +# Change colors +change_color() { + # polybar + sed -i -e 's/background = #.*/background = #141C21/g' $PFILE + sed -i -e 's/foreground = #.*/foreground = #FFFFFF/g' $PFILE + sed -i -e "s/primary = #.*/primary = $AC/g" $PFILE + + # rofi + cat > $RFILE <<- EOF + /* colors */ + + * { + al: #00000000; + bg: #141C21FF; + ac: ${AC}FF; + se: ${AC}26; + fg: #FFFFFFFF; + } + EOF + + polybar-msg cmd restart +} + +if [[ $1 = "--amber" ]]; then + AC="#ffb300" + change_color +elif [[ $1 = "--blue" ]]; then + AC="#1e88e5" + change_color +elif [[ $1 = "--blue-gray" ]]; then + AC="#546e7a" + change_color +elif [[ $1 = "--brown" ]]; then + AC="#6d4c41" + change_color +elif [[ $1 = "--cyan" ]]; then + AC="#00acc1" + change_color +elif [[ $1 = "--deep-orange" ]]; then + AC="#f4511e" + change_color +elif [[ $1 = "--deep-purple" ]]; then + AC="#5e35b1" + change_color +elif [[ $1 = "--green" ]]; then + AC="#43a047" + change_color +elif [[ $1 = "--gray" ]]; then + AC="#757575" + change_color +elif [[ $1 = "--indigo" ]]; then + AC="#3949ab" + change_color +elif [[ $1 = "--light-blue" ]]; then + AC="#039be5" + change_color +elif [[ $1 = "--light-green" ]]; then + AC="#7cb342" + change_color +elif [[ $1 = "--lime" ]]; then + AC="#c0ca33" + change_color +elif [[ $1 = "--orange" ]]; then + AC="#fb8c00" + change_color +elif [[ $1 = "--pink" ]]; then + AC="#d81b60" + change_color +elif [[ $1 = "--purple" ]]; then + AC="#8e24aa" + change_color +elif [[ $1 = "--red" ]]; then + AC="#e53935" + change_color +elif [[ $1 = "--teal" ]]; then + AC="#00897b" + change_color +elif [[ $1 = "--yellow" ]]; then + AC="#fdd835" + change_color +else + cat <<- _EOF_ + No option specified, Available options: + --amber --blue --blue-gray --brown + --cyan --deep-orange --deep-purple --green + --gray --indigo --light-blue --light-green + --lime --orange --pink --purple + --red --teal --yellow + _EOF_ +fi diff --git a/themes/blueleaves/polybar/scripts/colors-light.sh b/themes/blueleaves/polybar/scripts/colors-light.sh new file mode 100755 index 0000000..335f5c4 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/colors-light.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env bash + +# Color files +PFILE="$HOME/.config/polybar/hack/colors.ini" +RFILE="$HOME/.config/polybar/hack/scripts/rofi/colors.rasi" + +# Change colors +change_color() { + # polybar + sed -i -e 's/background = #.*/background = #FFFFFF/g' $PFILE + sed -i -e 's/foreground = #.*/foreground = #1F1F1F/g' $PFILE + sed -i -e "s/primary = #.*/primary = $AC/g" $PFILE + + # rofi + cat > $RFILE <<- EOF + /* colors */ + + * { + al: #00000000; + bg: #FFFFFFFF; + ac: ${AC}FF; + se: ${AC}26; + fg: #1F1F1FFF; + } + EOF + + polybar-msg cmd restart +} + +if [[ $1 = "--amber" ]]; then + AC="#ffb300" + change_color +elif [[ $1 = "--blue" ]]; then + AC="#1e88e5" + change_color +elif [[ $1 = "--blue-gray" ]]; then + AC="#546e7a" + change_color +elif [[ $1 = "--brown" ]]; then + AC="#6d4c41" + change_color +elif [[ $1 = "--cyan" ]]; then + AC="#00acc1" + change_color +elif [[ $1 = "--deep-orange" ]]; then + AC="#f4511e" + change_color +elif [[ $1 = "--deep-purple" ]]; then + AC="#5e35b1" + change_color +elif [[ $1 = "--green" ]]; then + AC="#43a047" + change_color +elif [[ $1 = "--gray" ]]; then + AC="#757575" + change_color +elif [[ $1 = "--indigo" ]]; then + AC="#3949ab" + change_color +elif [[ $1 = "--light-blue" ]]; then + AC="#039be5" + change_color +elif [[ $1 = "--light-green" ]]; then + AC="#7cb342" + change_color +elif [[ $1 = "--lime" ]]; then + AC="#c0ca33" + change_color +elif [[ $1 = "--orange" ]]; then + AC="#fb8c00" + change_color +elif [[ $1 = "--pink" ]]; then + AC="#d81b60" + change_color +elif [[ $1 = "--purple" ]]; then + AC="#8e24aa" + change_color +elif [[ $1 = "--red" ]]; then + AC="#e53935" + change_color +elif [[ $1 = "--teal" ]]; then + AC="#00897b" + change_color +elif [[ $1 = "--yellow" ]]; then + AC="#fdd835" + change_color +else + cat <<- _EOF_ + No option specified, Available options: + --amber --blue --blue-gray --brown + --cyan --deep-orange --deep-purple --green + --gray --indigo --light-blue --light-green + --lime --orange --pink --purple + --red --teal --yellow + _EOF_ +fi diff --git a/themes/blueleaves/polybar/scripts/dim.sh b/themes/blueleaves/polybar/scripts/dim.sh new file mode 100755 index 0000000..42b2291 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/dim.sh @@ -0,0 +1,6 @@ +# Check if xset q has "timeout" equal to 0 and if so, return 1 +if xset q | grep "timeout: 0" >/dev/null; then + echo "1" +else + echo "" +fi diff --git a/themes/blueleaves/polybar/scripts/is-monocle.sh b/themes/blueleaves/polybar/scripts/is-monocle.sh new file mode 100755 index 0000000..088941d --- /dev/null +++ b/themes/blueleaves/polybar/scripts/is-monocle.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Used to check whether the current focused +# window in BSPWM is using the monocle layout. + +if [[ $(bspc query -T -d focused) == *"monocle"* ]]; then + echo 1 +else + echo 0 +fi diff --git a/themes/blueleaves/polybar/scripts/launcher.sh b/themes/blueleaves/polybar/scripts/launcher.sh new file mode 100755 index 0000000..7976227 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/launcher.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +rofi -no-config -no-lazy-grab -show drun -modi drun -theme ~/.config/polybar/hack/scripts/rofi/launcher.rasi diff --git a/themes/blueleaves/polybar/scripts/powermenu.sh b/themes/blueleaves/polybar/scripts/powermenu.sh new file mode 100755 index 0000000..8a52c31 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/powermenu.sh @@ -0,0 +1,95 @@ +#!/usr/bin/env bash + +## Author : Aditya Shakya +## Mail : adi1090x@gmail.com +## Github : @adi1090x +## Twitter : @adi1090x + +dir="~/.config/polybar/hack/scripts/rofi" +uptime=$(uptime -p | sed -e 's/up //g') + +rofi_command="rofi -no-config -theme $dir/powermenu.rasi" + +# Options +shutdown=" Shutdown" +reboot=" Restart" +lock=" Lock" +suspend=" Sleep" +logout=" Logout" + +# Confirmation +confirm_exit() { + rofi -dmenu\ + -no-config\ + -i\ + -no-fixed-num-lines\ + -p "Are You Sure? : "\ + -theme $dir/confirm.rasi +} + +# Message +msg() { + rofi -no-config -theme "$dir/message.rasi" -e "Available Options - yes / y / no / n" +} + +# Variable passed to rofi +options="$lock\n$suspend\n$logout\n$reboot\n$shutdown" + +chosen="$(echo -e "$options" | $rofi_command -p "Uptime: $uptime" -dmenu -selected-row 0)" +case $chosen in + $shutdown) + ans=$(confirm_exit &) + if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then + systemctl poweroff + elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then + exit 0 + else + msg + fi + ;; + $reboot) + ans=$(confirm_exit &) + if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then + systemctl reboot + elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then + exit 0 + else + msg + fi + ;; + $lock) + if [[ -f /usr/bin/i3lock ]]; then + i3lock + elif [[ -f /usr/bin/betterlockscreen ]]; then + betterlockscreen -l + fi + ;; + $suspend) + ans=$(confirm_exit &) + if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then + mpc -q pause + amixer set Master mute + systemctl suspend + elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then + exit 0 + else + msg + fi + ;; + $logout) + ans=$(confirm_exit &) + if [[ $ans == "yes" || $ans == "YES" || $ans == "y" || $ans == "Y" ]]; then + if [[ "$DESKTOP_SESSION" == "Openbox" ]]; then + openbox --exit + elif [[ "$DESKTOP_SESSION" == "bspwm" ]]; then + bspc quit + elif [[ "$DESKTOP_SESSION" == "i3" ]]; then + i3-msg exit + fi + elif [[ $ans == "no" || $ans == "NO" || $ans == "n" || $ans == "N" ]]; then + exit 0 + else + msg + fi + ;; +esac diff --git a/themes/blueleaves/polybar/scripts/pywal.sh b/themes/blueleaves/polybar/scripts/pywal.sh new file mode 100755 index 0000000..09cd463 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/pywal.sh @@ -0,0 +1,60 @@ +#!/usr/bin/env bash + +# Color files +PFILE="$HOME/.config/polybar/hack/colors.ini" +RFILE="$HOME/.config/polybar/hack/scripts/rofi/colors.rasi" +WFILE="$HOME/.cache/wal/colors.sh" + +# Get colors +pywal_get() { + wal -i "$1" -q -t +} + +# Change colors +change_color() { + # polybar + sed -i -e "s/background = #.*/background = $BG/g" $PFILE + sed -i -e "s/foreground = #.*/foreground = $FG/g" $PFILE + sed -i -e "s/primary = #.*/primary = $AC/g" $PFILE + + # rofi + cat > $RFILE <<- EOF + /* colors */ + + * { + al: #00000000; + bg: ${BG}FF; + ac: ${AC}FF; + se: ${AC}26; + fg: ${FG}FF; + } + EOF + + polybar-msg cmd restart +} + +# Main +if [[ -x "`which wal`" ]]; then + if [[ "$1" ]]; then + pywal_get "$1" + + # Source the pywal color file + if [[ -e "$WFILE" ]]; then + . "$WFILE" + else + echo 'Color file does not exist, exiting...' + exit 1 + fi + + BG=`printf "%s\n" "$background"` + FG=`printf "%s\n" "$foreground"` + AC=`printf "%s\n" "$color1"` + + change_color + else + echo -e "[!] Please enter the path to wallpaper. \n" + echo "Usage : ./pywal.sh path/to/image" + fi +else + echo "[!] 'pywal' is not installed." +fi diff --git a/themes/blueleaves/polybar/scripts/random.sh b/themes/blueleaves/polybar/scripts/random.sh new file mode 100755 index 0000000..8b974a8 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/random.sh @@ -0,0 +1,89 @@ +#!/usr/bin/env bash + +# Color files +PFILE="$HOME/.config/polybar/hack/colors.ini" +RFILE="$HOME/.config/polybar/hack/scripts/rofi/colors.rasi" + +# Change colors +change_color() { + # polybar + sed -i -e "s/background = #.*/background = $BG/g" $PFILE + sed -i -e "s/foreground = #.*/foreground = $FG/g" $PFILE + sed -i -e "s/primary = #.*/primary = $AC/g" $PFILE + + # rofi + cat > $RFILE <<- EOF + /* colors */ + + * { + al: #00000000; + bg: #1F1F1FFF; + ac: ${AC}FF; + se: ${AC}26; + fg: #FFFFFFFF; + } + EOF + + polybar-msg cmd restart +} + +get_random_number() { + RNUM=$(( ($RANDOM % $1) + 1 )) +} + +get_random_color() { + RCOLOR="#" + for i in 1 2 3 4 5 6 + do + get_random_number "16" + case $RNUM in + "1") NEXTDIGIT="1";; + "2") NEXTDIGIT="2";; + "3") NEXTDIGIT="3";; + "4") NEXTDIGIT="4";; + "5") NEXTDIGIT="5";; + "6") NEXTDIGIT="6";; + "7") NEXTDIGIT="7";; + "8") NEXTDIGIT="8";; + "9") NEXTDIGIT="9";; + "10") NEXTDIGIT="A";; + "11") NEXTDIGIT="B";; + "12") NEXTDIGIT="C";; + "13") NEXTDIGIT="D";; + "14") NEXTDIGIT="E";; + "15") NEXTDIGIT="F";; + "16") NEXTDIGIT="0";; + esac + RCOLOR="$RCOLOR$NEXTDIGIT" + done + echo $RCOLOR +} + +hex_to_rgb() { + # Convert a hex value WITHOUT the hashtag (#) + R=$(printf "%d" 0x${1:0:2}) + G=$(printf "%d" 0x${1:2:2}) + B=$(printf "%d" 0x${1:4:2}) +} + +get_fg_color(){ + INTENSITY=$(calc "$R*0.299 + $G*0.587 + $B*0.114") + + if [ $(echo "$INTENSITY>186" | bc) -eq 1 ]; then + FG="#0a0a0a" + else + FG="#F5F5F5" + fi +} + +# Main +BG='#1f1f1f' # change to light bg +FG='#FFFFFF' # change to dark fg +AC=`get_random_color` + +#BG=`get_random_color` +#HEX=${BG:1} +#hex_to_rgb $HEX +#get_fg_color + +change_color diff --git a/themes/blueleaves/polybar/scripts/rofi/colors.rasi b/themes/blueleaves/polybar/scripts/rofi/colors.rasi new file mode 100644 index 0000000..870e402 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/colors.rasi @@ -0,0 +1,9 @@ +/* colors */ + +* { + al: #00000000; + bg: #141C21FF; + ac: #e53935FF; + se: #e5393526; + fg: #FFFFFFFF; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/confirm.rasi b/themes/blueleaves/polybar/scripts/rofi/confirm.rasi new file mode 100644 index 0000000..005836c --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/confirm.rasi @@ -0,0 +1,24 @@ +/* Confirm Dialog */ + +@import "colors.rasi" + +* { + background-color: @bg; + text-color: @fg; + font: "Terminus 9"; +} + +window { + width: 225px; + padding: 25px; + border: 1px; + border-radius: 0px; + border-color: @ac; + location: center; + y-offset: -2em; +} + +entry { + expand: true; + text-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/launcher.rasi b/themes/blueleaves/polybar/scripts/rofi/launcher.rasi new file mode 100644 index 0000000..24c00a0 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/launcher.rasi @@ -0,0 +1,119 @@ +/* + * + * Author : Aditya Shakya + * Mail : adi1090x@gmail.com + * Github : @adi1090x + * Twitter : @adi1090x + * + */ + +configuration { + font: "Terminus 9"; + show-icons: true; + icon-theme: "Papirus"; + display-drun: ""; + drun-display-format: "{name}"; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +@import "colors.rasi" + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 2px; + border-color: @ac; + border-radius: 0px; + width: 450px; + location: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 9px 10px 10px 10px; + background-color: @al; + text-color: @ac; + font: "Iosevka Nerd Font 8"; +} + +entry { + background-color: @al; + text-color: @ac; + placeholder-color: @ac; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + padding: 10px 10px 10px 0px; + border-radius: 0px; + blink: true; +} + +inputbar { + children: [ prompt, entry ]; + background-color: @al; + text-color: @fg; + expand: false; + border: 0px 0px 1px 0px; + border-radius: 0px; + border-color: @ac; + spacing: 0px; +} + +listview { + background-color: @al; + padding: 0px; + columns: 1; + lines: 5; + spacing: 5px; + cycle: true; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0px; + border-radius: 0px; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 10px; + padding: 2px 10px 10px 10px; +} + +element { + background-color: @al; + text-color: @fg; + orientation: horizontal; + border-radius: 0px; + padding: 8px; +} + +element-icon { + background-color: transparent; + text-color: inherit; + size: 24px; + border: 0px; +} + +element-text { + background-color: transparent; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 0px 2.5px 0px 2.5px; +} + +element selected { + background-color: @se; + text-color: @fg; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/message.rasi b/themes/blueleaves/polybar/scripts/rofi/message.rasi new file mode 100644 index 0000000..f6d602a --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/message.rasi @@ -0,0 +1,24 @@ +/* Confirm Dialog */ + +@import "colors.rasi" + +* { + background-color: @bg; + text-color: @fg; + font: "Terminus 9"; +} + +window { + width: 320px; + padding: 25px; + border: 1px; + border-radius: 0px; + border-color: @ac; + location: center; + y-offset: -2em; +} + +entry { + expand: true; + text-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/networkmenu.rasi b/themes/blueleaves/polybar/scripts/rofi/networkmenu.rasi new file mode 100644 index 0000000..17aa0a8 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/networkmenu.rasi @@ -0,0 +1,128 @@ +/* + * + * Author : Aditya Shakya + * Mail : adi1090x@gmail.com + * Github : @adi1090x + * Twitter : @adi1090x + * + */ + +configuration { + font: "Terminus 9"; + show-icons: true; + icon-theme: "Papirus"; + display-drun: ""; + drun-display-format: "{name}"; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +@import "colors.rasi" + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 2px; + border-color: @ac; + border-radius: 0px; + width: 400px; + location: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 10px 10px 10px 0px; + background-color: @al; + text-color: @ac; + font: "Terminus 9"; +} + +textbox-prompt-colon { + padding: 8px 15px 10px 15px; + font: "Iosevka Nerd Font 8"; + background-color: @al; + text-color: @ac; + expand: false; + str: "直"; +} + +entry { + background-color: @al; + text-color: @ac; + placeholder-color: @ac; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + padding: 10px 10px 10px 0px; + border-radius: 0px; + blink: true; +} + +inputbar { + children: [ textbox-prompt-colon, prompt ]; + background-color: @al; + text-color: @fg; + expand: false; + border: 0px 0px 1px 0px; + border-radius: 0px; + border-color: @ac; + spacing: 0px; +} + +listview { + background-color: @al; + padding: 0px; + columns: 1; + lines: 8; + spacing: 5px; + cycle: true; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0px; + border-radius: 0px; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 10px; + padding: 2px 10px 10px 10px; +} + +element { + background-color: @al; + text-color: @fg; + orientation: horizontal; + border-radius: 0px; + padding: 8px 8px 8px -10px; +} + +element-icon { + background-color: transparent; + text-color: inherit; + size: 24px; + border: 0px; +} + +element-text { + background-color: transparent; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 0px 2.5px 0px 2.5px; +} + +element selected { + background-color: @se; + text-color: @fg; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/powermenu.rasi b/themes/blueleaves/polybar/scripts/rofi/powermenu.rasi new file mode 100644 index 0000000..4ece232 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/powermenu.rasi @@ -0,0 +1,128 @@ +/* + * + * Author : Aditya Shakya + * Mail : adi1090x@gmail.com + * Github : @adi1090x + * Twitter : @adi1090x + * + */ + +configuration { + font: "Terminus 9"; + show-icons: true; + icon-theme: "Papirus"; + display-drun: ""; + drun-display-format: "{name}"; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +@import "colors.rasi" + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 2px; + border-color: @ac; + border-radius: 0px; + width: 300px; + location: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 10px 10px 10px 0px; + background-color: @al; + text-color: @ac; + font: "Terminus 9"; +} + +textbox-prompt-colon { + padding: 8px 15px 10px 15px; + font: "Iosevka Nerd Font 8"; + background-color: @al; + text-color: @ac; + expand: false; + str: ""; +} + +entry { + background-color: @al; + text-color: @ac; + placeholder-color: @ac; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + padding: 10px 10px 10px 0px; + border-radius: 0px; + blink: true; +} + +inputbar { + children: [ textbox-prompt-colon, prompt ]; + background-color: @al; + text-color: @fg; + expand: false; + border: 0px 0px 1px 0px; + border-radius: 0px; + border-color: @ac; + spacing: 0px; +} + +listview { + background-color: @al; + padding: 0px; + columns: 1; + lines: 5; + spacing: 5px; + cycle: true; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0px; + border-radius: 0px; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 10px; + padding: 2px 10px 10px 10px; +} + +element { + background-color: @al; + text-color: @fg; + orientation: horizontal; + border-radius: 0px; + padding: 8px 8px 8px -16px; +} + +element-icon { + background-color: transparent; + text-color: inherit; + size: 24px; + border: 0px; +} + +element-text { + background-color: transparent; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 0px 2.5px 0px 2.5px; +} + +element selected { + background-color: @se; + text-color: @fg; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/rofi/styles.rasi b/themes/blueleaves/polybar/scripts/rofi/styles.rasi new file mode 100644 index 0000000..6ae216c --- /dev/null +++ b/themes/blueleaves/polybar/scripts/rofi/styles.rasi @@ -0,0 +1,128 @@ +/* + * + * Author : Aditya Shakya + * Mail : adi1090x@gmail.com + * Github : @adi1090x + * Twitter : @adi1090x + * + */ + +configuration { + font: "Terminus 9"; + show-icons: true; + icon-theme: "Papirus"; + display-drun: ""; + drun-display-format: "{name}"; + disable-history: false; + fullscreen: false; + hide-scrollbar: true; + sidebar-mode: false; +} + +@import "colors.rasi" + +window { + transparency: "real"; + background-color: @bg; + text-color: @fg; + border: 2px; + border-color: @ac; + border-radius: 0px; + width: 300px; + location: center; + x-offset: 0; + y-offset: 0; +} + +prompt { + enabled: true; + padding: 10px 10px 10px 0px; + background-color: @al; + text-color: @ac; + font: "Terminus 9"; +} + +textbox-prompt-colon { + padding: 8px 15px 10px 15px; + font: "Iosevka Nerd Font 8"; + background-color: @al; + text-color: @ac; + expand: false; + str: ""; +} + +entry { + background-color: @al; + text-color: @ac; + placeholder-color: @ac; + expand: true; + horizontal-align: 0; + placeholder: "Search..."; + padding: 10px 10px 10px 0px; + border-radius: 0px; + blink: true; +} + +inputbar { + children: [ textbox-prompt-colon, entry ]; + background-color: @al; + text-color: @fg; + expand: false; + border: 0px 0px 1px 0px; + border-radius: 0px; + border-color: @ac; + spacing: 0px; +} + +listview { + background-color: @al; + padding: 0px; + columns: 1; + lines: 5; + spacing: 5px; + cycle: true; + dynamic: true; + layout: vertical; +} + +mainbox { + background-color: @al; + border: 0px; + border-radius: 0px; + border-color: @ac; + children: [ inputbar, listview ]; + spacing: 10px; + padding: 2px 10px 10px 10px; +} + +element { + background-color: @al; + text-color: @fg; + orientation: horizontal; + border-radius: 0px; + padding: 8px 8px 8px -16px; +} + +element-icon { + background-color: transparent; + text-color: inherit; + size: 24px; + border: 0px; +} + +element-text { + background-color: transparent; + text-color: inherit; + expand: true; + horizontal-align: 0; + vertical-align: 0.5; + margin: 0px 2.5px 0px 2.5px; +} + +element selected { + background-color: @se; + text-color: @fg; + border: 0px 0px 0px 0px; + border-radius: 0px; + border-color: @ac; +} diff --git a/themes/blueleaves/polybar/scripts/updates.sh b/themes/blueleaves/polybar/scripts/updates.sh new file mode 100755 index 0000000..ef995b3 --- /dev/null +++ b/themes/blueleaves/polybar/scripts/updates.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash + +#NOTIFY_ICON=/usr/share/icons/Papirus/32x32/apps/system-software-update.svg +#~/.config/polybar/hack/scripts/updates.s + +get_total_updates() { UPDATES=$(~/.config/polybar/hack/scripts/checkupdates 2>/dev/null | wc -l); } + +while true; do + get_total_updates + + # notify user of updates + if hash notify-send &>/dev/null; then + if (( UPDATES > 100 )); then + notify-send -u low -i $NOTIFY_ICON \ + "Attention," "$UPDATES New packages" + elif (( UPDATES > 50 )); then + notify-send -u low -i $NOTIFY_ICON \ + "You should update soon" "$UPDATES New packages" + elif (( UPDATES > 2 )); then + notify-send -u low -i $NOTIFY_ICON \ + "$UPDATES New packages" + fi + fi + + # when there are updates available + # every 10 seconds another check for updates is done + while (( UPDATES > 0 )); do + if (( UPDATES == 1 )); then + echo " $UPDATES" + elif (( UPDATES > 1 )); then + echo " $UPDATES" + else + echo "" + fi + sleep 10 + get_total_updates + done + + # when no updates are available, use a longer loop, this saves on CPU + # and network uptime, only checking once every 30 min for new updates + while (( UPDATES == 0 )); do + echo "" + sleep 1800 + get_total_updates + done +done diff --git a/themes/blueleaves/polybar/scripts/windows.sh b/themes/blueleaves/polybar/scripts/windows.sh new file mode 100755 index 0000000..d4fbb1b --- /dev/null +++ b/themes/blueleaves/polybar/scripts/windows.sh @@ -0,0 +1,60 @@ +#!/bin/sh + +active_window=$(xprop -root _NET_ACTIVE_WINDOW|cut -d ' ' -f 5|sed -e 's/../0&/2') + +current_display=$(wmctrl -d|grep "*"|awk '{print $1}') + +######################### +# Simple version BEGIN +# +#current_windows=$(wmctrl -lx|awk -v current_display="$current_display" -v active_window="$active_window" ' +# +# {if ($2==current_display) { +# +# if ($1==active_window) { +# +# $3="#"$3; +# +# } +# +# split($3,window_title,".") +# +# print "%{A1: wmctrl -ia "$1" & disown:}"window_title[1]"%{A}" +# +# } +# +# }') +# +# Simple version END +######################### + +######################### +# Decorated version BEGIN +# +color1="00AAFF" # Blue + +active_window_decoration_style_left_side="%{F#$color1}%{+u}%{u#$color1}" +active_window_decoration_style_right_side="%{-u}%{F-}" + +current_windows=$(wmctrl -lx|awk -v current_display="$current_display" -v active_window="$active_window" -v active_window_decoration_style_left_side="$active_window_decoration_style_left_side" -v active_window_decoration_style_right_side="$active_window_decoration_style_right_side" ' + + {if ($2==current_display) { + + split($3,window_title,".") + + if ($1==active_window) { + + window_title[1]=active_window_decoration_style_left_side window_title[1] active_window_decoration_style_right_side + + } + + print "%{A1: wmctrl -ia "$1" & disown:}"window_title[1]"%{A}" + + } + + }') +# +# Decorated version END +####################### + +echo $current_windows diff --git a/themes/blueleaves/polybar/user_modules.ini b/themes/blueleaves/polybar/user_modules.ini new file mode 100644 index 0000000..14bb2cf --- /dev/null +++ b/themes/blueleaves/polybar/user_modules.ini @@ -0,0 +1,304 @@ +;; ┌──────────────────────────────────────────────────────────────────────────────-----┐ +;; │░█▀█░█▀█░█░░░█░█░█▀▄░█▀█░█▀▄░░░░░░░░░█░█░█▀▀░█▀▀░█▀▄░░░█▄█░█▀█░█▀▄░█░█░█░░░█▀▀░█▀▀ │ +;; │░█▀▀░█░█░█░░░░█░░█▀▄░█▀█░█▀▄░░░░▀░░░░█░█░▀▀█░█▀▀░█▀▄░░░█░█░█░█░█░█░█░█░█░░░█▀▀░▀▀█ │ +;; │░▀░░░▀▀▀░▀▀▀░░▀░░▀▀░░▀░▀░▀░▀░░░░▀░░░░▀▀▀░▀▀▀░▀▀▀░▀░▀░░░▀░▀░▀▀▀░▀▀░░▀▀▀░▀▀▀░▀▀▀░▀▀▀ │ +;; │░Created░By░Aditya░Shakya░@adi1090x░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░│ +;; └──────────────────────────────────────────────────────────────────────────────-----┘ + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/checknet] +type = custom/script + +; Available tokens: +; %counter% +; Command to be executed (using "/usr/bin/env sh -c [command]") +exec = ~/.config/polybar/hack/scripts/check-network + +; Conditional command that, if defined, needs to exit successfully +; before the main exec command is invoked. +; Default: "" +;;exec-if = "" + +; Will the script output continous content? +; Default: false +tail = true + +; Seconds to sleep between updates +; Default: 2 (0 if `tail = true`) +interval = 5 + +; Available tags: +; <output> - deprecated +; <label> (default) +format = <label> +;format-prefix =  + +; Available tokens: +; %output% +; Default: %output% +label = %output% + +; Available tokens: +; %counter% +; %pid% +; +; "click-(left|middle|right)" will be executed using "/usr/bin/env sh -c [command]" +click-left = networkmanager_dmenu & +click-right = networkmanager_dmenu & +;;double-click-left = echo double left %counter% +;;double-click-middle = echo double middle %counter% +;;double-click-right = echo double right %counter% + +; Available tokens: +; %counter% +; %pid% +; +; "scroll-(up|down)" will be executed using "/usr/bin/env sh -c [command]" +;;scroll-up = echo scroll up %counter% +;;scroll-down = echo scroll down %counter% + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/updates] +type = custom/script + +; Available tokens: +; %counter% +; Command to be executed (using "/usr/bin/env sh -c [command]") +exec = ~/.config/polybar/hack/scripts/updates.sh +; Conditional command that, if defined, needs to exit successfully +; before the main exec command is invoked. +; Default: "" +;;exec-if = "" + +; Will the script output continous content? +; Default: false +tail = true + +; Seconds to sleep between updates +; Default: 2 (0 if `tail = true`) +interval = 2 + +; Available tags: +; <output> - deprecated +; <label> (default) +format = <label> +format-prefix = "󰮯 " + +; Available tokens: +; %output% +; Default: %output% +label = %output% + +; Available tokens: +; %counter% +; %pid% +; +; "click-(left|middle|right)" will be executed using "/usr/bin/env sh -c [command]" +click-left = exo-open --launch TerminalEmulator & +click-right = exo-open --launch TerminalEmulator & +;;double-click-left = echo double left %counter% +;;double-click-middle = echo double middle %counter% +;;double-click-right = echo double right %counter% + +; Available tokens: +; %counter% +; %pid% +; +; "scroll-(up|down)" will be executed using "/usr/bin/env sh -c [command]" +;;scroll-up = echo scroll up %counter% +;;scroll-down = echo scroll down %counter% + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/launcher] +type = custom/text +content = 󱙧 + +; "content" has the same properties as "format-NAME" +content-foreground = ${color.primary} + +; "click-(left|middle|right)" will be executed using "/usr/bin/env sh -c $COMMAND" +click-left = ~/.config/polybar/hack/scripts/launcher.sh & +;;click-middle = ~/.config/polybar/hack/scripts/launcher-full +click-right = ~/.config/polybar/hack/scripts/color-switch.sh & + +; "scroll-(up|down)" will be executed using "/usr/bin/env sh -c $COMMAND" +;;scroll-up = ~/.config/polybar/hack/scripts/launcher.sh & +;;scroll-down = ~/.config/polybar/hack/scripts/color-switch.sh & + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/sysmenu] +type = custom/text +content = " " + +content-foreground = ${color.primary} + +click-left = ~/.config/polybar/hack/scripts/powermenu.sh & + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/color-switch] +type = custom/text +content = " " + +content-foreground = ${color.primary} +click-left = ~/.config/polybar/hack/scripts/color-switch.sh & + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/sep] +type = custom/text +content = " " +content-foreground = ${color.background} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/powermenu] +type = custom/menu + +; If true, <label-toggle> will be to the left of the menu items (default). +; If false, it will be on the right of all the items. +expand-right = true + +; "menu-LEVEL-N" has the same properties as "label-NAME" with +; the additional "exec" property +; +; Available exec commands: +; menu-open-LEVEL +; menu-close +; Other commands will be executed using "/usr/bin/env sh -c $COMMAND" +menu-0-0 = reboot +menu-0-0-exec = menu-open-1 +menu-0-1 = shutdown +menu-0-1-exec = menu-open-2 + +menu-1-0 = back +menu-1-0-exec = menu-open-0 +menu-1-1 = reboot +menu-1-1-exec = systemctl reboot + +menu-2-0 = shutdown +menu-2-0-exec = systemctl poweroff +menu-2-1 = back +menu-2-1-exec = menu-open-0 + +; Available tags: +; <label-toggle> (default) - gets replaced with <label-(open|close)> +; <menu> (default) +; Note that if you use <label-toggle> you must also include +; the definition for <label-open> + +format = <label-toggle> <menu> +format-foreground = ${color.primary} + +label-open =  +label-close =  + +; Optional item separator +; Default: none +label-separator = " | " + +;;label-open-foreground = ${color.foreground} +;;label-close-foreground = ${color.background} +;;label-separator-foreground = ${color.background} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/menu] +type = custom/menu + +; If true, <label-toggle> will be to the left of the menu items (default). +; If false, it will be on the right of all the items. +expand-right = true + +; "menu-LEVEL-N" has the same properties as "label-NAME" with +; the additional "exec" property +; +; Available exec commands: +; menu-open-LEVEL +; menu-close +; Other commands will be executed using "/usr/bin/env sh -c $COMMAND" +menu-0-0 = Menu +menu-0-0-exec = ~/.config/polybar/cuts/scripts/launcher.sh & +menu-0-1 = Files +menu-0-1-exec = thunar & +menu-0-2 = Terminal +menu-0-2-exec = termite & +menu-0-3 = Browser +menu-0-3-exec = firefox & + +; Available tags: +; <label-toggle> (default) - gets replaced with <label-(open|close)> +; <menu> (default) +; Note that if you use <label-toggle> you must also include +; the definition for <label-open> + +format = <label-toggle> <menu> +format-foreground = ${color.primary} + +label-open =  +label-close =  + +; Optional item separator +; Default: none +label-separator = " | " + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/vpn] +type = custom/script +exec = ip link show | grep '_wg:' | awk -F ': ' '{print $2}' | awk '{print $1}' +exec-if = echo 1 +interval = 5 +format-prefix-foreground = ${color.foreground} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/monocle] +type = custom/script +exec = echo MONOCLE +exec-if = bspc query -T -d focused | grep -e "monocle" +interval = 0.1 +format-foreground = ${color.red} +format-prefix-foreground = ${color.red} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/vodka] +type = custom/script +exec = echo RUSSIAN +exec-if = xset -q | grep LED | awk '{ print $10 }' | grep -e '00001001' +interval = 0.1 +format-foreground = ${color.red} +format-prefix-foreground = ${color.red} + +;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_ + +[module/windows] +type = custom/script +exec = ~/.config/polybar/hack/scripts/windows.sh +format = <label> +label = %output% +label-padding = 1 +interval = 1 + +[module/bluetooth] +type = custom/script +exec = ~/.config/polybar/hack/scripts/bluetooth.sh +format = "<label> " +format-prefix = "󰂯 " +label = %output% +label-padding = 1 +interval = 2 + +[module/dim] +type = custom/script +exec = ~/.config/polybar/hack/scripts/dim.sh +format = "<label> " +format-prefix = "󰷛 " +label = "" +label-padding = 1 +interval = 5 diff --git a/themes/blueleaves/rofi/launcher.sh b/themes/blueleaves/rofi/launcher.sh new file mode 100755 index 0000000..74a4432 --- /dev/null +++ b/themes/blueleaves/rofi/launcher.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Find the launcher.sh location +SOURCE=${BASH_SOURCE[0]} +while [ -L "$SOURCE" ]; do + DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd ) + SOURCE=$(readlink "$SOURCE") + [[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE +done +DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd ) + +# Assure that the images folder is symlinked to tmp +TMP_PATH=/tmp/kolinux-themer +if [[ ! -e $TMP_PATH/pictures ]]; then + mkdir -p $TMP_PATH + ln -s "${DIR}/pictures" "${TMP_PATH}/pictures" +fi + +# Run the rofi menu +rofi \ + -modes drun,run,window,calc \ + -show drun \ + -theme ${DIR}/theme.rasi diff --git a/themes/blueleaves/rofi/pictures/picture.webp b/themes/blueleaves/rofi/pictures/picture.webp new file mode 100644 index 0000000..3dc8592 Binary files /dev/null and b/themes/blueleaves/rofi/pictures/picture.webp differ diff --git a/themes/blueleaves/rofi/theme.rasi b/themes/blueleaves/rofi/theme.rasi new file mode 100644 index 0000000..ac2b0cb --- /dev/null +++ b/themes/blueleaves/rofi/theme.rasi @@ -0,0 +1,219 @@ +/** + * + * Author : Aditya Shakya (adi1090x) + * Github : @adi1090x + * + * Modified by : WeirdCat + * Github : @ReallyWeirdCat + * + * Rofi Theme File + * Rofi Version: 1.7.3 + **/ + +/*****----- Configuration -----*****/ +configuration { + modi: "drun,run,filebrowser,window"; + show-icons: true; + display-drun: "アプリ"; + display-window: "ウィンドウ"; + display-filebrowser: "ファイル"; + display-run: "実行"; + display-calc: "計算機"; + drun-display-format: "{name}"; + window-format: "{w} · {c} · {t}"; +} + +/*****----- Global Properties -----*****/ +* { + font: "JetBrains Mono Nerd Font 10"; + background: #0e1b28ba; + background-alt: #0e1b28ba; + foreground: #FFe8EE; + selected: #027C9bdd; + active: #027C9b; + urgent: #BF562F; +} + +/*****----- Main Window -----*****/ +window { + /* properties for window widget */ + transparency: "real"; + location: center; + anchor: center; + fullscreen: false; + height: 500px; + width: 1000px; + x-offset: 0px; + y-offset: 0px; + + border-radius: 15px; + border-color: @selected; + + /* properties for all widgets */ + enabled: true; + border-radius: 15px; + cursor: "default"; + background-color: @background; + + +} + +/*****----- Main Box -----*****/ +mainbox { + enabled: true; + spacing: 0px; + background-color: transparent; + orientation: horizontal; + children: [ "imagebox", "listbox" ]; +} + +imagebox { + padding: 20px; + background-color: transparent; + background-image: url("/tmp/kolinux-themer/pictures/picture.webp", width); + orientation: vertical; + children: [ "inputbar", "dummy", "mode-switcher" ]; +} + +listbox { + spacing: 20px; + padding: 20px; + background-color: transparent; + orientation: vertical; + children: [ "message", "listview" ]; +} + +dummy { + background-color: transparent; +} + +/*****----- Inputbar -----*****/ +inputbar { + enabled: true; + spacing: 10px; + padding: 15px; + border-radius: 10px; + background-color: @background-alt; + text-color: @foreground; + children: [ "textbox-prompt-colon", "entry" ]; +} +textbox-prompt-colon { + enabled: true; + expand: false; + str: ""; + background-color: #00000000; + text-color: inherit; +} +entry { + enabled: true; + background-color: #00000000; + text-color: inherit; + cursor: text; + placeholder: "検索"; + placeholder-color: inherit; +} + +/*****----- Mode Switcher -----*****/ +mode-switcher{ + enabled: true; + spacing: 20px; + background-color: transparent; + text-color: @foreground; +} +button { + padding: 15px; + border-radius: 10px; + background-color: @background-alt; + text-color: inherit; + cursor: pointer; +} +button selected { + background-color: @selected; + text-color: @foreground; +} + +/*****----- Listview -----*****/ +listview { + enabled: true; + columns: 3; + lines: 8; + cycle: true; + dynamic: true; + scrollbar: false; + layout: vertical; + reverse: false; + fixed-height: false; + fixed-columns: true; + + spacing: 10px; + background-color: transparent; + text-color: @foreground; + cursor: "default"; +} + +/*****----- Elements -----*****/ +element { + enabled: true; + spacing: 15px; + padding: 8px; + border-radius: 10px; + background-color: transparent; + text-color: @foreground; + cursor: pointer; +} +element normal.normal { + background-color: inherit; + text-color: inherit; +} +element normal.urgent { + background-color: @urgent; + text-color: @foreground; +} +element normal.active { + background-color: @active; + text-color: @foreground; +} +element selected.normal { + background-color: @selected; + text-color: @foreground; +} +element selected.urgent { + background-color: @urgent; + text-color: @foreground; +} +element selected.active { + background-color: @urgent; + text-color: @foreground; +} +element-icon { + background-color: transparent; + text-color: inherit; + size: 32px; + cursor: inherit; +} +element-text { + background-color: transparent; + text-color: inherit; + cursor: inherit; + vertical-align: 0.5; + horizontal-align: 0.0; +} + +/*****----- Message -----*****/ +message { + background-color: transparent; +} +textbox { + padding: 15px; + border-radius: 10px; + background-color: @background-alt; + text-color: @foreground; + vertical-align: 0.5; + horizontal-align: 0.0; +} +error-message { + padding: 15px; + border-radius: 20px; + background-color: @background; + text-color: @foreground; +} diff --git a/themes/blueleaves/wallpapers/blue_rainy_leaves.jpg b/themes/blueleaves/wallpapers/blue_rainy_leaves.jpg new file mode 100644 index 0000000..21a7054 Binary files /dev/null and b/themes/blueleaves/wallpapers/blue_rainy_leaves.jpg differ diff --git a/themes/blueleaves/wallpapers/rain_street_loner.jpg b/themes/blueleaves/wallpapers/rain_street_loner.jpg new file mode 100644 index 0000000..16995d5 Binary files /dev/null and b/themes/blueleaves/wallpapers/rain_street_loner.jpg differ