changed to setup script to /etc/skel
|
After Width: | Height: | Size: 38 KiB |
21
arch_check/.config/nlogout/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 DrunkenAlcoholic
|
||||
|
||||
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.
|
||||
115
arch_check/.config/nlogout/README.md
Normal file
@@ -0,0 +1,115 @@
|
||||
# nlogout
|
||||
|
||||
`nlogout` is a customizable logout GUI application for Linux systems, written in Nim. It provides a configurable interface for logging out, shutting down, rebooting, and other system actions.
|
||||
|
||||

|
||||
|
||||
## Features
|
||||
|
||||
- Customizable buttons for various system actions (logout, reboot, shutdown, etc.)
|
||||
- Configurable appearance (colors, fonts, icon themes)
|
||||
- Support for rounded corners on buttons
|
||||
- Keyboard shortcuts for quick actions
|
||||
- Custom icon themes
|
||||
- Support for custom lock screen applications
|
||||
- Ability to terminate specified programs before logout
|
||||
|
||||
## Installation
|
||||
- Simply copy nlogout to /usr/bin or any other preferred directory, copy config.toml and the themes folder to ~/.config/nlogout
|
||||
- Bind a shortcut to nlogout
|
||||
|
||||
```
|
||||
mkdir -p "$HOME/.config/nlogout"
|
||||
|
||||
cp ./bin/nlogout "$HOME/.config/nlogout/nlogout"
|
||||
cp config.toml "$HOME/.config/nlogout/config.toml"
|
||||
cp -r ./themes "$HOME/.config/nlogout/themes"
|
||||
```
|
||||
|
||||
## Building from source
|
||||
|
||||
### Prerequisites
|
||||
|
||||
- Nim compiler
|
||||
- nimble package manager (nimble)
|
||||
```
|
||||
sudo pacman -S nim
|
||||
```
|
||||
|
||||
- nim modules NiGUI and parseToml
|
||||
```
|
||||
nimble install nigui
|
||||
nimble install parsetoml
|
||||
```
|
||||
### Build
|
||||
|
||||
1. Clone the repository:
|
||||
```
|
||||
git clone https://github.com/DrunkenAlcoholic/nlogout.git
|
||||
cd nlogout
|
||||
```
|
||||
2. Build the binrary
|
||||
```
|
||||
nim compile --define:release --opt:size --app:gui --outdir="./bin" src/nlogout.nim
|
||||
```
|
||||
|
||||
3. Optionally Run the rebuild script:
|
||||
```
|
||||
./build.sh
|
||||
```
|
||||
|
||||
This script will:
|
||||
- Install Nim (if using Arch Linux)
|
||||
- Install required Nim modules (parsetoml, nigui)
|
||||
- Compile nlogout
|
||||
|
||||
Note: You will need to manually copy themes, config.toml to ~/.config/nlogout, Also copy nlogout to /usr/bin or your preffered directory
|
||||
|
||||
|
||||
## Configuration
|
||||
|
||||
nlogout uses a TOML configuration file located at `~/.config/nlogout/config.toml`. You can customize various aspects of the application, including:
|
||||
|
||||
- Window properties
|
||||
- Font settings
|
||||
- Button appearance and behavior
|
||||
- Icon themes
|
||||
- Custom lock screen application
|
||||
- Programs to terminate before logout
|
||||
|
||||
For a detailed explanation of configuration options, see the [Configuration Guide](nlogout.Configuration.Guide.md).
|
||||
|
||||
## Usage
|
||||
|
||||
Run nlogout by executing:
|
||||
|
||||
```
|
||||
~/.config/nlogout/nlogout
|
||||
```
|
||||
|
||||
You can bind this command to a keyboard shortcut in your window manager or desktop environment for quick access.
|
||||
|
||||
## The rebuild.sh Script
|
||||
|
||||
The `rebuild.sh` script is provided for easy building and installation of nlogout. Here's what it does:
|
||||
|
||||
1. Terminates any running instance of nlogout
|
||||
2. Installs Nim compiler (for Arch Linux users)
|
||||
3. Installs required Nim modules
|
||||
4. Compiles nlogout with optimizations
|
||||
5. Copies the default configuration and themes if they don't exist
|
||||
|
||||
You can use this script to quickly rebuild and update your nlogout installation.
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributions are welcome! Please feel free to submit a Pull Request.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the [MIT License](LICENSE).
|
||||
|
||||
## Acknowledgements
|
||||
|
||||
- [nigui](https://github.com/simonkrauter/NiGui) for the GUI framework
|
||||
- [parsetoml](https://github.com/NimParsers/parsetoml) for TOML parsing
|
||||
BIN
arch_check/.config/nlogout/bin/nlogout
Executable file
48
arch_check/.config/nlogout/build.sh
Executable file
@@ -0,0 +1,48 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e # Exit immediately if a command exits with a non-zero status
|
||||
|
||||
# Define color codes
|
||||
RED='\033[0;31m'
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
NC='\033[0m' # No Color
|
||||
|
||||
# Function to print colored output
|
||||
print_color() {
|
||||
printf "${!1}%s${NC}\n" "$2"
|
||||
}
|
||||
|
||||
|
||||
# Kill any running instances of nlogout
|
||||
print_color "YELLOW" "Terminating any running nlogout instances..."
|
||||
pkill -f "nlogout" || true # Don't exit if no process found
|
||||
|
||||
# Install nim language
|
||||
print_color "YELLOW" "Installing nim..."
|
||||
if sudo pacman -S nim --noconfirm --needed; then
|
||||
print_color "GREEN" "nim installed successfully."
|
||||
else
|
||||
print_color "RED" "Failed to install nim. Please install it manually and rerun this script."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Install required Nim modules
|
||||
print_color "YELLOW" "Installing required Nim modules..."
|
||||
if yes | nimble install parsetoml && yes | nimble install nigui; then
|
||||
print_color "GREEN" "Modules installed successfully."
|
||||
else
|
||||
print_color "RED" "Failed to install required modules. Please check your internet connection and try again."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
# Compile nlogout
|
||||
print_color "YELLOW" "Compiling nlogout..."
|
||||
if nim compile --define:release --opt:size --app:gui --outdir="./bin" src/nlogout.nim; then
|
||||
sudo cp -v ./bin/nlogout /usr/bin/nlogout
|
||||
print_color "GREEN" "nlogout compiled successfully."
|
||||
else
|
||||
print_color "RED" "Failed to compile nlogout. Please check the error messages above."
|
||||
exit 1
|
||||
fi
|
||||
76
arch_check/.config/nlogout/config.toml
Normal file
@@ -0,0 +1,76 @@
|
||||
# Button order (optional)
|
||||
button_order = ["cancel", "logout", "reboot", "shutdown", "lock", "suspend", "hibernate"]
|
||||
|
||||
# Programs to terminate before logout
|
||||
programs_to_terminate = ["example_program1", "example_program2"]
|
||||
|
||||
# Custom lock screen application (optional)
|
||||
lock_screen_app = "i3lock -c 313244"
|
||||
|
||||
# Window configuration
|
||||
[window]
|
||||
width = 782
|
||||
height = 118
|
||||
title = "nlogout"
|
||||
background_color = "#313244"
|
||||
|
||||
# Font configuration
|
||||
[font]
|
||||
family = "Noto Sans Mono"
|
||||
size = 14
|
||||
bold = true
|
||||
|
||||
# Global button configuration
|
||||
[button]
|
||||
show_text = true
|
||||
keybind_text = true
|
||||
width = 100
|
||||
height = 100
|
||||
padding = 3
|
||||
top_padding = 3
|
||||
corner_radius = 10 # Radius of 0 = square button
|
||||
icon_size = 40
|
||||
icon_theme = "default"
|
||||
|
||||
# Individual button configurations
|
||||
[buttons.cancel]
|
||||
text = "Cancel"
|
||||
background_color = "#f5e0dc"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "Escape"
|
||||
|
||||
[buttons.logout]
|
||||
text = "Logout"
|
||||
background_color = "#cba6f7"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "L"
|
||||
|
||||
[buttons.reboot]
|
||||
text = "Reboot"
|
||||
background_color = "#f5c2e7"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "R"
|
||||
|
||||
[buttons.shutdown]
|
||||
text = "Shutdown"
|
||||
background_color = "#f5a97f"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "S"
|
||||
|
||||
[buttons.lock]
|
||||
text = "Lock"
|
||||
background_color = "#8aadf4"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "K"
|
||||
|
||||
[buttons.suspend]
|
||||
text = "Suspend"
|
||||
background_color = "#7dc4e4"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "U"
|
||||
|
||||
[buttons.hibernate]
|
||||
text = "Hibernate"
|
||||
background_color = "#a6da95"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "H"
|
||||
119
arch_check/.config/nlogout/nlogout.Configuration.Guide.md
Normal file
@@ -0,0 +1,119 @@
|
||||
# nlogout Configuration Guide
|
||||
|
||||
This guide explains all the configuration options available in the `config.toml` file for nlogout. The configuration file is located at `~/.config/nlogout/config.toml`.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
1. [Button Order](#button-order)
|
||||
2. [Programs to Terminate](#programs-to-terminate)
|
||||
3. [Lock Screen Application](#lock-screen-application)
|
||||
4. [Window Configuration](#window-configuration)
|
||||
5. [Font Configuration](#font-configuration)
|
||||
6. [Global Button Configuration](#global-button-configuration)
|
||||
7. [Individual Button Configurations](#individual-button-configurations)
|
||||
|
||||
## Button Order
|
||||
|
||||
```toml
|
||||
button_order = ["cancel", "logout", "reboot", "shutdown", "lock", "suspend", "hibernate"]
|
||||
```
|
||||
|
||||
This optional setting allows you to specify the order in which buttons appear. If not specified, all configured buttons will be shown in the order they are defined in the config file.
|
||||
|
||||
## Programs to Terminate
|
||||
|
||||
```toml
|
||||
programs_to_terminate = ["example_program1", "example_program2"]
|
||||
```
|
||||
|
||||
Specify a list of programs that should be terminated when logging out. This ensures there is only one instance when logging back in.
|
||||
|
||||
## Lock Screen Application
|
||||
|
||||
```toml
|
||||
lock_screen_app = "i3lock -c 313244"
|
||||
```
|
||||
|
||||
Optionally specify a custom lock screen application command. If not set, the default `loginctl lock-session` will be used.
|
||||
|
||||
## Window Configuration
|
||||
|
||||
```toml
|
||||
[window]
|
||||
width = 642
|
||||
height = 98
|
||||
title = "nlogout"
|
||||
background_color = "#313244"
|
||||
```
|
||||
|
||||
- `width`: Width of the application window (in pixels)
|
||||
- `height`: Height of the application window (in pixels)
|
||||
- `title`: The title of the application window
|
||||
- `background_color`: The background color of the application window (in hex format)
|
||||
|
||||
## Font Configuration
|
||||
|
||||
```toml
|
||||
[font]
|
||||
family = "Noto Sans Mono"
|
||||
size = 14
|
||||
bold = true
|
||||
```
|
||||
|
||||
- `family`: The font family used in the application
|
||||
- `size`: The font size used in the application
|
||||
- `bold`: Whether to use bold font (true/false)
|
||||
|
||||
## Global Button Configuration
|
||||
|
||||
```toml
|
||||
[button]
|
||||
show_text = true
|
||||
width = 80
|
||||
height = 80
|
||||
padding = 3
|
||||
top_padding = 3
|
||||
corner_radius = 10
|
||||
icon_size = 32
|
||||
icon_theme = "default"
|
||||
```
|
||||
|
||||
- `show_text`: Whether to show text on buttons (true/false). If set to false, only icons will be displayed.
|
||||
- `width`: Width of each button (in pixels)
|
||||
- `height`: Height of each button (in pixels)
|
||||
- `padding`: Padding between buttons (in pixels)
|
||||
- `top_padding`: Padding at the top of each button (in pixels)
|
||||
- `corner_radius`: Radius of rounded corners, setting 0 means square buttuns
|
||||
- `icon_size`: Size of the icons for all buttons (in pixels)
|
||||
- `icon_theme`: Name of the icon theme folder (located in `~/.config/nlogout/themes/`)
|
||||
|
||||
## Individual Button Configurations
|
||||
|
||||
For each button (`cancel`, `logout`, `reboot`, `shutdown`, `lock`, `suspend`, `hibernate`), you can specify:
|
||||
|
||||
```toml
|
||||
[buttons.cancel]
|
||||
text = "Cancel"
|
||||
background_color = "#f5e0dc"
|
||||
text_color = "#363a4f"
|
||||
shortcut = "Escape"
|
||||
```
|
||||
|
||||
- `text`: The text displayed on the button
|
||||
- `background_color`: The background color of the button (in hex format)
|
||||
- `text_color`: The text color of the button (in hex format)
|
||||
- `shortcut`: The keyboard shortcut for the button action
|
||||
|
||||
Repeat this section for each button you want to include in your configuration.
|
||||
|
||||
## Icon Themes
|
||||
|
||||
Icons should be placed in the `~/.config/nlogout/themes/` directory, in a subdirectory named after your theme. For example:
|
||||
|
||||
```
|
||||
~/.config/nlogout/themes/default/cancel.svg
|
||||
~/.config/nlogout/themes/default/logout.svg
|
||||
# ... etc.
|
||||
```
|
||||
|
||||
Ensure that your icon theme directory contains an SVG file for each button, named exactly as the button key (e.g., `cancel.svg`, `logout.svg`, etc.).
|
||||
223
arch_check/.config/nlogout/src/nlogout.nim
Normal file
@@ -0,0 +1,223 @@
|
||||
import std/[os, osproc, tables, strutils]
|
||||
import nlogout_config
|
||||
import nigui
|
||||
|
||||
|
||||
proc getDesktopEnvironment(): string =
|
||||
let xdgCurrentDesktop = getEnv("XDG_CURRENT_DESKTOP").toLower()
|
||||
if xdgCurrentDesktop != "":
|
||||
return xdgCurrentDesktop
|
||||
|
||||
let desktopSession = getEnv("DESKTOP_SESSION").toLower()
|
||||
if desktopSession != "":
|
||||
return desktopSession
|
||||
|
||||
return "unknown"
|
||||
|
||||
proc terminate(sApp: string) =
|
||||
discard execCmd("pkill " & sApp)
|
||||
|
||||
proc getIconPath(config: Config, buttonKey: string): string =
|
||||
result = ICON_THEME_PATH / config.iconTheme / (buttonKey & ".svg")
|
||||
if not fileExists(result):
|
||||
result = ICON_THEME_PATH / "default" / (buttonKey & ".svg")
|
||||
|
||||
proc hexToRgb(hex: string): Color =
|
||||
var hexColor = hex.strip()
|
||||
if hexColor.startsWith("#"):
|
||||
hexColor = hexColor[1..^1]
|
||||
if hexColor.len == 6:
|
||||
let
|
||||
r = byte(parseHexInt(hexColor[0..1]))
|
||||
g = byte(parseHexInt(hexColor[2..3]))
|
||||
b = byte(parseHexInt(hexColor[4..5]))
|
||||
result = rgb(r, g, b)
|
||||
else:
|
||||
result = rgb(0.byte, 0.byte, 0.byte)
|
||||
|
||||
###############################################################################
|
||||
proc drawRoundedRect(canvas: Canvas, x, y, width, height, radius: float, color: Color) =
|
||||
# Set the fill and line color
|
||||
canvas.areaColor = color
|
||||
canvas.lineColor = color
|
||||
|
||||
let radiusInt = radius.int
|
||||
|
||||
# Draw the main rectangle
|
||||
canvas.drawRectArea(x.int + radiusInt, y.int, (width - radius * 2).int, height.int)
|
||||
canvas.drawRectArea(x.int, y.int + radiusInt, width.int, (height - radius * 2).int)
|
||||
|
||||
|
||||
# Draw the rounded corners using arcs
|
||||
canvas.drawArcOutline(x.int + radiusInt, y.int + radiusInt, radius, 180, 90) # Top-left
|
||||
canvas.drawArcOutline((x + width).int - radiusInt, y.int + radiusInt, radius, 270, 90) # Top-right
|
||||
canvas.drawArcOutline(x.int + radiusInt, (y + height).int - radiusInt, radius, 90, 90) # Bottom-left
|
||||
canvas.drawArcOutline((x + width).int - radiusInt, (y + height).int - radiusInt, radius, 0, 90) # Bottom-right
|
||||
|
||||
|
||||
# Fill the corners
|
||||
canvas.drawEllipseArea(x.int, y.int, radiusInt * 2, radiusInt * 2) # Top-left
|
||||
canvas.drawEllipseArea((x + width).int - radiusInt * 2, y.int, radiusInt * 2, radiusInt * 2) # Top-right
|
||||
canvas.drawEllipseArea(x.int, (y + height).int - radiusInt * 2, radiusInt * 2, radiusInt * 2) # Bottom-left
|
||||
canvas.drawEllipseArea((x + width).int - radiusInt * 2, (y + height).int - radiusInt * 2, radiusInt * 2, radiusInt * 2) # Bottom-right
|
||||
|
||||
|
||||
|
||||
|
||||
proc createButton(cfg: ButtonConfig, config: Config, buttonKey: string, action: proc()): Control =
|
||||
var button = newControl()
|
||||
button.width = config.buttonWidth
|
||||
button.height = config.buttonHeight
|
||||
|
||||
button.onDraw = proc(event: DrawEvent) =
|
||||
let canvas = event.control.canvas
|
||||
let buttonWidth = button.width.float
|
||||
let buttonHeight = button.height.float
|
||||
|
||||
if config.cornerRadius > 0:
|
||||
drawRoundedRect(canvas, 0, 0, buttonWidth, buttonHeight, config.cornerRadius.float, hexToRgb(cfg.backgroundColor))
|
||||
else:
|
||||
canvas.areaColor = hexToRgb(cfg.backgroundColor)
|
||||
canvas.drawRectArea(0, 0, buttonWidth.int, buttonHeight.int)
|
||||
|
||||
canvas.fontFamily = config.fontFamily
|
||||
canvas.fontSize = config.fontSize.float
|
||||
canvas.fontBold = config.fontBold
|
||||
canvas.textColor = hexToRgb(cfg.textColor)
|
||||
|
||||
var y = config.buttonTopPadding.float
|
||||
|
||||
# Draw icon
|
||||
let iconPath = getIconPath(config, buttonKey)
|
||||
if fileExists(iconPath):
|
||||
var icon = newImage()
|
||||
icon.loadFromFile(iconPath)
|
||||
let iconX = (buttonWidth - config.iconSize.float) / 2
|
||||
let iconY = y
|
||||
canvas.drawImage(icon, iconX.int, iconY.int, config.iconSize, config.iconSize)
|
||||
y += config.iconSize.float + 5 # Add some padding after the icon
|
||||
|
||||
# Draw text
|
||||
if config.showText:
|
||||
let textWidth = canvas.getTextWidth(cfg.text).float
|
||||
let textX = (buttonWidth - textWidth) / 2
|
||||
canvas.drawText(cfg.text, textX.int, y.int)
|
||||
y += config.fontSize.float + 5 # Add some padding after the text
|
||||
|
||||
# Draw shortcut
|
||||
if config.showshortcuttext:
|
||||
let shortcutText = "(" & cfg.shortcut & ")"
|
||||
let shortcutWidth = canvas.getTextWidth(shortcutText).float
|
||||
let shortcutX = (buttonWidth - shortcutWidth) / 2
|
||||
canvas.drawText(shortcutText, shortcutX.int, y.int)
|
||||
|
||||
button.onClick = proc(event: ClickEvent) =
|
||||
action()
|
||||
|
||||
return button
|
||||
|
||||
|
||||
proc main() =
|
||||
let config = loadConfig()
|
||||
app.init()
|
||||
|
||||
var window = newWindow()
|
||||
window.width = config.window.width
|
||||
window.height = config.window.height
|
||||
window.title = config.window.title
|
||||
|
||||
var container = newLayoutContainer(Layout_Vertical)
|
||||
container.widthMode = WidthMode_Fill
|
||||
container.heightMode = HeightMode_Fill
|
||||
|
||||
container.onDraw = proc (event: DrawEvent) =
|
||||
let canvas = event.control.canvas
|
||||
canvas.areaColor = hexToRgb(config.window.backgroundColor)
|
||||
canvas.drawRectArea(0, 0, window.width, window.height)
|
||||
|
||||
window.add(container)
|
||||
|
||||
# Top spacer
|
||||
var spacerTop = newControl()
|
||||
spacerTop.widthMode = WidthMode_Fill
|
||||
spacerTop.heightMode = HeightMode_Expand
|
||||
container.add(spacerTop)
|
||||
|
||||
# Button container
|
||||
var buttonContainer = newLayoutContainer(Layout_Horizontal)
|
||||
buttonContainer.widthMode = WidthMode_Fill
|
||||
buttonContainer.height = config.buttonHeight + (2 * config.buttonPadding)
|
||||
|
||||
buttonContainer.onDraw = proc (event: DrawEvent) =
|
||||
let canvas = event.control.canvas
|
||||
canvas.areaColor = hexToRgb(config.window.backgroundColor)
|
||||
canvas.drawRectArea(0, 0, buttonContainer.width, buttonContainer.height)
|
||||
|
||||
container.add(buttonContainer)
|
||||
|
||||
# Left spacer in button container
|
||||
var spacerLeft = newControl()
|
||||
spacerLeft.widthMode = WidthMode_Expand
|
||||
spacerLeft.heightMode = HeightMode_Fill
|
||||
buttonContainer.add(spacerLeft)
|
||||
|
||||
proc logout() {.closure.} =
|
||||
for program in config.programsToTerminate:
|
||||
terminate(program)
|
||||
let desktop = getDesktopEnvironment()
|
||||
|
||||
if desktop == "hyprland":
|
||||
discard execCmd("hyprctl dispatch exit")
|
||||
else:
|
||||
terminate(desktop)
|
||||
quit(0)
|
||||
|
||||
let actions = {
|
||||
"cancel": proc() {.closure.} = app.quit(),
|
||||
"logout": logout,
|
||||
"reboot": proc() {.closure.} = discard execCmd("systemctl reboot"),
|
||||
"shutdown": proc() {.closure.} = discard execCmd("systemctl poweroff"),
|
||||
"suspend": proc() {.closure.} = discard execCmd("systemctl suspend"),
|
||||
"hibernate": proc() {.closure.} = discard execCmd("systemctl hibernate"),
|
||||
"lock": proc() {.closure.} =
|
||||
if config.lockScreenApp != "":
|
||||
discard execCmd(config.lockScreenApp)
|
||||
else:
|
||||
discard execCmd("loginctl lock-session")
|
||||
}.toTable
|
||||
|
||||
for i, key in config.buttonOrder:
|
||||
if key in config.buttons and key in actions:
|
||||
if i > 0: # Add spacing between buttons, but not before the first button
|
||||
var spacing = newControl()
|
||||
spacing.width = config.buttonPadding
|
||||
buttonContainer.add(spacing)
|
||||
|
||||
var button = createButton(config.buttons[key], config, key, actions[key])
|
||||
buttonContainer.add(button)
|
||||
|
||||
# Right spacer in button container
|
||||
var spacerRight = newControl()
|
||||
spacerRight.widthMode = WidthMode_Expand
|
||||
spacerRight.heightMode = HeightMode_Fill
|
||||
buttonContainer.add(spacerRight)
|
||||
|
||||
# Bottom spacer
|
||||
var spacerBottom = newControl()
|
||||
spacerBottom.widthMode = WidthMode_Fill
|
||||
spacerBottom.heightMode = HeightMode_Expand
|
||||
container.add(spacerBottom)
|
||||
|
||||
window.onKeyDown = proc(event: KeyboardEvent) =
|
||||
let keyString = standardizeKeyName($event.key)
|
||||
for key, cfg in config.buttons:
|
||||
let standardizedShortcut = standardizeKeyName(cfg.shortcut)
|
||||
if standardizedShortcut == keyString:
|
||||
if key in actions:
|
||||
actions[key]()
|
||||
return
|
||||
|
||||
window.show()
|
||||
app.run()
|
||||
|
||||
main()
|
||||
135
arch_check/.config/nlogout/src/nlogout_config.nim
Normal file
@@ -0,0 +1,135 @@
|
||||
import std/[os, sequtils, strutils, tables]
|
||||
import parsetoml
|
||||
|
||||
type
|
||||
ButtonConfig* = object
|
||||
text*, shortcut*, backgroundColor*, textColor*: string
|
||||
|
||||
WindowConfig* = object
|
||||
width*, height*: int
|
||||
title*, backgroundColor*: string
|
||||
|
||||
Config* = object
|
||||
buttons*: Table[string, ButtonConfig]
|
||||
buttonOrder*: seq[string]
|
||||
window*: WindowConfig
|
||||
programsToTerminate*: seq[string]
|
||||
fontFamily*: string
|
||||
fontSize*: int
|
||||
fontBold*: bool
|
||||
showText*: bool
|
||||
showshortcuttext*: bool
|
||||
buttonWidth*: int
|
||||
buttonHeight*: int
|
||||
buttonPadding*: int
|
||||
buttonTopPadding*: int
|
||||
cornerRadius*: int
|
||||
iconSize*: int
|
||||
iconTheme*: string
|
||||
lockScreenApp*: string
|
||||
|
||||
const
|
||||
CONFIG_PATH* = getHomeDir() / ".config/nlogout/config.toml"
|
||||
ICON_THEME_PATH* = getHomeDir() / ".config/nlogout/themes"
|
||||
DEFAULT_BUTTON_ORDER = @["cancel", "logout", "reboot", "shutdown", "suspend", "hibernate", "lock"]
|
||||
DEFAULT_CONFIG = Config(
|
||||
buttons: {
|
||||
"cancel": ButtonConfig(text: "Cancel", shortcut: "Escape", backgroundColor: "#f5e0dc", textColor: "#363a4f"),
|
||||
"logout": ButtonConfig(text: "Logout", shortcut: "L", backgroundColor: "#cba6f7", textColor: "#363a4f"),
|
||||
"reboot": ButtonConfig(text: "Reboot", shortcut: "R", backgroundColor: "#f5c2e7", textColor: "#363a4f"),
|
||||
"shutdown": ButtonConfig(text: "Shutdown", shortcut: "S", backgroundColor: "#f5a97f", textColor: "#363a4f"),
|
||||
"suspend": ButtonConfig(text: "Suspend", shortcut: "U", backgroundColor: "#7dc4e4", textColor: "#363a4f"),
|
||||
"hibernate": ButtonConfig(text: "Hibernate", shortcut: "H", backgroundColor: "#a6da95", textColor: "#363a4f"),
|
||||
"lock": ButtonConfig(text: "Lock", shortcut: "K", backgroundColor: "#8aadf4", textColor: "#363a4f")
|
||||
}.toTable,
|
||||
buttonOrder: DEFAULT_BUTTON_ORDER,
|
||||
window: WindowConfig(width: 642, height: 98, title: "nlogout", backgroundColor: "#313244"),
|
||||
programsToTerminate: @[""],
|
||||
fontFamily: "Noto Sans Mono",
|
||||
fontSize: 14,
|
||||
fontBold: true,
|
||||
showText: true,
|
||||
showshortcuttext: true,
|
||||
buttonWidth: 80,
|
||||
buttonHeight: 80,
|
||||
buttonPadding: 3,
|
||||
buttonTopPadding: 3,
|
||||
cornerRadius: 0,
|
||||
iconSize: 32,
|
||||
iconTheme: "default",
|
||||
lockScreenApp: "loginctl lock-session"
|
||||
)
|
||||
|
||||
proc standardizeKeyName*(key: string): string =
|
||||
result = key.toLower()
|
||||
if result.startsWith("key_"):
|
||||
result = result[4..^1]
|
||||
if result == "esc": result = "escape"
|
||||
elif result == "return": result = "enter"
|
||||
|
||||
proc loadConfig*(): Config =
|
||||
result = DEFAULT_CONFIG
|
||||
if fileExists(CONFIG_PATH):
|
||||
let toml = parsetoml.parseFile(CONFIG_PATH)
|
||||
if toml.hasKey("window"):
|
||||
let windowConfig = toml["window"]
|
||||
result.window.width = windowConfig.getOrDefault("width").getInt(result.window.width)
|
||||
result.window.height = windowConfig.getOrDefault("height").getInt(result.window.height)
|
||||
result.window.title = windowConfig.getOrDefault("title").getStr(result.window.title)
|
||||
result.window.backgroundColor = windowConfig.getOrDefault("background_color").getStr(result.window.backgroundColor)
|
||||
|
||||
if toml.hasKey("font"):
|
||||
let fontConfig = toml["font"]
|
||||
result.fontFamily = fontConfig.getOrDefault("family").getStr(result.fontFamily)
|
||||
result.fontSize = fontConfig.getOrDefault("size").getInt(result.fontSize)
|
||||
result.fontBold = fontConfig.getOrDefault("bold").getBool(result.fontBold)
|
||||
|
||||
if toml.hasKey("button"):
|
||||
let buttonConfig = toml["button"]
|
||||
result.showText = buttonConfig.getOrDefault("show_text").getBool(result.showText)
|
||||
result.showshortcuttext = buttonConfig.getOrDefault("keybind_text").getBool(result.showshortcuttext)
|
||||
result.buttonWidth = buttonConfig.getOrDefault("width").getInt(result.buttonWidth)
|
||||
result.buttonHeight = buttonConfig.getOrDefault("height").getInt(result.buttonHeight)
|
||||
result.buttonPadding = buttonConfig.getOrDefault("padding").getInt(result.buttonPadding)
|
||||
result.buttonTopPadding = buttonConfig.getOrDefault("top_padding").getInt(result.buttonTopPadding)
|
||||
result.iconSize = buttonConfig.getOrDefault("icon_size").getInt(result.iconSize)
|
||||
result.iconTheme = buttonConfig.getOrDefault("icon_theme").getStr(result.iconTheme)
|
||||
result.cornerRadius = buttonConfig.getOrDefault("corner_radius").getInt(result.cornerRadius)
|
||||
|
||||
var configuredButtons: Table[string, ButtonConfig]
|
||||
if toml.hasKey("buttons"):
|
||||
let buttonConfigs = toml["buttons"]
|
||||
if buttonConfigs.kind == TomlValueKind.Table:
|
||||
for key, value in buttonConfigs.getTable():
|
||||
if value.kind == TomlValueKind.Table:
|
||||
let btnConfig = value.getTable()
|
||||
configuredButtons[key] = ButtonConfig(
|
||||
text: btnConfig.getOrDefault("text").getStr(DEFAULT_CONFIG.buttons.getOrDefault(key).text),
|
||||
shortcut: standardizeKeyName(btnConfig.getOrDefault("shortcut").getStr(DEFAULT_CONFIG.buttons.getOrDefault(key).shortcut)),
|
||||
backgroundColor: btnConfig.getOrDefault("background_color").getStr(DEFAULT_CONFIG.buttons.getOrDefault(key).backgroundColor),
|
||||
textColor: btnConfig.getOrDefault("text_color").getStr(DEFAULT_CONFIG.buttons.getOrDefault(key).textColor)
|
||||
)
|
||||
|
||||
result.buttons = configuredButtons
|
||||
|
||||
if toml.hasKey("button_order"):
|
||||
let orderArray = toml["button_order"]
|
||||
if orderArray.kind == TomlValueKind.Array:
|
||||
result.buttonOrder = @[]
|
||||
for item in orderArray.getElems():
|
||||
if item.kind == TomlValueKind.String:
|
||||
let key = item.getStr()
|
||||
if key in configuredButtons:
|
||||
result.buttonOrder.add(key)
|
||||
elif configuredButtons.len > 0:
|
||||
# If no button_order is specified, use all configured buttons
|
||||
result.buttonOrder = toSeq(configuredButtons.keys)
|
||||
else:
|
||||
# If no buttons are configured, use the default order
|
||||
result.buttonOrder = DEFAULT_BUTTON_ORDER
|
||||
|
||||
if toml.hasKey("programs_to_terminate"):
|
||||
result.programsToTerminate = toml["programs_to_terminate"].getElems().mapIt(it.getStr())
|
||||
|
||||
if toml.hasKey("lock_screen_app"):
|
||||
result.lockScreenApp = toml["lock_screen_app"].getStr(result.lockScreenApp)
|
||||
101
arch_check/.config/nlogout/themes/beauty/cancel.svg
Normal file
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="64"
|
||||
height="64"
|
||||
viewBox="0 0 64 64"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg25"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview27"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.359375"
|
||||
inkscape:cx="32"
|
||||
inkscape:cy="32"
|
||||
inkscape:window-width="948"
|
||||
inkscape:window-height="498"
|
||||
inkscape:window-x="964"
|
||||
inkscape:window-y="544"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg25" />
|
||||
<path
|
||||
d="M56 32C56 18.75 45.25 8 32 8C18.75 8 8 18.75 8 32C8 45.25 18.75 56 32 56C45.25 56 56 45.25 56 32Z"
|
||||
stroke="url(#paint0_linear)"
|
||||
stroke-width="5"
|
||||
stroke-miterlimit="10"
|
||||
id="path2" />
|
||||
<path
|
||||
d="M40 40L24 24"
|
||||
stroke="url(#paint1_linear)"
|
||||
stroke-width="5"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
id="path4" />
|
||||
<path
|
||||
d="M24 40L40 24"
|
||||
stroke="url(#paint2_linear)"
|
||||
stroke-width="5"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
id="path6" />
|
||||
<defs
|
||||
id="defs23">
|
||||
<linearGradient
|
||||
id="paint0_linear"
|
||||
x1="55.8578"
|
||||
y1="8.3043"
|
||||
x2="8.23749"
|
||||
y2="55.5282"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#FE7970"
|
||||
id="stop8" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#DC3282"
|
||||
id="stop10" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint1_linear"
|
||||
x1="39.9526"
|
||||
y1="24.1014"
|
||||
x2="24.0792"
|
||||
y2="39.8427"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#FE7970"
|
||||
id="stop13" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#DC3282"
|
||||
id="stop15" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="paint2_linear"
|
||||
x1="39.9526"
|
||||
y1="24.1014"
|
||||
x2="24.0792"
|
||||
y2="39.8427"
|
||||
gradientUnits="userSpaceOnUse">
|
||||
<stop
|
||||
stop-color="#FE7970"
|
||||
id="stop18" />
|
||||
<stop
|
||||
offset="1"
|
||||
stop-color="#DC3282"
|
||||
id="stop20" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
15
arch_check/.config/nlogout/themes/beauty/hibernate.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.953 6.4718-2.4212 1.5407 4.5916 8.782-6.2709-1.8551-0.72529 2.9798 8.9684 2.6529 4.3796 8.3724h-8.7509l-6.5665-7.2538-1.975 2.1817 4.5944 5.0721h-9.1859v3.0814h9.1859l-4.5944 5.0718 1.975 2.1817 6.5638-7.2534h8.7395l-4.3711 8.3596-8.9655 2.6533 0.71689 2.9797 6.2763-1.8613-4.5913 8.7913 2.4129 1.5409 4.5943-8.7884 1.6821 6.9333 2.6919-0.80107-2.4019-9.91 5.1745-9.8973h0.0168l5.1801 9.9187-2.399 9.9067 2.6946 0.79199 1.6767-6.9269 4.5944 8.7882 2.4185-1.5405-4.5917-8.7884 6.2708 1.8549 0.72536-2.9733-8.9684-2.6533-4.3796-8.3782h8.7536l6.5636 7.2534 1.9751-2.1817-4.5944-5.0718h9.186v-3.0814h-9.186l4.5944-5.0721-0.14233-0.18482h-3.6345l-4.7618 5.257h-11.975v-0.0062l-0.01101-0.0062-5.1691-9.9006 2.399-9.9068-2.6946-0.80116-1.6767 6.9332zm25.692-2.1786v3.0814h6.3962l-5.5791 6.1628-0.8171 0.90275v2.1787h11.158v-3.0814h-6.3964l5.5789-6.1628 0.81748-0.90284v-2.1786h-1.9723z" fill="url(#paint0_linear)" stroke-width="1.9312"/>
|
||||
<path d="m29.697 10.087v3.3796h6.6426l-5.7936 6.7593-0.84896 0.99013v2.3895h11.587v-3.3796h-6.6422l5.7936-6.7593 0.84858-0.99021v-2.3894h-2.0479z" fill="url(#paint1_linear)" stroke-width="1.9312"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="16" x2="16" y1="29" y2="3" gradientTransform="matrix(1.9312 0 0 1.9312 -1.2027 -1.5004)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#A93AFF" offset="0"/>
|
||||
<stop stop-color="#FF81FF" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="19" x2="19" y1="13" y2="6" gradientTransform="matrix(1.9312 0 0 1.9312 -1.2027 -1.5004)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#A93AFF" offset="0"/>
|
||||
<stop stop-color="#FF81FF" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
10
arch_check/.config/nlogout/themes/beauty/lock.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m29.588 2.6472c-7.6348 0-13.824 6.0172-13.824 13.44v11.52c0 1.0604-0.85962 1.92-1.92 1.92h-5.376c-1.0604 0-1.92 0.85962-1.92 1.92v23.04c0 1.0602 0.85962 1.92 1.92 1.92h42.24c1.0602 0 1.92-0.85978 1.92-1.92v-23.04c0-1.0604-0.85978-1.92-1.92-1.92h-5.376c-1.0602 0-1.92-0.85962-1.92-1.92v-11.52c0-7.4228-6.1892-13.44-13.824-13.44zm0 4.48c5.0898 0 9.216 4.0115 9.216 8.96v11.52c0 1.0604-0.85978 1.92-1.92 1.92h-14.592c-1.0604 0-1.92-0.85962-1.92-1.92v-11.52c0-4.9485 4.1262-8.96 9.216-8.96z" fill="url(#paint0_linear)" stroke-width="3.84"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="13.662" x2="3.3315" y1="8" y2="4.7971" gradientTransform="matrix(3.84 0 0 3.84 -1.1323 -1.1928)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FE7970" offset="0"/>
|
||||
<stop stop-color="#DC3282" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 996 B |
22
arch_check/.config/nlogout/themes/beauty/logout.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<g stroke-width=".11799">
|
||||
<path d="m50.346 42.511c0.27964 0.15755 0.38617 0.52527 0.23085 0.81719-2.7292 5.1314-6.959 9.1984-12.063 11.585-5.279 2.4687-11.189 2.9977-16.785 1.5026-5.5969-1.495-10.558-4.928-14.092-9.7509-3.534-4.8229-5.4368-10.758-5.4046-16.857 0.032148-6.0991 1.9974-12.011 5.582-16.792 3.5846-4.781 8.5819-8.1554 14.194-9.5845 5.6122-1.4291 11.516-0.83062 16.769 1.7 5.0783 2.4467 9.265 6.5631 11.94 11.726 0.1521 0.29386 0.04182 0.66026-0.23958 0.81441l-1.7312 0.94903c-0.28136 0.15426-0.62712 0.03785-0.78025-0.25554-2.3553-4.514-6.0263-8.1127-10.475-10.256-4.6225-2.2271-9.8179-2.7538-14.757-1.4961-4.939 1.2577-9.3368 4.2273-12.491 8.4348-3.1546 4.2075-4.8841 9.4102-4.9124 14.778-0.028265 5.3676 1.6462 10.59 4.7563 14.835 3.11 4.2444 7.4763 7.2655 12.402 8.5813 4.9254 1.3158 10.126 0.85018 14.772-1.3223 4.4706-2.0906 8.1793-5.646 10.582-10.132 0.15612-0.29144 0.50314-0.40387 0.78289-0.24632z" fill="url(#paint0_linear)"/>
|
||||
<path d="m44.775 39.374c0.27975 0.15755 0.38639 0.52539 0.22913 0.8161-2.064 3.8162-5.2316 6.8409-9.045 8.6242-3.9885 1.8652-8.4535 2.2649-12.682 1.1352-4.2286-1.1296-7.9773-3.7235-10.647-7.3674-2.6701-3.644-4.1078-8.1279-4.0835-12.736 0.024315-4.6082 1.5091-9.075 4.2174-12.687 2.7084-3.6122 6.4841-6.1618 10.724-7.2416 4.2405-1.0798 8.701-0.6276 12.67 1.2844 3.7943 1.8281 6.9298 4.8898 8.9534 8.7301 0.15417 0.29253 0.04373 0.65916-0.23763 0.81344l-1.8892 1.0355c-0.28135 0.15427-0.62688 0.03756-0.78277-0.25396-1.6853-3.1541-4.2753-5.6686-7.4033-7.1756-3.3024-1.5911-7.0141-1.9674-10.543-1.0688-3.5285 0.89857-6.6704 3.02-8.924 6.0259-2.2536 3.006-3.4892 6.7229-3.5095 10.557-0.02023 3.8347 1.1761 7.5659 3.398 10.598 2.2218 3.0322 5.3411 5.1906 8.8599 6.1305 3.5188 0.94006 7.2343 0.60738 10.553-0.94466 3.1437-1.4702 5.76-3.9541 7.4784-7.0881 0.15887-0.28974 0.50566-0.40229 0.78542-0.24475z" fill="url(#paint1_linear)"/>
|
||||
<path d="m47.515 33.697v4.0803c0 1.0309 1.1284 1.6039 1.8902 0.96006l9.3846-7.932c0.58223-0.49216 0.58223-1.4276 0-1.9198l-9.3846-7.9318c-0.76154-0.64389-1.8902-0.07081-1.8902 0.95982v4.0804c0 0.67869-0.52093 1.2292-1.1634 1.2292h-17.53c-0.64238 0-1.1634 0.55038-1.1634 1.2292v2.7862c0 0.67906 0.52105 1.2292 1.1637 1.2292h17.53c0.6425 0 1.1634 0.5505 1.1634 1.2293z" fill="url(#paint2_linear)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="9" x2="429" y1="256" y2="256" gradientTransform="matrix(.11479 0 0 .12128 1.2558 -1.0877)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FD3A84" offset="0"/>
|
||||
<stop stop-color="#FFA68D" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="64" x2="368.5" y1="256" y2="256" gradientTransform="matrix(.11479 0 0 .12128 1.2558 -1.0877)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FD3A84" offset="0"/>
|
||||
<stop stop-color="#FFA68D" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="229.96" x2="511.03" y1="252.49" y2="252.49" gradientTransform="matrix(.11479 0 0 .12128 1.2558 -1.0877)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FD3A84" offset="0"/>
|
||||
<stop stop-color="#FFA68D" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
16
arch_check/.config/nlogout/themes/beauty/reboot.svg
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m51.364 39.226h-9.9502c-0.32987 0-0.64622 0.13107-0.87955 0.36439-0.23321 0.23321-0.36427 0.54956-0.36427 0.87943 0 0.32987 0.13107 0.64622 0.36427 0.87955 0.23332 0.23321 0.54967 0.36427 0.87955 0.36427h7.403c-2.0392 3.0534-4.7983 5.5583-8.0341 7.2935-3.2359 1.7353-6.849 2.6476-10.521 2.6567-3.2409 0.0021-6.4437-0.69858-9.3876-2.054-2.9438-1.3554-5.5587-3.3333-7.6642-5.797-2.1055-2.4637-3.6516-5.3548-4.5317-8.474-0.88005-3.1191-1.0731-6.392-0.56588-9.593 0.03954-0.31891-0.0459-0.64074-0.23841-0.89809-0.19251-0.25735-0.47716-0.43016-0.79428-0.48228-0.31711-0.05212-0.64209 0.02064-0.90681 0.20278-0.26473 0.18225-0.44865 0.45977-0.51324 0.7746-0.21089 1.3004-0.31655 2.6156-0.31593 3.9328 0.014866 13.731 11.144 24.861 24.876 24.876 3.8612-0.0014 7.6693-0.90089 11.123-2.6273 3.4538-1.7266 6.4589-4.2326 8.7774-7.3204v6.219c0 0.32988 0.13094 0.64622 0.36427 0.87943 0.23321 0.23332 0.54956 0.36427 0.87943 0.36427 0.32987 0 0.64622-0.13094 0.87955-0.36427 0.23321-0.23321 0.36427-0.54956 0.36427-0.87943v-9.9552c-6.99e-4 -0.32941-0.132-0.64517-0.36521-0.87792-0.23321-0.23274-0.54909-0.36346-0.87862-0.36346zm-9.3607-31.851c-10.988-5.9154-24.418-2.709-31.684 6.9826v-6.2264c0-0.32988-0.13104-0.64624-0.3643-0.87949-0.23326-0.23326-0.54962-0.3643-0.87949-0.3643-0.32986 0-0.64624 0.13104-0.87948 0.3643-0.23326 0.23325-0.3643 0.54962-0.3643 0.87949v9.9503c0 0.32988 0.13104 0.64622 0.3643 0.87955 0.23324 0.23321 0.54962 0.36427 0.87948 0.36427h9.9503c0.32987 0 0.64622-0.13107 0.87943-0.36427 0.23333-0.23333 0.36439-0.54968 0.36439-0.87955s-0.13107-0.64622-0.36439-0.87943c-0.23321-0.23333-0.54956-0.36439-0.87943-0.36439h-7.403c2.0391-3.0534 4.7983-5.5582 8.0341-7.2935 3.2359-1.7353 6.8489-2.6476 10.521-2.6567 3.2411-0.00199 6.4442 0.69923 9.3882 2.0551 2.9439 1.3559 5.5588 3.3341 7.6641 5.7985 2.1053 2.4643 3.651 5.356 4.5306 8.4755 0.87955 3.1195 1.0719 6.3927 0.56402 9.5939-0.02612 0.16115-0.02029 0.32603 0.01726 0.48496 0.03755 0.15893 0.10612 0.30889 0.20161 0.44135 0.09549 0.13246 0.21618 0.24487 0.35506 0.33069 0.13899 0.08582 0.29349 0.14342 0.45464 0.16954 0.16126 0.02624 0.32603 0.02029 0.48496-0.01726s0.30889-0.10599 0.44135-0.20149c0.13258-0.09549 0.24487-0.21619 0.33069-0.35518 0.08593-0.13888 0.14354-0.29338 0.16966-0.45464 0.21082-1.3003 0.31658-2.6156 0.31588-3.9328-0.0034-4.492-1.2221-8.8994-3.5271-12.755-2.3048-3.8555-5.61-7.0157-9.565-9.1455z" fill="url(#paint0_linear)" stroke="url(#paint0_linear)" stroke-width=".93284"/>
|
||||
<path d="m37.682 29.276c0-1.9792-0.78627-3.8773-2.1858-5.2769-1.3995-1.3995-3.2977-2.1858-5.2769-2.1858-1.9792 0-3.8775 0.78626-5.2769 2.1858-1.3995 1.3996-2.1858 3.2977-2.1858 5.2769 0 1.9792 0.78626 3.8775 2.1858 5.2769 1.3995 1.3995 3.2977 2.1858 5.2769 2.1858 1.9792 0 3.8775-0.78626 5.2769-2.1858 1.3995-1.3995 2.1858-3.2977 2.1858-5.2769zm-12.438 0c0-1.3195 0.52426-2.5849 1.4572-3.518 0.93307-0.93295 2.1985-1.4572 3.518-1.4572s2.5849 0.52426 3.518 1.4572c0.93307 0.93307 1.4572 2.1985 1.4572 3.518s-0.52414 2.5849-1.4572 3.518c-0.93307 0.93307-2.1985 1.4572-3.518 1.4572s-2.5849-0.52414-3.518-1.4572c-0.93295-0.93307-1.4572-2.1985-1.4572-3.518z" clip-rule="evenodd" fill="url(#paint2_linear)" fill-rule="evenodd" stroke-width=".1166"/>
|
||||
<path d="m35.167 24.329c1.3122 1.312 2.0492 3.0915 2.0492 4.9471h0.93284c0-2.103-0.83536-4.1198-2.3224-5.6067zm-4.9471-2.0492c1.8555 0 3.635 0.73718 4.9471 2.0492l0.65963-0.65963c-1.4869-1.4871-3.5037-2.3224-5.6067-2.3224zm-4.9471 2.0492c1.312-1.312 3.0915-2.0492 4.9471-2.0492v-0.93284c-2.103 0-4.1198 0.83536-5.6067 2.3224zm-2.0492 4.9471c0-1.8555 0.73706-3.635 2.0492-4.9471l-0.65963-0.65963c-1.4871 1.4869-2.3224 3.5037-2.3224 5.6067zm2.0492 4.9472c-1.3122-1.3122-2.0492-3.0917-2.0492-4.9472h-0.93284c0 2.103 0.83536 4.1198 2.3224 5.6067zm4.9471 2.0491c-1.8555 0-3.635-0.73706-4.9471-2.0491l-0.65963 0.65952c1.4869 1.4871 3.5037 2.3224 5.6067 2.3224zm4.9471-2.0491c-1.312 1.312-3.0915 2.0491-4.9471 2.0491v0.93284c2.103 0 4.1198-0.83536 5.6067-2.3224zm2.0492-4.9472c0 1.8555-0.73706 3.635-2.0492 4.9472l0.65963 0.65952c1.4871-1.4869 2.3224-3.5037 2.3224-5.6067zm-10.844-3.8477c-1.0205 1.0204-1.5939 2.4045-1.5939 3.8477h0.93284c0-1.1958 0.47505-2.3426 1.3207-3.1881zm3.8477-1.5939c-1.4432 0-2.8272 0.57334-3.8477 1.5939l0.65963 0.65963c0.8455-0.84562 1.9923-1.3207 3.1881-1.3207zm3.8477 1.5939c-1.0204-1.0205-2.4045-1.5939-3.8477-1.5939v0.93284c1.1958 0 2.3426 0.47505 3.1882 1.3207zm1.5939 3.8477c0-1.4432-0.57335-2.8273-1.5939-3.8477l-0.65952 0.65963c0.8455 0.8455 1.3205 1.9923 1.3205 3.1881zm-1.5939 3.8477c1.0205-1.0204 1.5939-2.4045 1.5939-3.8477h-0.93284c0 1.1958-0.47505 2.3426-1.3205 3.1882zm-3.8477 1.5939c1.4432 0 2.8273-0.57334 3.8477-1.5939l-0.65952-0.65952c-0.84562 0.8455-1.9924 1.3205-3.1882 1.3205zm-3.8477-1.5939c1.0205 1.0205 2.4045 1.5939 3.8477 1.5939v-0.93284c-1.1958 0-2.3426-0.47505-3.1881-1.3205zm-1.5939-3.8477c0 1.4432 0.57335 2.8273 1.5939 3.8477l0.65963-0.65952c-0.84562-0.84562-1.3207-1.9924-1.3207-3.1882z" fill="url(#paint2_linear)" stroke-width=".1166"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="256" x2="256" y1="469.33" y2="42.677" gradientTransform="matrix(.1166 0 0 .1166 .36889 -.57462)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#A93AFF" offset="0"/>
|
||||
<stop stop-color="#FF81FF" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="256" x2="256" y1="192" y2="320" gradientTransform="matrix(.1166 0 0 .1166 .36889 -.57462)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#DC18FC" offset="0"/>
|
||||
<stop stop-color="#8E1EFF" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.6 KiB |
22
arch_check/.config/nlogout/themes/beauty/shutdown.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<g stroke-width=".11099">
|
||||
<path d="m41.385 9.0002c0.1441-0.27048 0.48071-0.37341 0.74785-0.22325 4.696 2.6388 8.4178 6.7284 10.602 11.663 2.2592 5.1041 2.7433 10.818 1.3751 16.229-1.3682 5.4114-4.5098 10.208-8.9235 13.625-4.4136 3.4169-9.8448 5.2567-15.426 5.2256-5.5816-0.0311-10.992-1.9312-15.367-5.3971-4.3753-3.4658-7.4634-8.2975-8.7712-13.724-1.3079-5.4263-0.76013-11.134 1.5558-16.213 2.2391-4.9101 6.0061-8.958 10.731-11.544 0.26894-0.14719 0.60424-0.040543 0.7453 0.23157l0.86851 1.6738c0.14117 0.27206 0.03468 0.60642-0.23386 0.7544-4.1309 2.2773-7.4243 5.8267-9.3855 10.128-2.0381 4.4693-2.5201 9.4926-1.3691 14.268 1.151 4.7753 3.8686 9.0275 7.7191 12.078 3.8505 3.05 8.6117 4.7223 13.524 4.7496 4.9121 0.02735 9.6917-1.5917 13.576-4.5986 3.8842-3.0071 6.649-7.2287 7.8531-11.991 1.2041-4.7622 0.77804-9.7906-1.2101-14.282-1.9133-4.3225-5.1669-7.9083-9.2722-10.231-0.26671-0.15094-0.3696-0.48647-0.22542-0.75696z" fill="url(#paint0_linear)"/>
|
||||
<path d="m38.513 14.387c0.1441-0.27048 0.4808-0.37358 0.74684-0.22154 3.4924 1.9956 6.2604 5.0583 7.8924 8.7453 1.7069 3.8563 2.0727 8.1734 1.0389 12.262-1.0338 4.0885-3.4075 7.713-6.7422 10.295-3.3348 2.5816-7.4382 3.9717-11.656 3.9481-4.2172-0.02345-8.3049-1.4591-11.611-4.0777-3.3057-2.6187-5.639-6.2693-6.6271-10.369-0.98818-4.1-0.57435-8.4127 1.1754-12.25 1.673-3.6686 4.4749-6.7002 7.9893-8.6568 0.2677-0.14915 0.60322-0.04233 0.7444 0.22974l0.94764 1.8266c0.14117 0.27203 0.03436 0.60612-0.23242 0.75684-2.8864 1.6294-5.1876 4.1336-6.5667 7.1579-1.4561 3.193-1.8005 6.7817-0.97815 10.193 0.82231 3.4116 2.7638 6.4494 5.5145 8.6284 2.7509 2.179 6.1524 3.3736 9.6616 3.3932 3.5093 0.01954 6.9239-1.1371 9.6987-3.2854 2.7749-2.1482 4.7501-5.1641 5.6103-8.5663 0.86028-3.4022 0.55583-6.9946-0.8645-10.204-1.3454-3.0396-3.6186-5.5691-6.4866-7.2307-0.26516-0.15354-0.36816-0.48891-0.22398-0.7594z" fill="url(#paint1_linear)"/>
|
||||
<rect x="25.57" y="2.1345" width="8.6572" height="30.522" rx="4.3286" fill="url(#paint2_linear)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="256" x2="256" y1="66.5" y2="496" gradientTransform="matrix(.11099 0 0 .11099 1.4853 .46959)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFB155" offset="0"/>
|
||||
<stop stop-color="#FF5454" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="256" x2="256" y1="140.5" y2="493" gradientTransform="matrix(.11099 0 0 .11099 1.4853 .46959)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFB155" offset="0"/>
|
||||
<stop stop-color="#FF5454" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear" x1="256" x2="256" y1="46.949" y2="332.06" gradientTransform="matrix(.11099 0 0 .11099 1.4853 .46959)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFB155" offset="0"/>
|
||||
<stop stop-color="#FF5454" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
15
arch_check/.config/nlogout/themes/beauty/suspend.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="60" height="60" fill="none" version="1.1" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m17.995 9.3012c-3.8324 2.0857-7.0201 5.107-9.2386 8.7566-2.2185 3.6497-3.3889 7.7971-3.392 12.021 0 6.3414 2.6285 12.423 7.3072 16.908 4.6789 4.4841 11.025 7.0038 17.642 7.0048 4.4007-0.0054 8.7215-1.1265 12.524-3.2488 3.8028-2.1228 6.9522-5.1709 9.1289-8.8363 0.01024-6e-3 0.02089-0.01183 0.03109-0.01788l-2.3064-2.2062c-0.0039 0.0062-0.0083 0.01225-0.01264 0.01788-3.0939 1.5323-6.5258 2.3327-10.009 2.3348-5.7898-0.0017-11.342-2.2067-15.435-6.1308-4.0935-3.9238-6.3931-9.2449-6.3931-14.793 0.0045-3.343 0.84446-6.6363 2.45-9.6042zm-2.322 5.2937c-0.62912 2.1197-0.94943 4.3126-0.95191 6.5165 0 6.3414 2.6284 12.423 7.3074 16.908 4.6787 4.4844 11.024 7.004 17.642 7.005 2.3105-0.0076 4.6086-0.32235 6.8289-0.93559-2.0441 2.1725-4.5404 3.9101-7.3281 5.1012-2.7879 1.1906-5.8053 1.8085-8.8575 1.8124-5.79-0.0015-11.342-2.2064-15.435-6.1306-4.0934-3.9236-6.3929-9.2447-6.3929-14.793 5e-3 -2.9187 0.64699-5.8039 1.8849-8.4706 1.2378-2.6667 3.0441-5.0554 5.3028-7.0133z" fill="url(#paint0_linear)" stroke-width=".48577"/>
|
||||
<path d="m26.738 13.465v3.331h7.4256l-6.4768 6.6619-0.9488 0.97581v2.3552h12.954v-3.331h-7.4256l6.4768-6.6619 0.9488-0.97591v-2.3551h-2.2897zm16.192-9.9929v3.331h7.4258l-7.4258 7.6378v2.3551h12.954v-3.331h-7.4254l6.4767-6.6619 0.9487-0.976v-2.355h-2.2899z" fill="url(#paint1_linear)" stroke-width=".48577"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="60" x2="60" y1="116" y2="24" gradientTransform="matrix(.48577 0 0 .48577 -.46489 -2.3572)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#02AA93" offset="0"/>
|
||||
<stop stop-color="#67FF80" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear" x1="86" x2="86" y1="60" y2="12" gradientTransform="matrix(.48577 0 0 .48577 -.46489 -2.3572)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#00B59C" offset="0"/>
|
||||
<stop stop-color="#9CFFAC" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
82
arch_check/.config/nlogout/themes/blue/cancel.svg
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>action-unavailable</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.4766083"
|
||||
inkscape:cx="90.030274"
|
||||
inkscape:cy="124.97813"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">action-unavailable</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="action-unavailable"
|
||||
style="fill:#2a7fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.42857)">
|
||||
<g
|
||||
id="60"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#2a7fff;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 7,0 c 3.863,0 7,3.137 7,7 0,3.863 -3.137,7 -7,7 C 3.137,14 0,10.863 0,7 0,3.137 3.137,0 7,0 Z m 0,13 c 3.313709,0 6,-2.686291 6,-6 C 13,3.6862915 10.313709,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#2a7fff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle-4"
|
||||
transform="rotate(44,7.115347,7.050773)"
|
||||
x="6.6153469"
|
||||
y="0.55077314"
|
||||
width="1"
|
||||
height="13"
|
||||
style="fill:#2a7fff;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
76
arch_check/.config/nlogout/themes/blue/hibernate.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="256"
|
||||
height="255.58078"
|
||||
viewBox="0 0 256 255.58078"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:zoom="2.36"
|
||||
inkscape:cx="-187.71186"
|
||||
inkscape:cy="232.83898"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path825"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path819"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#2a7fff;stroke:none;stroke-width:8.05695;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 128.73012,0 C 93.279396,0 57.673851,12.551957 34.296983,37.631487 0.1366776,74.279871 -9.8550024,133.00833 10.448481,177.79265 c 17.833807,39.33677 41.353893,60.03324 84.115591,74.03432 36.494408,11.94904 100.895838,-5.91231 127.701348,-35.41046 44.97944,-49.4977 44.97944,-129.287326 0,-178.785023 C 199.47518,12.551957 164.18086,0 128.73012,0 Z m 0.86637,12.727605 c 13.75548,0.0027 27.72041,2.625534 41.2702,8.285538 94.80241,39.600793 94.80241,172.468157 0,212.068967 C 97.627222,263.67562 13.627646,206.24708 14.03993,125.85835 14.368184,61.855198 69.989397,12.71571 129.59649,12.727605 Z m -1.1499,46.594364 c -3.44739,0 -5.6392,26.333736 -5.6392,67.702031 0,41.36831 2.19181,67.68628 5.6392,67.68628 3.4474,0 5.63921,-26.31797 5.63921,-67.68628 0,-41.368295 -2.19181,-67.702031 -5.63921,-67.702031 z"
|
||||
id="path817-3" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
81
arch_check/.config/nlogout/themes/blue/lock.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="219.429"
|
||||
height="256.00049"
|
||||
viewBox="0 0 219.429 256.00049"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="lock.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>document-edit copy</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1080"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="68.237288"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">document-edit copy</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="document-edit-copy"
|
||||
style="fill:#2a7fff;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.28575,0,0,18.28575,-109.7145,-91.42875)">
|
||||
<g
|
||||
id="27"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#2a7fff;fill-rule:nonzero">
|
||||
<path
|
||||
d="M 6,1 C 4.3434673,1 3,2.3667179 3,4.0625 V 7 H 1 v 6 H 11 V 7 H 9 V 4.0625 C 9,2.3672731 7.6561924,1 6,1 Z M 6,0 c 2.216,0 4,1.8225 4,4.0625 V 6 h 1 c 0.554,0 1,0.446 1,1 v 6 c 0,0.554 -0.446,1 -1,1 H 1 C 0.446,14 0,13.554 0,13 V 7 C 0,6.446 0.446,6 1,6 H 2 V 4.0625 C 2,1.8216 3.784,0 6,0 Z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#2a7fff"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
x="2"
|
||||
y="6"
|
||||
width="8"
|
||||
height="1"
|
||||
style="fill:#2a7fff" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
74
arch_check/.config/nlogout/themes/blue/logout.svg
Executable file
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="201.08699"
|
||||
height="256.00021"
|
||||
viewBox="0 0 201.08699 256.00021"
|
||||
version="1.1"
|
||||
id="svg11"
|
||||
sodipodi:docname="logout.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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>pane-hide</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview13"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="1.7383042"
|
||||
inkscape:cx="-261.17408"
|
||||
inkscape:cy="182.074"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">pane-hide</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="pane-hide"
|
||||
style="fill:#2a7fff;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.280636,0,0,18.280636,-109.68382,-91.40318)">
|
||||
<g
|
||||
id="259"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#2a7fff;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 1,0 v 1.0019531 l 9,0.00195 V 13.003906 H 1 V 14 l 10,0.0039 V 0.0039062 Z m 3,4.0039062 v 2 H 0 v 1 H 4 V 9.003906 L 8,6.5039061 Z"
|
||||
id="Shape"
|
||||
style="fill:#2a7fff"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
79
arch_check/.config/nlogout/themes/blue/reboot.svg
Executable file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="reboot.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>view-refresh</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="86.542373"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">view-refresh</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="view-refresh"
|
||||
style="fill:#2a7fff;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.428569)">
|
||||
<g
|
||||
id="21"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#2a7fff">
|
||||
<path
|
||||
d="M 12.488598,4 H 12.197307 C 11.159879,2.2065959 9.2208471,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 2.6124377,0 4.834916,-1.669615 5.658589,-4 h 1.051532 C 12.849572,11.891489 10.171021,14 7,14 3.1340068,14 0,10.865993 0,7 0,3.1340068 3.1340068,0 7,0 c 1.9756701,0 3.760175,0.81847727 5.032933,2.1348516 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#2a7fff"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polygon
|
||||
id="Triangle"
|
||||
transform="rotate(135,12.75,3.75)"
|
||||
points="12.75,1.9822331 16.285534,5.517767 9.2144661,5.517767 "
|
||||
style="fill:#2a7fff" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
73
arch_check/.config/nlogout/themes/blue/shutdown.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="106.77966"
|
||||
inkscape:cy="128.08475"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
type="text/css"
|
||||
id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(16,0,0,16,-48,-48)"
|
||||
id="g6"
|
||||
style="fill:#2a7fff;fill-opacity:1">
|
||||
<path
|
||||
style="color:#232629;fill:#2a7fff;fill-opacity:1;stroke:none"
|
||||
d="m 10,3 v 7 h 2 V 3 Z M 9,3.265625 C 5.5444518,4.1502188 3,7.2610109 3,11 c 0,4.432 3.568,8 8,8 4.432,0 8,-3.568 8,-8 C 19,7.2610109 16.455548,4.1502188 13,3.265625 V 4.3027344 C 15.895041,5.15992 18,7.819625 18,11 18,14.878 14.878,18 11,18 7.122,18 4,14.878 4,11 4,7.819625 6.1049587,5.15992 9,4.3027344 Z"
|
||||
class="ColorScheme-Text"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
88
arch_check/.config/nlogout/themes/blue/suspend.svg
Executable file
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="194.343"
|
||||
height="256.0004"
|
||||
viewBox="0 0 194.343 256.0004"
|
||||
version="1.1"
|
||||
id="svg13"
|
||||
sodipodi:docname="suspend.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata17">
|
||||
<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>kdenlive-zindex-down</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview15"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="56.135593"
|
||||
inkscape:cy="128.49153"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg13"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">kdenlive-zindex-down</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="kdenlive-zindex-down"
|
||||
style="fill:#2a7fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(17.177656,0,0,17.177656,-100.74738,-68.643528)">
|
||||
<g
|
||||
id="218"
|
||||
transform="translate(5,3)"
|
||||
style="fill:#2a7fff;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 6.5,1.996094 c -0.5522853,0 -1,0.4477148 -1,1 0,0.5522853 0.4477147,1 1,1 0.5522852,0 1,-0.4477147 1,-1 0,-0.5523026 -0.4477021,-1 -1,-1 z m 0,-1 c 1.10457,0 2,0.8954 2,2 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 z"
|
||||
id="Path"
|
||||
style="fill:#2a7fff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
transform="rotate(-90,6.5,10.5)"
|
||||
x="2"
|
||||
y="10"
|
||||
width="9"
|
||||
height="1"
|
||||
style="fill:#2a7fff;fill-opacity:1" />
|
||||
<path
|
||||
d="m 3.8754327,13.388791 h 7.0000003 v 1 h -7.0000003 -1 V 6.3887907 h 1 z"
|
||||
id="Combined-Shape"
|
||||
transform="rotate(-45,6.521879,10.742344)"
|
||||
style="fill:#2a7fff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/cancel.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="cancel.svg"
|
||||
id="svg6"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview8"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path4"
|
||||
class="ColorScheme-Text"
|
||||
d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
69
arch_check/.config/nlogout/themes/breeze-blur/hibernate.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
id="svg9"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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="defs13" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview11"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g7"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path3"
|
||||
d="M9.79 5.242l-.868.5 2.146 3.717-3.615-.969-.258.967 4.58 1.227L14.844 16H8.707l-3.353-3.354-.708.708L7.293 16H3v1h4.293l-2.647 2.646.708.708L8.707 17h6.137l-3.069 5.316-4.58 1.227.258.967 3.615-.969-2.146 3.717.867.5 2.147-3.717.968 3.615.965-.26-1.226-4.58L16 17l3.357 5.816-1.226 4.58.965.26.968-3.615 2.147 3.717.867-.5-2.146-3.717 3.615.969.258-.967-4.58-1.227L17.156 17h6.137l3.353 3.354.708-.708L24.707 17H29v-1h-4.293l2.647-2.646-.708-.708L23.293 16H16v-.002l-3.357-5.814 1.226-4.58-.965-.26-.968 3.615zM23 4v1h2.293l-2 2-.293.293V8h4V7h-2.293l2-2L27 4.707V4h-.707z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path5"
|
||||
d="M20 10v1h2.293l-2 2-.293.293V14h4v-1h-2.293l2-2 .293-.293V10h-.707zm-4-5v1h2.293l-2 2-.293.293V9h4V8h-2.293l2-2L20 5.707V5h-.707z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/lock.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="lock.svg"
|
||||
id="svg16"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata20">
|
||||
<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
|
||||
inkscape:current-layer="svg16"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview18"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path14"
|
||||
class="ColorScheme-Text"
|
||||
d="M 16,4 C 9.372583,4 4,9.372583 4,16 4,22.627417 9.372583,28 16,28 22.627417,28 28,22.627417 28,16 28,9.372583 22.627417,4 16,4 Z m 0,1 C 22.075132,5 27,9.924868 27,16 27,22.075132 22.075132,27 16,27 9.924868,27 5,22.075132 5,16 5,9.924868 9.924868,5 16,5 Z m 0,3 c -2.216,0 -4,1.784 -4,4 l 0,4 -2,0 0,1 0,7 1,0 10,0 1,0 0,-8 -1,0 -1,0 0,-4 C 20,9.784 18.216,8 16,8 Z m 0,1 c 1.662,0 3,1.561 3,3.5 l 0,3.5 -6,0 0,-3.5 C 13,10.561 14.338,9 16,9 Z m -5,8 10,0 0,6 -10,0 0,-6 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/logout.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="logout.svg"
|
||||
id="svg36"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata40">
|
||||
<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
|
||||
inkscape:current-layer="svg36"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview38"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path34"
|
||||
class="ColorScheme-Text"
|
||||
d="M 16,3.9999997 A 12,12 0 0 0 4,16 12,12 0 0 0 16,28 12,12 0 0 0 28,16 12,12 0 0 0 16,3.9999997 Z m 0,1 A 11,11 0 0 1 27,16 11,11 0 0 1 16,27 11,11 0 0 1 5,16 11,11 0 0 1 16,4.9999997 Z m 3.269531,3 L 11,16 19.269531,24 20,23.292969 12.460938,16 20,8.7070309 19.269531,7.9999997 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/reboot.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="restart.svg"
|
||||
id="svg58"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1">
|
||||
<metadata
|
||||
id="metadata62">
|
||||
<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
|
||||
inkscape:current-layer="svg58"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview60"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs54">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path56"
|
||||
d="M 4,16 A 12,12 0 0 1 5.671875,9.916016 L 11.050781,15.292969 10.339844,16 5.935547,11.595703 A 11,11 0 0 0 5,16 11,11 0 0 0 16,27 11,11 0 0 0 21.351562,25.595703 l 0.728516,0.732422 A 12,12 0 0 1 16,28 12,12 0 0 1 4,16 Z M 9.916016,5.671875 A 12,12 0 0 1 16,4 12,12 0 0 1 28,16 12,12 0 0 1 26.328125,22.083984 L 20.949219,16.707031 21.65625,16 26.060547,20.40625 A 11,11 0 0 0 27,16 11,11 0 0 0 16,5 11,11 0 0 0 10.648438,6.404297 Z"
|
||||
class="ColorScheme-Text"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/shutdown.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
id="svg78"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata82">
|
||||
<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
|
||||
inkscape:current-layer="svg78"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview80"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path76"
|
||||
class="ColorScheme-Text"
|
||||
d="M 15,4 15,4.05078 15,5.054686 15,13 17,13 17,5.050781 17,4.046875 17,4 16,4 15,4 Z m 3,0.169922 0,1.021484 A 11,11 0 0 1 27,16 11,11 0 0 1 16,27 11,11 0 0 1 5,16 11,11 0 0 1 14,5.189453 L 14,4.181641 A 12,12 0 0 0 4,16 12,12 0 0 0 16,28 12,12 0 0 0 28,16 12,12 0 0 0 18,4.169922 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
69
arch_check/.config/nlogout/themes/breeze-blur/suspend.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="suspend.svg"
|
||||
id="svg106"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata112">
|
||||
<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="defs110" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg106"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview108"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g104"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path100"
|
||||
d="M9.762 5.762a12 12 0 0 0-.004.008A12 12 0 0 0 4 16a12 12 0 0 0 12 12 12 12 0 0 0 10.238-5.762l-.732-.732A11 11 0 0 1 20 23 11 11 0 0 1 9 12a11 11 0 0 1 1.486-5.502 11 11 0 0 1 .008-.004zM8.8 7.702A12 12 0 0 0 8 12a12 12 0 0 0 12 12 12 12 0 0 0 4.326-.82A11 11 0 0 1 16 27 11 11 0 0 1 5 16a11 11 0 0 1 3.8-8.299zM22 6v1h2.293l-2 2-.293.293V10h4V9h-2.293l2-2L26 6.707V6h-.707z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path102"
|
||||
d="M20 13v1h2.293l-2 2-.293.293V17h4v-1h-2.293l2-2 .293-.293V13h-.707zm-6-5v1h2.293l-2 2-.293.293V12h4v-1h-2.293l2-2L18 8.707V8h-.707z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
61
arch_check/.config/nlogout/themes/breeze-blur/switch.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch.svg"
|
||||
id="svg14"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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
|
||||
inkscape:current-layer="svg14"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview16"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
class="ColorScheme-Text"
|
||||
d="m 18,8 c -1.285847,0 -2.416677,0.617761 -3.148438,1.560547 0.329275,0.112144 0.645954,0.250811 0.945313,0.417969 C 16.345252,9.381114 17.12515,9 18,9 c 1.656852,0 3,1.343147 3,3 0,1.398728 -0.960744,2.564273 -2.255859,2.896484 6.21e-4,0.03481 0.0059,0.06856 0.0059,0.103516 0,0.318095 -0.03235,0.627594 -0.08203,0.931641 C 20.557605,15.612437 22,13.980455 22,12 22,9.790862 20.209142,8 18,8 Z M 13,20 C 9.1189423,20 6,22.689616 6,26.435547 6.0033,26.962961 6.06906,27.487484 6.198034,28 H 7.3097713 18.972229 19.856521 C 19.985519,27.487484 19.997113,26.963414 20,26.436 20,22.690069 16.881058,20 13,20 Z m 0.027,0.992 c 3.813868,0 5.973,2.274365 5.973,5.444 -0.0011,0.174256 -0.01135,0.347611 -0.029,0.521 H 7.0290003 c -0.01765,-0.173389 -0.02741,-0.347197 -0.029,-0.521453 0,-3.169635 2.179706,-5.443547 5.9727347,-5.443547 z m 6.224205,-3.992043 c -0.25686,0 -0.509035,0.01606 -0.758429,0.04297 -0.12585,0.383697 -0.291433,0.751062 -0.492776,1.097662 0.410411,-0.09117 0.830028,-0.138336 1.251205,-0.140627 3.153826,1e-6 5.710515,2.46245 5.710515,5.500033 -9e-4,0.166968 -0.009,0.333807 -0.0264,0.500003 h -4.53029 c 0.108739,0.321192 0.202605,0.648801 0.269709,0.986334 l 5.134641,0.01367 C 25.93326,24.508838 25.99723,24.005434 26,23.499992 26,19.910121 22.97845,16.999953 19.251205,16.999954 Z M 13,11 c -2.209143,0 -3.9999997,1.790862 -3.9999997,4 0,2.20914 1.7908567,4.000001 3.9999997,4 2.209142,1e-6 4,-1.79086 4,-4 0,-2.209138 -1.790858,-4 -4,-4 z m 0,1 c 1.656852,0 3,1.343147 3,3 0,1.656854 -1.343148,3.000001 -3,3 -1.656852,1e-6 -3,-1.343146 -3,-3 0,-1.656853 1.343148,-3 3,-3 z m 3.027,-8.200001 c -2.034737,0 -3.684211,1.645485 -3.684211,3.675293 V 8.090575 L 10.736,6.388 10.123,7.130953 12.356,9.358 13,10 13.582,9.257328 15.646,7.03 15.002,6.388291 13.295,8.091 V 7.475 c 0,-1.449863 1.278621,-2.624917 2.732,-2.624917 1.453379,0 1.973,0.519045 1.973,1.968908 h 1 C 19,4.718823 17.883088,3.839078 16.027,3.799999 Z"
|
||||
id="path1011"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
61
arch_check/.config/nlogout/themes/breeze/cancel.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="cancel.svg"
|
||||
id="svg6"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview8"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path4"
|
||||
class="ColorScheme-Text"
|
||||
d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
69
arch_check/.config/nlogout/themes/breeze/hibernate.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
id="svg9"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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="defs13" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview11"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g7"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path3"
|
||||
d="M9.79 5.242l-.868.5 2.146 3.717-3.615-.969-.258.967 4.58 1.227L14.844 16H8.707l-3.353-3.354-.708.708L7.293 16H3v1h4.293l-2.647 2.646.708.708L8.707 17h6.137l-3.069 5.316-4.58 1.227.258.967 3.615-.969-2.146 3.717.867.5 2.147-3.717.968 3.615.965-.26-1.226-4.58L16 17l3.357 5.816-1.226 4.58.965.26.968-3.615 2.147 3.717.867-.5-2.146-3.717 3.615.969.258-.967-4.58-1.227L17.156 17h6.137l3.353 3.354.708-.708L24.707 17H29v-1h-4.293l2.647-2.646-.708-.708L23.293 16H16v-.002l-3.357-5.814 1.226-4.58-.965-.26-.968 3.615zM23 4v1h2.293l-2 2-.293.293V8h4V7h-2.293l2-2L27 4.707V4h-.707z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path5"
|
||||
d="M20 10v1h2.293l-2 2-.293.293V14h4v-1h-2.293l2-2 .293-.293V10h-.707zm-4-5v1h2.293l-2 2-.293.293V9h4V8h-2.293l2-2L20 5.707V5h-.707z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
61
arch_check/.config/nlogout/themes/breeze/lock.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="lock.svg"
|
||||
id="svg16"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata20">
|
||||
<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
|
||||
inkscape:current-layer="svg16"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview18"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path14"
|
||||
class="ColorScheme-Text"
|
||||
d="M 16,4 C 9.372583,4 4,9.372583 4,16 4,22.627417 9.372583,28 16,28 22.627417,28 28,22.627417 28,16 28,9.372583 22.627417,4 16,4 Z m 0,1 C 22.075132,5 27,9.924868 27,16 27,22.075132 22.075132,27 16,27 9.924868,27 5,22.075132 5,16 5,9.924868 9.924868,5 16,5 Z m 0,3 c -2.216,0 -4,1.784 -4,4 l 0,4 -2,0 0,1 0,7 1,0 10,0 1,0 0,-8 -1,0 -1,0 0,-4 C 20,9.784 18.216,8 16,8 Z m 0,1 c 1.662,0 3,1.561 3,3.5 l 0,3.5 -6,0 0,-3.5 C 13,10.561 14.338,9 16,9 Z m -5,8 10,0 0,6 -10,0 0,-6 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
61
arch_check/.config/nlogout/themes/breeze/logout.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="logout.svg"
|
||||
id="svg36"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata40">
|
||||
<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
|
||||
inkscape:current-layer="svg36"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview38"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path34"
|
||||
class="ColorScheme-Text"
|
||||
d="M 16,3.9999997 A 12,12 0 0 0 4,16 12,12 0 0 0 16,28 12,12 0 0 0 28,16 12,12 0 0 0 16,3.9999997 Z m 0,1 A 11,11 0 0 1 27,16 11,11 0 0 1 16,27 11,11 0 0 1 5,16 11,11 0 0 1 16,4.9999997 Z m 3.269531,3 L 11,16 19.269531,24 20,23.292969 12.460938,16 20,8.7070309 19.269531,7.9999997 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
61
arch_check/.config/nlogout/themes/breeze/reboot.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="restart.svg"
|
||||
id="svg58"
|
||||
viewBox="0 0 32 32"
|
||||
version="1.1">
|
||||
<metadata
|
||||
id="metadata62">
|
||||
<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
|
||||
inkscape:current-layer="svg58"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview60"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs54">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path56"
|
||||
d="M 4,16 A 12,12 0 0 1 5.671875,9.916016 L 11.050781,15.292969 10.339844,16 5.935547,11.595703 A 11,11 0 0 0 5,16 11,11 0 0 0 16,27 11,11 0 0 0 21.351562,25.595703 l 0.728516,0.732422 A 12,12 0 0 1 16,28 12,12 0 0 1 4,16 Z M 9.916016,5.671875 A 12,12 0 0 1 16,4 12,12 0 0 1 28,16 12,12 0 0 1 26.328125,22.083984 L 20.949219,16.707031 21.65625,16 26.060547,20.40625 A 11,11 0 0 0 27,16 11,11 0 0 0 16,5 11,11 0 0 0 10.648438,6.404297 Z"
|
||||
class="ColorScheme-Text"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
61
arch_check/.config/nlogout/themes/breeze/shutdown.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
id="svg78"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata82">
|
||||
<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
|
||||
inkscape:current-layer="svg78"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview80"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path76"
|
||||
class="ColorScheme-Text"
|
||||
d="M 15,4 15,4.05078 15,5.054686 15,13 17,13 17,5.050781 17,4.046875 17,4 16,4 15,4 Z m 3,0.169922 0,1.021484 A 11,11 0 0 1 27,16 11,11 0 0 1 16,27 11,11 0 0 1 5,16 11,11 0 0 1 14,5.189453 L 14,4.181641 A 12,12 0 0 0 4,16 12,12 0 0 0 16,28 12,12 0 0 0 28,16 12,12 0 0 0 18,4.169922 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
69
arch_check/.config/nlogout/themes/breeze/suspend.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="suspend.svg"
|
||||
id="svg106"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata112">
|
||||
<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="defs110" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg106"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview108"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g104"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path100"
|
||||
d="M9.762 5.762a12 12 0 0 0-.004.008A12 12 0 0 0 4 16a12 12 0 0 0 12 12 12 12 0 0 0 10.238-5.762l-.732-.732A11 11 0 0 1 20 23 11 11 0 0 1 9 12a11 11 0 0 1 1.486-5.502 11 11 0 0 1 .008-.004zM8.8 7.702A12 12 0 0 0 8 12a12 12 0 0 0 12 12 12 12 0 0 0 4.326-.82A11 11 0 0 1 16 27 11 11 0 0 1 5 16a11 11 0 0 1 3.8-8.299zM22 6v1h2.293l-2 2-.293.293V10h4V9h-2.293l2-2L26 6.707V6h-.707z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path102"
|
||||
d="M20 13v1h2.293l-2 2-.293.293V17h4v-1h-2.293l2-2 .293-.293V13h-.707zm-6-5v1h2.293l-2 2-.293.293V12h4v-1h-2.293l2-2L18 8.707V8h-.707z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
61
arch_check/.config/nlogout/themes/breeze/switch.svg
Normal file
@@ -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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="switch.svg"
|
||||
id="svg14"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32">
|
||||
<metadata
|
||||
id="metadata18">
|
||||
<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
|
||||
inkscape:current-layer="svg14"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="16"
|
||||
inkscape:cx="16"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview16"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
class="ColorScheme-Text"
|
||||
d="m 18,8 c -1.285847,0 -2.416677,0.617761 -3.148438,1.560547 0.329275,0.112144 0.645954,0.250811 0.945313,0.417969 C 16.345252,9.381114 17.12515,9 18,9 c 1.656852,0 3,1.343147 3,3 0,1.398728 -0.960744,2.564273 -2.255859,2.896484 6.21e-4,0.03481 0.0059,0.06856 0.0059,0.103516 0,0.318095 -0.03235,0.627594 -0.08203,0.931641 C 20.557605,15.612437 22,13.980455 22,12 22,9.790862 20.209142,8 18,8 Z M 13,20 C 9.1189423,20 6,22.689616 6,26.435547 6.0033,26.962961 6.06906,27.487484 6.198034,28 H 7.3097713 18.972229 19.856521 C 19.985519,27.487484 19.997113,26.963414 20,26.436 20,22.690069 16.881058,20 13,20 Z m 0.027,0.992 c 3.813868,0 5.973,2.274365 5.973,5.444 -0.0011,0.174256 -0.01135,0.347611 -0.029,0.521 H 7.0290003 c -0.01765,-0.173389 -0.02741,-0.347197 -0.029,-0.521453 0,-3.169635 2.179706,-5.443547 5.9727347,-5.443547 z m 6.224205,-3.992043 c -0.25686,0 -0.509035,0.01606 -0.758429,0.04297 -0.12585,0.383697 -0.291433,0.751062 -0.492776,1.097662 0.410411,-0.09117 0.830028,-0.138336 1.251205,-0.140627 3.153826,1e-6 5.710515,2.46245 5.710515,5.500033 -9e-4,0.166968 -0.009,0.333807 -0.0264,0.500003 h -4.53029 c 0.108739,0.321192 0.202605,0.648801 0.269709,0.986334 l 5.134641,0.01367 C 25.93326,24.508838 25.99723,24.005434 26,23.499992 26,19.910121 22.97845,16.999953 19.251205,16.999954 Z M 13,11 c -2.209143,0 -3.9999997,1.790862 -3.9999997,4 0,2.20914 1.7908567,4.000001 3.9999997,4 2.209142,1e-6 4,-1.79086 4,-4 0,-2.209138 -1.790858,-4 -4,-4 z m 0,1 c 1.656852,0 3,1.343147 3,3 0,1.656854 -1.343148,3.000001 -3,3 -1.656852,1e-6 -3,-1.343146 -3,-3 0,-1.656853 1.343148,-3 3,-3 z m 3.027,-8.200001 c -2.034737,0 -3.684211,1.645485 -3.684211,3.675293 V 8.090575 L 10.736,6.388 10.123,7.130953 12.356,9.358 13,10 13.582,9.257328 15.646,7.03 15.002,6.388291 13.295,8.091 V 7.475 c 0,-1.449863 1.278621,-2.624917 2.732,-2.624917 1.453379,0 1.973,0.519045 1.973,1.968908 h 1 C 19,4.718823 17.883088,3.839078 16.027,3.799999 Z"
|
||||
id="path1011"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
1
arch_check/.config/nlogout/themes/candy/cancel.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_1" x1="0.48999585032596366" y1="0.05851114876689635" x2="0.4954074027752636" y2="0.8884853917962535" gradientTransform="matrix(46.808,0,0,47,0.564,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(255,229,59)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(255,0,91)"/></linearGradient><path d=" M 22.825 29.175 L 25.175 29.175 C 26.06 29.175 26.779 28.456 26.779 27.571 L 26.779 10.398 C 26.779 9.512 26.06 8.793 25.175 8.793 L 22.825 8.793 C 21.94 8.793 21.221 9.512 21.221 10.398 L 21.221 27.571 C 21.221 28.456 21.94 29.175 22.825 29.175 L 22.825 29.175 L 22.825 29.175 L 22.825 29.175 L 22.825 29.175 Z M 21.477 38.163 L 21.477 38.163 C 20.085 36.77 20.085 34.51 21.477 33.117 L 21.477 33.117 C 22.87 31.725 25.13 31.725 26.523 33.117 L 26.523 33.117 C 27.915 34.51 27.915 36.77 26.523 38.163 L 26.523 38.163 C 25.13 39.555 22.87 39.555 21.477 38.163 L 21.477 38.163 L 21.477 38.163 L 21.477 38.163 L 21.477 38.163 Z M 32.917 6.952 L 32.917 6.952 C 31.873 6.403 31.47 5.109 32.019 4.064 L 32.019 4.064 C 32.568 3.02 33.862 2.617 34.907 3.166 L 34.907 3.166 C 39.356 5.508 42.949 9.219 45.142 13.743 L 45.142 13.743 C 45.661 14.806 45.22 16.088 44.158 16.604 L 44.158 16.604 C 43.095 17.121 41.811 16.678 41.292 15.615 L 41.292 15.615 C 39.495 11.904 36.564 8.877 32.917 6.952 L 32.917 6.952 L 32.917 6.952 L 32.917 6.952 Z M 23.817 4.5 L 23.817 4.5 C 24.92 4.494 25.812 3.594 25.807 2.49 L 25.807 2.49 C 25.801 1.386 24.9 0.494 23.797 0.5 L 23.797 0.5 C 18.037 0.53 12.487 2.68 8.207 6.53 C 3.927 10.39 1.207 15.68 0.577 21.41 L 0.577 21.41 C 0.455 22.508 1.248 23.499 2.347 23.62 L 2.347 23.62 C 3.445 23.741 4.435 22.948 4.557 21.85 L 4.557 21.85 C 5.077 17.1 7.337 12.7 10.887 9.51 C 14.437 6.31 19.037 4.53 23.817 4.5 L 23.817 4.5 L 23.817 4.5 Z M 5.737 31 L 5.737 31 C 5.339 29.968 4.179 29.453 3.147 29.85 L 3.147 29.85 C 2.114 30.247 1.599 31.408 1.997 32.44 L 1.997 32.44 C 3.907 37.37 7.417 41.52 11.967 44.22 L 11.967 44.22 C 12.916 44.783 14.144 44.469 14.707 43.52 L 14.707 43.52 C 15.27 42.571 14.956 41.343 14.007 40.78 L 14.007 40.78 C 10.227 38.54 7.317 35.1 5.737 31 L 5.737 31 Z M 23.307 43.49 L 23.307 43.49 C 22.203 43.473 21.293 44.356 21.277 45.46 L 21.277 45.46 C 21.26 46.564 22.143 47.473 23.247 47.49 L 23.247 47.49 L 23.907 47.5 C 23.917 47.5 23.927 47.5 23.937 47.5 C 29.847 47.5 35.547 45.27 39.887 41.26 C 44.227 37.25 46.907 31.74 47.367 25.85 L 47.367 25.85 C 47.449 24.752 46.625 23.788 45.527 23.7 L 45.527 23.7 C 44.428 23.612 43.465 24.436 43.377 25.54 L 43.377 25.54 C 42.997 30.42 40.777 34.99 37.177 38.32 C 33.577 41.65 28.857 43.5 23.957 43.5 L 23.307 43.49 Z " fill-rule="evenodd" fill="url(#_lgradient_1)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
1
arch_check/.config/nlogout/themes/candy/hibernate.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_22" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(36,0,0,22,6,24)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(117,127,154)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(215,221,232)"/></linearGradient><path d=" M 38 26 L 38 24 L 42 24 L 42 26 L 42 42 C 42 44.208 40.208 46 38 46 L 10 46 C 7.792 46 6 44.208 6 42 L 6 26 L 6 24 L 10 24 L 10 26 L 10 40 C 10 41.104 10.896 42 12 42 L 36 42 C 37.104 42 38 41.104 38 40 L 38 26 Z " fill="url(#_lgradient_22)"/><linearGradient id="_lgradient_23" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(36,0,0,23,6,3)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(247,242,6)"/><stop offset="97.82608695652173%" stop-opacity="1" style="stop-color:rgb(255,187,36)"/></linearGradient><path d=" M 20 8 L 20 7 L 28 7 L 28 8 L 20 8 L 20 8 L 20 8 L 20 8 Z M 20 22 L 28 22 C 29.104 22 30 22.896 30 24 L 30 24 C 30 25.104 29.104 26 28 26 L 20 26 C 18.896 26 18 25.104 18 24 L 18 24 C 18 22.896 18.896 22 20 22 L 20 22 L 20 22 Z M 12 24 C 12 22.896 12.896 22 14 22 C 15.104 22 16 22.896 16 24 C 16 25.104 15.104 26 14 26 C 12.896 26 12 25.104 12 24 L 12 24 Z M 16 8 L 16 5 C 16 3.896 16.896 3 18 3 L 30 3 C 31.104 3 32 3.896 32 5 L 32 8 L 38 8 C 40.208 8 42 9.792 42 12 L 42 22 L 42 24 L 38 24 L 38 22 L 38 14 C 38 12.896 37.104 12 36 12 L 12 12 C 10.896 12 10 12.896 10 14 L 10 22 L 10 24 L 6 24 L 6 22 L 6 12 C 6 9.792 7.792 8 10 8 L 16 8 L 16 8 L 16 8 L 16 8 Z M 32 24 C 32 22.896 32.896 22 34 22 C 35.104 22 36 22.896 36 24 C 36 25.104 35.104 26 34 26 C 32.896 26 32 25.104 32 24 Z " fill-rule="evenodd" fill="url(#_lgradient_23)"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
3
arch_check/.config/nlogout/themes/candy/lock.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Gravit.io -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_8" x1="0" y1="0.5" x2="0.9074880558539661" y2="0.9200778838291643" gradientTransform="matrix(38.852,0,0,41.519,4.574,3.241)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(247,241,7)"/><stop offset="83.88839793817618%" stop-opacity="1" style="stop-color:rgb(255,187,36)"/></linearGradient><path d=" M 27.67 21.725 L 27.67 21.725 C 27.922 20.742 28.936 20.204 29.932 20.526 L 29.932 20.526 C 30.928 20.848 31.531 21.916 31.278 22.909 L 31.278 22.909 L 31.012 23.907 L 34.382 24.461 C 35.113 24.581 35.683 25.28 35.654 26.02 L 35.498 29.985 L 38.668 30.459 L 43.426 36.13 L 42.889 43.361 C 42.834 44.1 42.188 44.704 41.447 44.708 L 33.343 44.759 L 17.497 25.875 L 14.214 26.56 C 13.489 26.711 12.513 26.373 12.037 25.805 L 5.368 17.858 C 4.892 17.29 4.537 16.228 4.577 15.488 L 4.678 13.601 C 4.718 12.861 5.211 11.873 5.779 11.397 L 14.645 3.957 C 15.213 3.481 16.271 3.166 17.007 3.256 L 18.883 3.484 C 19.619 3.573 20.603 4.107 21.079 4.674 L 27.499 12.325 C 27.976 12.893 28.33 13.955 28.29 14.695 L 28.159 17.147 L 28.159 17.147 C 28.104 18.179 27.224 18.917 26.195 18.795 L 26.195 18.795 C 25.166 18.672 24.381 17.731 24.441 16.695 L 24.441 16.695 L 24.553 14.445 L 18.481 7.208 L 17.007 7.029 L 8.394 14.257 L 8.314 15.739 L 14.138 22.679 L 18.726 21.709 L 34.896 40.98 L 39.311 40.948 L 39.592 37.191 L 36.882 33.962 L 32.116 33.258 C 31.383 33.15 30.776 32.46 30.762 31.719 L 30.707 28.874 L 27.337 28.32 C 26.606 28.2 26.164 27.52 26.35 26.803 L 27.67 21.725 Z M 13.551 13.555 C 13.551 12.451 14.447 11.555 15.551 11.555 C 16.655 11.555 17.551 12.451 17.551 13.555 C 17.551 14.658 16.655 15.555 15.551 15.555 C 14.447 15.555 13.551 14.658 13.551 13.555 Z " fill-rule="evenodd" fill="url(#_lgradient_8)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
1
arch_check/.config/nlogout/themes/candy/logout.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_11" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(45.874,0,0,42,1.063,3)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(255,229,59)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(255,0,91)"/></linearGradient><path d=" M 29.801 10.95 L 29.801 10.95 C 30.375 10.012 31.605 9.718 32.546 10.295 L 32.546 10.295 C 33.487 10.872 33.781 12.106 33.201 13.05 L 33.201 13.05 L 25.234 25.995 C 24.366 27.405 22.855 27.474 21.862 26.15 L 12.341 13.45 C 12.01 13.009 11.522 13.041 11.251 13.522 L 5.281 24.138 C 5.011 24.619 5.006 25.403 5.27 25.888 L 10.261 35.04 L 10.261 35.04 C 10.786 36.011 10.425 37.228 9.456 37.755 L 9.456 37.755 C 8.488 38.282 7.271 37.926 6.741 36.96 L 6.741 36.96 L 1.648 27.624 C 0.855 26.17 0.87 23.818 1.682 22.375 L 9.79 7.965 C 10.602 6.522 12.068 6.425 13.062 7.75 L 22.741 20.65 C 23.072 21.092 23.576 21.068 23.865 20.598 L 29.801 10.95 L 29.801 10.95 Z M 26.501 41 L 26.501 41 C 27.605 41 28.501 41.896 28.501 43 L 28.501 43 C 28.501 44.104 27.605 45 26.501 45 L 26.501 45 L 14.391 45 C 12.735 45 11.948 43.776 12.633 42.269 L 17.681 31.17 L 17.681 31.17 C 18.139 30.166 19.327 29.722 20.331 30.18 L 20.331 30.18 C 21.336 30.638 21.779 31.826 21.321 32.83 L 21.321 32.83 L 18.025 40.089 C 17.796 40.592 18.059 41 18.611 41 L 26.501 41 L 26.501 41 Z M 18.501 7 L 18.501 7 C 17.397 7 16.501 6.104 16.501 5 L 16.501 5 C 16.501 3.896 17.397 3 18.501 3 L 18.501 3 L 33.741 3 C 35.397 3 37.342 4.203 38.082 5.684 L 46.431 22.396 C 47.17 23.877 47.09 26.239 46.251 27.666 L 37.171 43.114 C 36.332 44.541 34.88 44.599 33.93 43.243 L 26.861 33.15 L 26.861 33.15 C 26.226 32.245 26.446 30.995 27.351 30.36 L 27.351 30.36 C 28.256 29.725 29.506 29.945 30.141 30.85 L 30.141 30.85 L 34.778 37.481 C 35.094 37.933 35.579 37.914 35.859 37.438 L 42.724 25.782 C 43.004 25.306 43.031 24.519 42.784 24.026 L 34.709 7.894 C 34.462 7.401 33.813 7 33.261 7 L 18.501 7 Z " fill-rule="evenodd" fill="url(#_lgradient_11)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
1
arch_check/.config/nlogout/themes/candy/reboot.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_34" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(46.808,0,0,47,0.564,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(255,224,49)"/><stop offset="100%" stop-opacity="1" style="stop-color:rgb(250,0,117)"/></linearGradient><path d=" M 15.019 6.952 L 15.019 6.952 C 16.064 6.403 16.467 5.109 15.918 4.064 L 15.918 4.064 C 15.369 3.02 14.075 2.617 13.03 3.166 L 13.03 3.166 C 8.581 5.508 4.987 9.219 2.795 13.743 L 2.795 13.743 C 2.275 14.806 2.716 16.088 3.779 16.604 L 3.779 16.604 C 4.841 17.121 6.126 16.678 6.645 15.615 L 6.645 15.615 C 8.442 11.904 11.372 8.877 15.019 6.952 L 15.019 6.952 L 15.019 6.952 L 15.019 6.952 Z M 24.12 4.5 L 24.12 4.5 C 23.016 4.494 22.124 3.594 22.13 2.49 L 22.13 2.49 C 22.136 1.386 23.036 0.494 24.14 0.5 L 24.14 0.5 C 29.9 0.53 35.45 2.68 39.73 6.53 C 44.01 10.39 46.73 15.68 47.36 21.41 L 47.36 21.41 C 47.481 22.508 46.688 23.499 45.59 23.62 L 45.59 23.62 C 44.492 23.741 43.501 22.948 43.38 21.85 L 43.38 21.85 C 42.86 17.1 40.6 12.7 37.05 9.51 C 33.5 6.31 28.9 4.53 24.12 4.5 L 24.12 4.5 L 24.12 4.5 L 24.12 4.5 Z M 42.2 31 L 42.2 31 C 42.597 29.968 43.758 29.453 44.79 29.85 L 44.79 29.85 C 45.822 30.247 46.337 31.408 45.94 32.44 L 45.94 32.44 C 44.03 37.37 40.52 41.52 35.97 44.22 L 35.97 44.22 C 35.021 44.783 33.793 44.469 33.23 43.52 L 33.23 43.52 C 32.667 42.571 32.981 41.343 33.93 40.78 L 33.93 40.78 C 37.71 38.54 40.62 35.1 42.2 31 L 42.2 31 L 42.2 31 Z M 24.63 43.49 L 24.63 43.49 C 25.734 43.473 26.643 44.356 26.66 45.46 L 26.66 45.46 C 26.677 46.564 25.794 47.473 24.69 47.49 L 24.69 47.49 L 24.03 47.5 C 24.02 47.5 24.01 47.5 24 47.5 C 18.09 47.5 12.39 45.27 8.05 41.26 C 3.71 37.25 1.03 31.74 0.57 25.85 L 0.57 25.85 C 0.487 24.752 1.312 23.788 2.41 23.7 L 2.41 23.7 C 3.508 23.612 4.472 24.436 4.56 25.54 L 4.56 25.54 C 4.94 30.42 7.16 34.99 10.76 38.32 C 14.36 41.65 19.08 43.5 23.98 43.5 L 24.63 43.49 L 24.63 43.49 Z M 24.811 19.51 C 23.84 19.818 23.002 20.288 22.374 21.073 C 21.533 22.121 21.364 23.326 21.634 24.609 C 21.773 25.275 22.098 25.843 22.67 26.24 C 23.384 26.738 24.355 26.717 25.101 26.199 C 25.865 25.672 26.203 24.819 25.981 23.945 C 25.738 22.989 25.477 22.035 25.225 21.079 C 25.086 20.564 24.953 20.048 24.811 19.51 L 24.811 19.51 Z M 28.308 8.929 C 28.601 8.977 28.897 9.012 29.188 9.074 C 30.206 9.299 31.118 9.75 31.924 10.41 C 32.451 10.842 32.667 11.408 32.516 12.08 C 32.38 12.681 31.995 13.087 31.399 13.261 C 30.837 13.424 30.331 13.3 29.869 12.93 C 29.285 12.462 28.634 12.136 27.858 12.207 C 27.198 12.267 26.567 12.959 26.626 13.578 C 26.653 13.857 26.75 14.126 26.822 14.399 C 26.946 14.881 27.073 15.361 27.201 15.841 C 27.221 15.924 27.242 15.989 27.358 15.998 C 29.125 16.095 30.721 16.67 32.146 17.742 C 33.543 18.793 34.689 20.054 35.459 21.639 C 36.022 22.802 36.339 24.031 36.422 25.319 C 36.531 27.034 36.333 28.71 35.664 30.294 C 34.112 33.972 31.385 36.344 27.553 37.436 C 26.093 37.851 24.598 38.014 23.085 37.928 C 19.94 37.75 17.213 36.56 14.918 34.41 C 12.649 32.29 11.24 29.684 10.748 26.625 C 10.079 22.462 11.104 18.731 13.816 15.497 C 15.306 13.72 17.165 12.438 19.333 11.612 C 20.079 11.328 20.896 11.591 21.308 12.246 C 21.725 12.912 21.628 13.768 21.047 14.301 C 20.884 14.452 20.677 14.57 20.47 14.653 C 17.165 15.998 14.98 18.375 14.112 21.84 C 13.271 25.201 14.015 28.281 16.161 30.99 C 17.509 32.69 19.247 33.83 21.352 34.392 C 22.714 34.754 24.088 34.777 25.474 34.564 C 26.904 34.342 28.24 33.874 29.436 33.054 C 31.086 31.926 32.258 30.421 32.845 28.506 C 33.351 26.853 33.369 25.183 32.744 23.546 C 32.24 22.225 31.349 21.209 30.23 20.371 C 29.632 19.924 28.992 19.575 28.261 19.403 C 28.228 19.394 28.193 19.391 28.133 19.382 C 28.234 19.764 28.326 20.128 28.421 20.49 C 28.652 21.363 28.888 22.237 29.116 23.113 C 29.611 25.014 29.131 26.681 27.822 28.103 C 26.611 29.418 25.069 29.986 23.298 29.817 C 21.329 29.628 19.922 28.559 19.004 26.827 C 18.524 25.92 18.317 24.943 18.279 23.922 C 18.216 22.293 18.598 20.792 19.531 19.447 C 20.532 18.005 21.921 17.078 23.558 16.504 C 23.689 16.46 23.819 16.418 23.97 16.368 C 23.881 16.033 23.789 15.707 23.709 15.376 C 23.6 14.923 23.461 14.47 23.404 14.011 C 23.241 12.649 23.659 11.461 24.601 10.469 C 25.371 9.658 26.306 9.143 27.429 8.986 C 27.553 8.968 27.674 8.95 27.799 8.932 C 27.97 8.929 28.139 8.929 28.308 8.929 L 28.308 8.929 Z " fill-rule="evenodd" fill="url(#_lgradient_34)"/></svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
1
arch_check/.config/nlogout/themes/candy/shutdown.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_29" x1="-0.014458464773922156" y1="0.009839246119734024" x2="1.0164565923220248" y2="1.0722930524759795" gradientTransform="matrix(46.808,0,0,47,0.564,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(249,212,35)"/><stop offset="51.56237565086822%" stop-opacity="1" style="stop-color:rgb(255,78,80)"/><stop offset="99.1304347826087%" stop-opacity="1" style="stop-color:rgb(138,35,135)"/></linearGradient><path d=" M 21.908 11.825 L 21.908 11.825 C 22.642 10.478 23.238 9.378 23.239 9.369 L 23.239 9.369 C 23.24 9.36 23.446 9.389 23.7 9.433 L 23.7 9.433 L 23.153 21.193 L 31.224 21.458 C 32.756 21.509 33.408 22.644 32.679 23.992 L 26.089 36.173 L 24.76 38.614 L 24.76 38.614 L 24.774 38.477 L 24.844 26.805 L 16.773 26.54 C 15.241 26.49 14.59 25.355 15.319 24.007 L 21.908 11.825 L 21.908 11.825 L 21.908 11.825 L 21.908 11.825 Z M 32.917 6.952 L 32.917 6.952 C 31.873 6.403 31.47 5.109 32.019 4.064 L 32.019 4.064 C 32.568 3.02 33.862 2.617 34.907 3.166 L 34.907 3.166 C 39.356 5.508 42.949 9.219 45.142 13.743 L 45.142 13.743 C 45.661 14.806 45.22 16.088 44.158 16.604 L 44.158 16.604 C 43.095 17.121 41.811 16.678 41.292 15.615 L 41.292 15.615 C 39.495 11.904 36.564 8.877 32.917 6.952 L 32.917 6.952 L 32.917 6.952 L 32.917 6.952 Z M 23.817 4.5 L 23.817 4.5 C 24.92 4.494 25.812 3.594 25.807 2.49 L 25.807 2.49 C 25.801 1.386 24.9 0.494 23.797 0.5 L 23.797 0.5 C 18.037 0.53 12.487 2.68 8.207 6.53 C 3.927 10.39 1.207 15.68 0.577 21.41 L 0.577 21.41 C 0.455 22.508 1.248 23.499 2.347 23.62 L 2.347 23.62 C 3.445 23.741 4.435 22.948 4.557 21.85 L 4.557 21.85 C 5.077 17.1 7.337 12.7 10.887 9.51 C 14.437 6.31 19.037 4.53 23.817 4.5 L 23.817 4.5 L 23.817 4.5 Z M 5.737 31 L 5.737 31 C 5.339 29.968 4.179 29.453 3.147 29.85 L 3.147 29.85 C 2.114 30.247 1.599 31.408 1.997 32.44 L 1.997 32.44 C 3.907 37.37 7.417 41.52 11.967 44.22 L 11.967 44.22 C 12.916 44.783 14.144 44.469 14.707 43.52 L 14.707 43.52 C 15.27 42.571 14.956 41.343 14.007 40.78 L 14.007 40.78 C 10.227 38.54 7.317 35.1 5.737 31 L 5.737 31 Z M 23.307 43.49 L 23.307 43.49 C 22.203 43.473 21.293 44.356 21.277 45.46 L 21.277 45.46 C 21.26 46.564 22.143 47.473 23.247 47.49 L 23.247 47.49 L 23.907 47.5 C 23.917 47.5 23.927 47.5 23.937 47.5 C 29.847 47.5 35.547 45.27 39.887 41.26 C 44.227 37.25 46.907 31.74 47.367 25.85 L 47.367 25.85 C 47.449 24.752 46.625 23.788 45.527 23.7 L 45.527 23.7 C 44.428 23.612 43.465 24.436 43.377 25.54 L 43.377 25.54 C 42.997 30.42 40.777 34.99 37.177 38.32 C 33.577 41.65 28.857 43.5 23.957 43.5 L 23.307 43.49 Z " fill-rule="evenodd" fill="url(#_lgradient_29)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
192
arch_check/.config/nlogout/themes/candy/suspend.svg
Normal file
@@ -0,0 +1,192 @@
|
||||
<?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"
|
||||
style="isolation:isolate"
|
||||
viewBox="0 0 48 48"
|
||||
width="48pt"
|
||||
height="48pt"
|
||||
version="1.1"
|
||||
id="svg16"
|
||||
sodipodi:docname="insomnia.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
|
||||
<metadata
|
||||
id="metadata22">
|
||||
<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>
|
||||
<defs
|
||||
id="defs20">
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(36.962,-30.624,30.433,36.731,-9.697,20.797)"
|
||||
y2="0.5"
|
||||
x2="1"
|
||||
y1="0.5"
|
||||
x1="0"
|
||||
id="linearGradient851">
|
||||
<stop
|
||||
id="stop847"
|
||||
style="stop-color:rgb(71,118,230)"
|
||||
stop-opacity="1"
|
||||
offset="0%" />
|
||||
<stop
|
||||
id="stop849"
|
||||
style="stop-color:rgb(142,84,233)"
|
||||
stop-opacity="1"
|
||||
offset="98.26086956521739%" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(46.807999,0,0,46.999999,-12.222292,3.8542668)"
|
||||
y2="0.88848537"
|
||||
x2="0.4954074"
|
||||
y1="0.058511149"
|
||||
x1="0.48999584"
|
||||
id="_lgradient_1"
|
||||
spreadMethod="pad">
|
||||
<stop
|
||||
id="stop2-3"
|
||||
style="stop-color:rgb(255,229,59)"
|
||||
stop-opacity="1"
|
||||
offset="0%" />
|
||||
<stop
|
||||
id="stop4-6"
|
||||
style="stop-color:rgb(255,0,91)"
|
||||
stop-opacity="1"
|
||||
offset="98.69565217391305%" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#_lgradient_1"
|
||||
id="linearGradient879"
|
||||
x1="-0.40372497"
|
||||
y1="23.96674"
|
||||
x2="48.598225"
|
||||
y2="23.96674"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.90748767,0,0,0.90748767,2.2292928,2.2172189)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#_lgradient_1"
|
||||
id="linearGradient887"
|
||||
x1="-0.40372497"
|
||||
y1="23.96674"
|
||||
x2="48.598225"
|
||||
y2="23.96674"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.90748767,0,0,0.90748767,2.2292928,2.2172189)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#_lgradient_1"
|
||||
id="linearGradient925"
|
||||
x1="19.954615"
|
||||
y1="30.871071"
|
||||
x2="45.547066"
|
||||
y2="17.158087"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.81356151,0,0,0.81356151,4.4835271,4.4714111)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#_lgradient_1"
|
||||
id="linearGradient929"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="12.662611"
|
||||
y1="26.91514"
|
||||
x2="25.374683"
|
||||
y2="13.503046"
|
||||
gradientTransform="matrix(0.81356151,0,0,0.81356151,4.4835271,4.4714111)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1052"
|
||||
id="namedview18"
|
||||
showgrid="false"
|
||||
inkscape:zoom="6.5546875"
|
||||
inkscape:cx="60.112445"
|
||||
inkscape:cy="37.05522"
|
||||
inkscape:window-x="1920"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg16" />
|
||||
<linearGradient
|
||||
id="_lgradient_2"
|
||||
x1="0"
|
||||
y1="0.5"
|
||||
x2="1"
|
||||
y2="0.5"
|
||||
gradientUnits="objectBoundingBox"
|
||||
spreadMethod="pad"
|
||||
xlink:href="#_lgradient_1">
|
||||
<stop
|
||||
offset="0%"
|
||||
stop-opacity="1"
|
||||
style="stop-color:rgb(71,118,230)"
|
||||
id="stop2" />
|
||||
<stop
|
||||
offset="98.26086956521739%"
|
||||
stop-opacity="1"
|
||||
style="stop-color:rgb(142,84,233)"
|
||||
id="stop4" />
|
||||
</linearGradient>
|
||||
<path
|
||||
d="m 12.310803,20.522166 c -0.416544,1.39119 -0.587392,2.881634 -0.468612,4.416012 0.519866,6.715951 6.394594,11.746201 13.10973,11.225522 C 31.666244,35.643834 36.696496,29.769107 36.175816,23.053156 35.659205,16.380324 29.85607,11.37204 23.194629,11.820313 c 1.152817,1.140613 1.915123,2.686379 2.050175,4.429028 0.29939,3.861977 -2.592822,7.239884 -6.453984,7.538462 -2.687194,0.208271 -5.140081,-1.129224 -6.480017,-3.265637 z"
|
||||
fill-rule="evenodd"
|
||||
fill="none"
|
||||
vector-effect="non-scaling-stroke"
|
||||
stroke-width="3"
|
||||
stroke="url(#_lgradient_2)"
|
||||
stroke-linejoin="miter"
|
||||
stroke-linecap="square"
|
||||
stroke-miterlimit="3"
|
||||
id="path7"
|
||||
style="fill:url(#linearGradient925);fill-opacity:1;stroke:url(#linearGradient929);stroke-width:0;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<linearGradient
|
||||
id="_lgradient_3"
|
||||
x1="0.29295769"
|
||||
y1="0.049432281"
|
||||
x2="0.80297333"
|
||||
y2="0.4968192"
|
||||
gradientTransform="matrix(36.962,-30.624,30.433,36.731,-9.697,20.797)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
spreadMethod="pad"
|
||||
xlink:href="#_lgradient_1">
|
||||
<stop
|
||||
offset="0%"
|
||||
stop-opacity="1"
|
||||
style="stop-color:rgb(71,118,230)"
|
||||
id="stop9" />
|
||||
<stop
|
||||
offset="98.26086956521739%"
|
||||
stop-opacity="1"
|
||||
style="stop-color:rgb(142,84,233)"
|
||||
id="stop11" />
|
||||
</linearGradient>
|
||||
<path
|
||||
d="m 31.65458,40.471454 v 0 c 0.911118,-0.416537 1.988306,-0.01452 2.403935,0.89569 v 0 c 0.416537,0.910211 0.01543,1.987398 -0.89569,2.403935 v 0 C 28.805977,45.766645 23.905543,46.26667 19.236519,45.19765 14.567495,44.127722 10.381254,41.550457 7.324836,37.860612 3.6422511,33.416645 1.8726501,27.68223 2.4116978,21.932389 2.9507455,16.182547 5.7557898,10.876466 10.200664,7.1947888 14.644632,3.5122039 20.379046,1.7426029 26.128888,2.2816506 c 5.750749,0.5390476 11.055922,3.344092 14.738507,7.7889664 3.044621,3.675325 4.794258,8.248156 4.992997,13.009743 0.190573,4.767941 -1.184271,9.466004 -3.916716,13.379999 v 0 c -0.575348,0.821276 -1.7088,1.020923 -2.530076,0.446484 v 0 c -0.821276,-0.575348 -1.020924,-1.7088 -0.445576,-2.530076 v 0 c 2.276886,-3.253343 3.424858,-7.174598 3.26877,-11.146671 -0.168793,-3.972981 -1.62894,-7.783522 -4.165368,-10.84357 C 35.00321,8.6821611 30.58193,6.3471953 25.790395,5.8979889 20.99886,5.4487825 16.22003,6.9207275 12.516573,9.9898508 8.8131158,13.058067 6.4772425,17.479347 6.0280361,22.270881 c -0.4492064,4.792443 1.0236461,9.570365 4.0918619,13.273823 2.547318,3.075475 6.038423,5.226221 9.932453,6.113744 3.885862,0.892968 7.972279,0.476431 11.602229,-1.186994 z"
|
||||
fill="url(#_lgradient_3)"
|
||||
id="path14"
|
||||
style="fill:url(#linearGradient879);fill-opacity:1;stroke:url(#linearGradient887);stroke-width:0.907488;stroke-opacity:1" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.1 KiB |
66
arch_check/.config/nlogout/themes/default/cancel.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="cancel.svg"
|
||||
id="svg6"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata10">
|
||||
<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
|
||||
inkscape:current-layer="svg6"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="174.87753"
|
||||
inkscape:cx="270.91558"
|
||||
inkscape:zoom="3.2851563"
|
||||
showgrid="false"
|
||||
id="namedview8"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path4"
|
||||
class="ColorScheme-Text"
|
||||
d="M 128,0 A 128,128 0 0 0 41.458336,33.916672 l -0.01834,-0.01801 A 128,128 0 0 0 41.04166,34.291664 128,128 0 0 0 0,128 128,128 0 0 0 128,256 128,128 0 0 0 214.54165,222.08333 l 0.0717,0.018 a 128,128 0 0 0 0.34496,-0.393 A 128,128 0 0 0 256,128 128,128 0 0 0 128,0 m 0,10.66667 A 117.33333,117.33333 0 0 1 245.33333,128 117.33333,117.33333 0 0 1 214.56245,207.02083 L 48.981333,41.44 A 117.33333,117.33333 0 0 1 128,10.66667 M 41.44,48.981333 207.01867,214.61333 A 117.33333,117.33333 0 0 1 128,245.33333 117.33333,117.33333 0 0 1 10.66667,128 117.33333,117.33333 0 0 1 41.437504,48.979168"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10.6667" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
75
arch_check/.config/nlogout/themes/default/hibernate.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
id="svg9"
|
||||
version="1.1"
|
||||
viewBox="0 0 256.00009 233.925"
|
||||
width="256.00009"
|
||||
height="233.925"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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="defs13" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="262.69679"
|
||||
inkscape:cx="-22.525565"
|
||||
inkscape:zoom="1.6425781"
|
||||
showgrid="false"
|
||||
id="namedview11"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g7"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text"
|
||||
transform="matrix(9.8461571,0,0,9.8461571,-29.538471,-39.384628)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path3"
|
||||
d="M 9.79,5.242 8.922,5.742 11.068,9.459 7.453,8.49 7.195,9.457 11.775,10.684 14.844,16 H 8.707 L 5.354,12.646 4.646,13.354 7.293,16 H 3 v 1 H 7.293 L 4.646,19.646 5.354,20.354 8.707,17 h 6.137 l -3.069,5.316 -4.58,1.227 0.258,0.967 3.615,-0.969 -2.146,3.717 0.867,0.5 2.147,-3.717 0.968,3.615 0.965,-0.26 -1.226,-4.58 L 16,17 l 3.357,5.816 -1.226,4.58 0.965,0.26 0.968,-3.615 2.147,3.717 0.867,-0.5 -2.146,-3.717 3.615,0.969 0.258,-0.967 -4.58,-1.227 L 17.156,17 h 6.137 l 3.353,3.354 0.708,-0.708 L 24.707,17 H 29 V 16 H 24.707 L 27.354,13.354 26.646,12.646 23.293,16 H 16 v -0.002 l -3.357,-5.814 1.226,-4.58 -0.965,-0.26 -0.968,3.615 z M 23,4 v 1 h 2.293 l -2,2 L 23,7.293 V 8 h 4 V 7 h -2.293 l 2,-2 L 27,4.707 V 4 h -0.707 z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path5"
|
||||
d="m 20,10 v 1 h 2.293 l -2,2 L 20,13.293 V 14 h 4 v -1 h -2.293 l 2,-2 L 24,10.707 V 10 H 23.293 Z M 16,5 v 1 h 2.293 l -2,2 L 16,8.293 V 9 h 4 V 8 h -2.293 l 2,-2 L 20,5.707 V 5 h -0.707 z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
66
arch_check/.config/nlogout/themes/default/lock.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="lock.svg"
|
||||
id="svg16"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata20">
|
||||
<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
|
||||
inkscape:current-layer="svg16"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="177.14496"
|
||||
inkscape:cx="50.79734"
|
||||
inkscape:zoom="2.3229563"
|
||||
showgrid="false"
|
||||
id="namedview18"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path14"
|
||||
class="ColorScheme-Text"
|
||||
d="M 128,0 C 57.307552,0 0,57.307552 0,128 0,198.69245 57.307552,256 128,256 198.69245,256 256,198.69245 256,128 256,57.307552 198.69245,0 128,0 Z m 0,10.66667 c 64.80141,0 117.33333,52.531922 117.33333,117.33333 0,64.80141 -52.53192,117.33333 -117.33333,117.33333 C 63.198592,245.33333 10.66667,192.80141 10.66667,128 10.66667,63.198592 63.198592,10.66667 128,10.66667 Z m 0,31.999997 c -23.63733,0 -42.666667,19.029333 -42.666667,42.666666 V 128 H 64 v 10.66667 74.66666 H 74.666667 181.33333 192 V 128 H 181.33333 170.66667 V 85.333333 C 170.66667,61.696 151.63733,42.666667 128,42.666667 Z m 0,10.666666 c 17.728,0 32,16.650667 32,37.333334 V 128 H 96 V 90.666667 C 96,69.984 110.272,53.333333 128,53.333333 Z M 74.666667,138.66667 H 181.33333 v 64 H 74.666667 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10.6667" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
66
arch_check/.config/nlogout/themes/default/logout.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="logout.svg"
|
||||
id="svg36"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata40">
|
||||
<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
|
||||
inkscape:current-layer="svg36"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="128.01902"
|
||||
inkscape:cx="128"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview38"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path34"
|
||||
class="ColorScheme-Text"
|
||||
d="M 128,0 A 128,128 0 0 0 0,128 128,128 0 0 0 128,256 128,128 0 0 0 256,128 128,128 0 0 0 128,0 Z m 0,10.66666 A 117.33333,117.33333 0 0 1 245.33333,128 117.33333,117.33333 0 0 1 128,245.33333 117.33333,117.33333 0 0 1 10.66667,128 117.33333,117.33333 0 0 1 128,10.66666 Z M 162.875,42.666665 74.666667,128 162.875,213.33333 170.66667,205.79167 90.250005,128 170.66667,50.208331 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10.6667" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
66
arch_check/.config/nlogout/themes/default/reboot.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="reboot.svg"
|
||||
id="svg58"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata62">
|
||||
<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
|
||||
inkscape:current-layer="svg58"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="130.4352"
|
||||
inkscape:cx="14.002378"
|
||||
inkscape:zoom="3.2851563"
|
||||
showgrid="false"
|
||||
id="namedview60"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs54">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path56"
|
||||
d="M 0,128 A 128,128 0 0 1 17.833333,63.104171 L 75.208331,120.45834 67.625003,128 20.645835,81.020832 A 117.33333,117.33333 0 0 0 10.66667,128 117.33333,117.33333 0 0 0 128,245.33333 117.33333,117.33333 0 0 0 185.08333,230.35417 l 7.77083,7.8125 A 128,128 0 0 1 128,256 128,128 0 0 1 0,128 Z M 63.104171,17.833333 A 128,128 0 0 1 128,0 128,128 0 0 1 256,128 128,128 0 0 1 238.16667,192.89583 L 180.79167,135.54166 188.33333,128 235.3125,175 A 117.33333,117.33333 0 0 0 245.33333,128 117.33333,117.33333 0 0 0 128,10.66667 117.33333,117.33333 0 0 0 70.916672,25.645835 Z"
|
||||
class="ColorScheme-Text"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10.6667" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
66
arch_check/.config/nlogout/themes/default/shutdown.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
id="svg78"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata82">
|
||||
<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
|
||||
inkscape:current-layer="svg78"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="147.17717"
|
||||
inkscape:cx="4.2615933"
|
||||
inkscape:zoom="3.2851563"
|
||||
showgrid="false"
|
||||
id="namedview80"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
id="path76"
|
||||
class="ColorScheme-Text"
|
||||
d="M 117.33333,0 V 0.54165 11.24998 96 h 21.33334 V 11.20833 0.5 0 H 128 Z m 32,1.8125 V 12.708331 A 117.33333,117.33333 0 0 1 245.33333,128 117.33333,117.33333 0 0 1 128,245.33333 117.33333,117.33333 0 0 1 10.66667,128 a 117.33333,117.33333 0 0 1 96,-115.312501 V 1.9375 A 128,128 0 0 0 0,128 128,128 0 0 0 128,256 128,128 0 0 0 256,128 128,128 0 0 0 149.33333,1.8125 Z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:10.6667" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
75
arch_check/.config/nlogout/themes/default/suspend.svg
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
sodipodi:docname="suspend.svg"
|
||||
id="svg106"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata112">
|
||||
<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="defs110" />
|
||||
<sodipodi:namedview
|
||||
inkscape:current-layer="svg106"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-x="0"
|
||||
inkscape:cy="127.10583"
|
||||
inkscape:cx="128.87515"
|
||||
inkscape:zoom="26.28125"
|
||||
showgrid="false"
|
||||
id="namedview108"
|
||||
inkscape:window-height="1364"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<style
|
||||
id="current-color-scheme"
|
||||
type="text/css">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="g104"
|
||||
fill="currentColor"
|
||||
class="ColorScheme-Text"
|
||||
transform="matrix(11.511827,0,0,11.511827,-46.047308,-66.331147)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path100"
|
||||
d="M 9.762,5.762 A 12,12 0 0 0 9.758,5.77 12,12 0 0 0 4,16 12,12 0 0 0 16,28 12,12 0 0 0 26.238,22.238 L 25.506,21.506 A 11,11 0 0 1 20,23 11,11 0 0 1 9,12 11,11 0 0 1 10.486,6.498 11,11 0 0 1 10.494,6.494 Z M 8.8,7.702 A 12,12 0 0 0 8,12 12,12 0 0 0 20,24 12,12 0 0 0 24.326,23.18 11,11 0 0 1 16,27 11,11 0 0 1 5,16 11,11 0 0 1 8.8,7.701 Z M 22,6 v 1 h 2.293 l -2,2 L 22,9.293 V 10 h 4 V 9 h -2.293 l 2,-2 L 26,6.707 V 6 h -0.707 z" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
id="path102"
|
||||
d="m 20,13 v 1 h 2.293 l -2,2 L 20,16.293 V 17 h 4 v -1 h -2.293 l 2,-2 L 24,13.707 V 13 H 23.293 Z M 14,8 v 1 h 2.293 l -2,2 L 14,11.293 V 12 h 4 v -1 h -2.293 l 2,-2 L 18,8.707 V 8 h -0.707 z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
69
arch_check/.config/nlogout/themes/handy/cancel.svg
Normal file
@@ -0,0 +1,69 @@
|
||||
<?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"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="115.0859"
|
||||
inkscape:cx="110.31619"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<circle
|
||||
r="0.012816021"
|
||||
cy="-4.3406467"
|
||||
cx="-50.893467"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.264583"
|
||||
id="path1089" />
|
||||
<path
|
||||
d="m 24.985596,22.09814 c -0.388798,-0.0095 -0.779978,-0.07238 -1.166394,-0.02839 -0.637659,0.0726 -1.280465,0.170006 -1.888232,0.376156 -1.845119,0.62585 -3.51515,1.60254 -4.986007,2.883437 -0.798046,0.69498 -1.568524,1.444446 -2.179038,2.308821 -0.613917,0.869194 -0.971818,1.893446 -1.457726,2.840167 -0.118942,1.028973 -0.501567,2.061258 -0.356825,3.086923 0.412342,2.921908 2.26377,4.755486 4.753966,6.215811 3.558254,2.086663 8.24469,3.145325 12.274499,3.490884 2.553026,0.218924 5.124752,0.01974 7.687128,0.02961 2.094214,-0.37434 4.232891,-0.553474 6.282639,-1.123021 3.221188,-0.895048 6.363161,-2.323706 8.639577,-4.868646 0.81878,-0.91536 1.502307,-2.015685 1.824869,-3.200691 0.825674,-3.033286 -0.408171,-4.22594 -1.706999,-6.781749 -0.970725,-0.959586 -1.838183,-2.036348 -2.912177,-2.878756 -2.312326,-1.813722 -5.066442,-3.063515 -7.814849,-4.031761 -2.644053,-0.931483 -5.838529,-1.713325 -8.636437,-2.017551 -1.51385,-0.164607 -3.042266,-0.14129 -4.563401,-0.211934 -1.648121,0.187189 -3.319893,0.226262 -4.944368,0.561567 -2.350976,0.48526 -5.424995,1.665659 -7.40013,3.126399 -0.818251,0.605149 -1.593119,1.324606 -2.124985,2.192279 -0.441594,0.720406 -0.473622,1.622234 -0.710433,2.433352 -0.01593,0.05832 0.808831,0.283631 0.824763,0.225311 v 0 c 0.242425,-0.647352 0.293379,-1.403942 0.727275,-1.94206 0.578751,-0.717768 1.395713,-1.223762 2.195428,-1.682674 2.096948,-1.203322 4.830161,-2.032049 7.166142,-2.49681 1.222892,-0.243304 2.474534,-0.308759 3.7118,-0.463138 1.45302,0.01844 2.912345,-0.08117 4.359055,0.05533 1.382527,0.130437 2.743811,0.440803 4.099266,0.742687 2.879101,0.641226 5.499857,1.386832 8.176895,2.642602 1.235562,0.57959 2.451148,1.221354 3.574788,1.995932 1.019273,0.702631 1.881627,1.609317 2.82244,2.413976 0.563349,0.895816 1.359485,1.682173 1.690048,2.68745 0.718478,2.184979 -0.06112,3.799173 -1.670545,5.312581 -2.327934,2.189047 -5.207966,3.166608 -8.274653,3.828537 -1.985201,0.428493 -4.026112,0.537536 -6.039168,0.806302 -1.998247,0.04119 -3.998478,0.221702 -5.994736,0.123566 -3.751466,-0.184423 -8.393414,-0.799852 -11.93375,-2.287252 -2.295999,-0.96462 -4.270456,-2.173007 -4.743639,-4.769403 -0.160753,-0.882065 0.201702,-1.781804 0.302553,-2.672707 0.438431,-0.848127 0.763824,-1.765006 1.315294,-2.544379 0.570023,-0.80559 1.289729,-1.500301 2.017936,-2.166347 1.263094,-1.155276 2.894604,-2.259224 4.44963,-3.000599 0.85704,-0.408601 1.813431,-0.577718 2.672753,-0.984702 0.01606,-0.0045 -0.04819,-0.231652 -0.06425,-0.227109 z"
|
||||
id="path1097"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 21.298135,49.036239 c 0.498052,-0.389998 1.028023,-0.74236 1.494158,-1.169998 1.97646,-1.813229 3.842059,-3.994105 5.516827,-6.049618 1.24279,-1.525326 2.438535,-3.088667 3.629181,-4.655034 1.494761,-1.966455 6.069454,-8.209563 7.518466,-10.181614 2.23905,-3.209893 3.947051,-5.515081 5.911953,-8.836526 0.263435,-0.445306 2.042038,-3.410712 2.05731,-4.582745 0.0024,-0.188336 -0.285252,-0.403095 -0.458782,-0.32986 -0.429739,0.18136 -0.681805,0.636722 -1.022705,0.955083 -0.01709,0.02861 0.387512,0.270464 0.404614,0.241853 v 0 c 0.1655,-0.359844 0.40839,-0.693378 0.496504,-1.079531 0.01931,-0.0847 -0.151159,-0.200051 -0.21736,-0.143797 -0.418545,0.355663 -0.73519,0.816997 -1.078963,1.245361 -0.699254,0.871312 -1.373119,1.762765 -2.049026,2.65231 -2.145863,2.824119 -4.237024,5.689577 -6.406787,8.495672 -2.855905,3.947059 -4.583473,6.286944 -7.342953,10.289261 -1.101918,1.598208 -2.170816,3.218929 -3.256224,4.828395 -0.879509,1.321363 -1.739692,2.655795 -2.638525,3.96409 -0.146978,0.213932 -2.386601,3.312761 -2.899681,4.023053 -0.02359,0.02418 0.3184,0.357828 0.341993,0.333645 z"
|
||||
id="path1099"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
67
arch_check/.config/nlogout/themes/handy/hibernate.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="117.31353"
|
||||
inkscape:cx="81.582423"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 12.334124,24.866817 c -0.382738,0.210638 -0.807347,0.358663 -1.148215,0.631913 -1.2638915,1.013178 -2.3925682,2.392562 -2.8848617,3.96553 -0.7220842,2.307191 -0.6586175,5.059804 0.2741321,7.302558 0.6036361,1.451417 1.6707646,2.663171 2.5061476,3.994756 1.414184,1.180483 2.676784,2.570975 4.242552,3.541453 3.847719,2.384854 8.198829,3.625837 12.686695,4.023841 4.955389,0.439471 10.059088,0.07645 14.738186,-1.755986 2.141132,-0.838515 4.015213,-2.242384 6.022819,-3.363577 3.077178,-3.412529 5.576101,-5.003784 6.090922,-9.862031 0.409276,-3.862246 -1.330584,-7.351549 -3.888668,-10.083736 -3.717415,-3.970423 -6.253298,-4.336347 -11.204205,-6.341254 -2.318266,-0.370476 -4.609811,-0.998983 -6.9548,-1.111427 -5.625206,-0.269732 -10.697835,0.375688 -16.038836,2.078538 -2.242574,0.71499 -4.341338,1.820493 -6.512007,2.730739 -0.153742,0.09607 1.204835,2.270316 1.358577,2.174251 v 0 c 2.128467,-0.735851 4.209565,-1.626525 6.385399,-2.207552 3.332256,-0.889832 10.15052,-2.044157 13.727224,-1.986326 2.193613,0.03547 4.355682,0.529931 6.533523,0.794896 4.685924,1.515496 6.987526,1.673348 10.679578,5.02066 2.31589,2.099649 4.178414,4.948453 3.798885,8.262889 -0.462651,4.040307 -3.052514,5.713368 -5.663052,8.41365 -1.844069,0.993185 -3.568623,2.250614 -5.532205,2.979555 -3.722605,1.381945 -8.512294,1.867199 -12.466335,1.648266 C 24.53877,45.46667 20.99491,44.825137 16.9562,42.725039 c -1.501185,-0.780603 -2.768265,-1.94636 -4.152397,-2.91954 -0.853327,-1.119738 -1.918198,-2.106178 -2.55998,-3.359211 -0.9299955,-1.815753 -1.1874554,-4.499124 -0.7473845,-6.493332 0.416423,-1.887046 1.7698555,-3.465408 3.0261255,-4.850087 0.01669,-0.01332 -0.171748,-0.249377 -0.18844,-0.236052 z"
|
||||
id="path1231"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 30.68371,22.727356 c -0.12019,0.07965 -0.269468,0.127181 -0.360569,0.238938 -0.612937,0.751926 -0.865648,1.807112 -1.089523,2.698539 -0.221657,0.88259 -0.392573,1.777769 -0.549097,2.674205 -0.511604,2.930043 -0.441532,2.978951 -0.645361,5.889238 0.0104,0.758785 0.02077,1.51757 0.03117,2.276356 -0.0033,0.0589 0.829625,0.105989 0.832954,0.04709 v 0 c 0.111027,-0.735846 0.222054,-1.471692 0.333081,-2.207537 0.545841,-3.381804 0.431768,-2.356091 0.780182,-5.839162 0.08875,-0.887252 0.163121,-1.775884 0.244494,-2.663844 0.05626,-0.613911 0.07634,-1.232197 0.168396,-1.841769 0.0993,-0.65753 0.12922,-0.629871 0.428612,-1.014362 0.01823,-0.01233 -0.156115,-0.270019 -0.174336,-0.257692 z"
|
||||
id="path1235"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 29.638166,23.733635 c 0.442889,0.499857 1.023538,1.123304 1.352907,1.678009 1.167234,1.965781 1.78625,4.226432 2.024904,6.486223 0.08463,0.801274 0.06009,1.610337 0.09014,2.415507 -0.204266,1.536202 -0.12451,2.178931 -0.850656,3.502104 -0.28184,0.513567 -0.742431,1.060069 -1.369547,1.155991 -0.447222,0.06841 -0.816919,-0.322329 -1.121225,-0.543983 -0.01421,-0.01503 -0.226554,0.185978 -0.212341,0.200993 v 0 c 0.21581,0.182483 0.393734,0.4229 0.64743,0.547447 1.91067,0.938006 3.253748,-1.144543 3.733739,-2.689598 0.221668,-0.713534 0.273259,-1.469149 0.409887,-2.203725 -0.01931,-0.86196 0.04145,-1.729453 -0.05795,-2.585879 -0.28294,-2.437632 -1.125733,-4.791298 -2.638507,-6.736969 -0.580567,-0.746705 -1.005475,-1.005005 -1.704845,-1.521651 -0.0209,-0.02149 -0.324827,0.27404 -0.30393,0.295531 z"
|
||||
id="path1237"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
63
arch_check/.config/nlogout/themes/handy/lock.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="lock.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="117.31353"
|
||||
inkscape:cx="81.582423"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 6.8898892,16.143473 c 0.7897553,0.794759 1.5614536,1.607876 2.3692655,2.384274 1.3979453,1.343582 2.8255983,2.655949 4.2469963,3.974695 1.972405,1.829961 3.931294,3.674999 5.934346,5.471363 5.07423,4.55064 8.533248,7.493818 13.884408,11.724561 2.004986,1.585185 4.065387,3.098996 6.09808,4.648491 1.449752,1.016238 2.899508,2.032476 4.34926,3.048714 0.09209,0.102013 1.534764,-1.200293 1.442675,-1.302306 v 0 C 43.987992,44.870372 42.761061,43.647476 41.53413,42.424579 39.656847,40.737146 37.804709,39.021318 35.902286,37.362278 32.258513,34.184661 25.721283,28.703961 21.921983,25.724077 18.473284,23.019178 14.17489,19.822963 10.390722,17.419245 9.3998257,16.789824 8.346285,16.264924 7.324067,15.687764 c -0.032224,-0.0307 -0.4664014,0.425009 -0.4341778,0.455709 z"
|
||||
id="path1257"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 12.488681,50.524568 c 0.324968,-0.217546 0.645961,-0.44115 0.974904,-0.65264 1.196413,-0.76921 2.414748,-1.50445 3.60095,-2.289318 7.781009,-5.148413 15.333093,-10.630079 22.949757,-16.015336 2.625949,-1.856641 5.259178,-3.702967 7.888766,-5.554449 4.582533,-3.176216 6.478188,-4.578223 10.895102,-7.365835 3.080221,-1.943995 1.765983,-0.760477 3.070312,-2.00823 0.02141,-0.0066 -0.07235,-0.309421 -0.09376,-0.302791 v 0 c -2.034183,-0.665396 -1.380852,-0.692637 -4.432146,0.482691 -4.701445,1.81095 -7.623993,3.761744 -12.127267,6.33902 -2.71965,1.807025 -5.492417,3.536551 -8.158954,5.421075 -5.51375,3.896737 -10.865786,8.09364 -15.916138,12.577822 -1.876731,1.666341 -3.675908,3.420184 -5.440115,5.205227 -0.948457,0.959657 -2.408855,2.683145 -3.472647,3.92938 -0.0165,0.01847 0.244733,0.251857 0.261236,0.233384 z"
|
||||
id="path1259"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
81
arch_check/.config/nlogout/themes/handy/logout.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="logout.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="117.02659"
|
||||
inkscape:cx="110.31619"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<circle
|
||||
r="0.012816021"
|
||||
cy="0.59963304"
|
||||
cx="-45.692863"
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:0.264583"
|
||||
id="path1089" />
|
||||
<path
|
||||
d="m 22.344019,16.594926 c 0.400921,0.104809 0.795892,0.235823 1.202763,0.314425 2.098828,0.40547 4.498211,0.675526 6.588035,0.817096 3.230334,0.218832 6.662213,0.23977 9.890799,0.158413 1.416037,-0.03568 2.829565,-0.138944 4.244348,-0.208416 2.027351,-0.207076 3.787092,-0.3287 5.762648,-0.713629 0.467215,-0.09103 0.933503,-0.201879 1.380258,-0.366158 0.174564,-0.06419 0.426362,-0.129217 0.462872,-0.311592 0.03276,-0.163656 -0.168436,-0.321427 -0.324085,-0.381681 -0.267534,-0.103566 -0.571542,-0.05044 -0.857314,-0.07565 -0.02159,-0.0059 -0.105026,0.299596 -0.08342,0.305495 v 0 c 0.28276,-0.01489 0.575442,0.03106 0.84828,-0.04467 0.102106,-0.02834 0.27976,-0.17588 0.200747,-0.246491 -0.137099,-0.122523 -0.364204,-0.05609 -0.547915,-0.06376 -0.492513,-0.02058 -0.985739,-0.02183 -1.478682,-0.0209 -1.963764,0.0037 -3.927091,0.07245 -5.890982,0.06119 -1.414809,0.01602 -2.82957,0.03667 -4.244422,0.04806 -3.088018,0.02485 -5.739897,0.0074 -8.847701,0.06746 -1.378138,0.02665 -2.755701,0.07786 -4.133354,0.123098 -0.909061,0.02985 -1.818596,0.0516 -2.72674,0.102172 -0.44975,0.02504 -0.897055,0.08307 -1.345583,0.124599 -0.02199,-0.0071 -0.122535,0.303833 -0.100547,0.310942 z"
|
||||
id="path1121"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 51.189625,15.938641 c -0.07504,0.516994 -0.141526,1.035301 -0.225108,1.550983 -0.169788,1.04754 -0.382143,2.088214 -0.534947,3.138365 -0.203068,1.395562 -0.368364,2.796459 -0.532437,4.197142 -0.383585,3.274671 -0.642094,5.7936 -0.870096,9.065158 -0.08351,1.198317 -0.129394,2.398959 -0.19409,3.598437 -0.0021,2.936584 -0.139092,1.681453 0.211177,3.781883 -0.0028,0.03277 0.460568,0.07286 0.463402,0.04009 v 0 c 0.772361,-1.998253 0.379865,-0.790591 0.991253,-3.678309 0.181089,-1.192088 0.386948,-2.380673 0.543267,-3.576262 0.436911,-3.341701 0.649964,-5.710506 0.8271,-9.099389 0.15693,-3.002251 0.239977,-6.022688 -0.131453,-9.014098 2.65e-4,-0.03875 -0.547785,-0.04275 -0.548068,-0.004 z"
|
||||
id="path1123"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 19.841035,45.075907 c 0.726679,0.04298 1.452382,0.108201 2.180035,0.128953 2.843185,0.08108 6.335898,0.03321 9.093513,-0.07955 4.64831,-0.190084 7.989309,-0.437512 12.601362,-0.973772 1.704665,-0.198208 3.399991,-0.469831 5.099986,-0.704747 0.897919,-0.18782 3.815779,-0.598747 4.981824,-1.332741 0.09898,-0.06231 -0.02299,-0.232788 -0.03449,-0.349183 0.0016,-0.0019 -0.02336,-0.02252 -0.02484,-0.02074 v 0 c -0.05432,-0.07712 -0.07072,-0.21169 -0.162973,-0.231354 -1.593397,-0.339627 -4.08781,-0.179745 -5.487717,-0.168042 -1.741504,0.102729 -3.484756,0.179189 -5.224511,0.308194 -2.078905,0.154154 -4.156405,0.330846 -6.230379,0.541208 -3.996139,0.405323 -7.463123,0.874321 -11.41024,1.421397 -1.179549,0.163489 -2.35995,0.322173 -3.536038,0.508937 -0.677695,0.107619 -1.349527,0.249367 -2.024291,0.374049 -0.04083,0.01265 0.137923,0.590048 0.178751,0.577406 z"
|
||||
id="path1125"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 8.9468401,29.766855 c 4.6258629,0.502974 9.2978319,0.457111 13.9391489,0.21694 1.218305,-0.06304 2.434087,-0.167894 3.65113,-0.251841 1.991226,-0.238151 4.027057,-0.339265 5.981133,-0.834154 0.180615,-0.04574 0.369718,-0.08544 0.527751,-0.184134 0.06148,-0.03839 0.12677,-0.139208 0.08652,-0.199484 -0.0379,-0.05676 -0.135507,0.01644 -0.203259,0.02466 -0.0045,0.0031 0.03993,0.06647 0.04441,0.06333 v 0 c 0.05856,-0.04952 0.191755,-0.07357 0.175686,-0.148558 -0.05953,-0.277828 -0.826743,-0.309843 -0.871294,-0.314353 -2.074438,-0.210033 -4.170273,-0.07157 -6.248334,-0.07838 -1.225468,0.04254 -2.451378,0.07384 -3.676405,0.127612 -2.533618,0.111206 -5.23469,0.271695 -7.765983,0.470979 -1.017214,0.08008 -2.034714,0.16121 -3.048687,0.275207 -1.253224,0.140896 -1.689451,0.235004 -2.7173054,0.43095 -0.02837,0.0089 0.097124,0.410093 0.1254945,0.401219 z"
|
||||
id="path1127"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 29.95567,25.140992 c -0.597675,0.0023 -1.193593,0.06433 -1.78494,0.14689 -0.30479,0.04255 -0.614956,0.08604 -0.908139,0.182759 0.08454,0.123197 0.141554,0.270777 0.253628,0.369592 0.07912,0.06976 0.19424,0.08335 0.295098,0.114214 0.291898,0.08934 0.586747,0.168956 0.882107,0.246076 0.491157,0.128242 0.981874,0.259121 1.477249,0.369958 2.295204,0.513532 2.266399,0.460443 4.708633,0.820018 1.954998,0.196886 3.929787,0.42278 5.898846,0.295415 0.224128,-0.0145 0.627835,0.120164 0.666157,-0.101139 0.148479,-0.857456 -1.462,-0.540083 -1.557374,-0.53627 -0.479248,0.09058 -0.96528,0.150652 -1.437744,0.271728 -0.581879,0.149115 -1.151294,0.344176 -1.720019,0.537494 -0.852323,0.289719 -1.70711,0.575266 -2.542249,0.911322 -1.7619,0.708978 -3.636211,1.608186 -5.30196,2.52885 -0.64051,0.35401 -1.253616,0.755484 -1.880425,1.133224 -1.148016,1.003543 -0.909314,0.459052 -1.152457,1.36121 -0.0065,0.0075 0.09952,0.09905 0.105999,0.09156 v 0 c 0.914333,-0.07498 0.301131,0.01027 1.792981,-0.484537 2.136749,-0.963454 2.288956,-1.013381 4.555812,-2.12549 0.893165,-0.438181 1.780511,-0.888151 2.667744,-1.338217 0.763982,-0.387545 1.507717,-0.816284 2.285844,-1.174585 1.065696,-0.490718 1.794224,-0.670682 2.883903,-0.994339 0.30662,-0.05793 1.491249,-0.0909 1.475851,-0.786087 -0.0044,-0.197646 -0.37986,-0.112203 -0.574207,-0.148428 -1.884087,-0.351188 -3.805685,-0.455411 -5.704007,-0.695968 -9.089453,-0.883778 3.372051,0.320239 -4.8029,-0.446907 -0.476064,-0.04468 -1.921716,-0.208642 -2.540254,-0.238786 -0.195827,-0.0095 -0.422476,-0.101526 -0.58817,0.0033 -0.105494,0.06673 -0.0059,0.249585 -0.0089,0.374377 0.902559,0.02534 1.809007,-0.137172 2.690918,-0.306362 0.02693,-0.0097 -0.110122,-0.390546 -0.137052,-0.380855 z"
|
||||
id="path1129"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
63
arch_check/.config/nlogout/themes/handy/reboot.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="reboot.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="117.02659"
|
||||
inkscape:cx="110.31619"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 49.789866,35.52974 c -0.293228,0.145896 -0.589198,0.286406 -0.879684,0.437689 -0.464365,0.241835 -0.912204,0.515851 -1.384631,0.74154 -1.627137,0.777317 -4.056055,1.772433 -5.680991,2.296441 -3.238214,1.044257 -6.407269,1.735238 -9.71573,2.530999 -4.233243,0.578519 -6.141704,1.082518 -10.392883,0.7328 -1.331875,-0.109567 -2.651879,-0.386802 -3.939165,-0.745678 -1.918554,-0.534863 -4.495859,-1.494956 -5.938604,-3.054307 -0.519428,-0.561409 -0.717411,-1.351021 -1.076117,-2.026531 0.09893,-0.765257 -0.0068,-1.586379 0.29679,-2.295771 0.867474,-2.026995 3.271372,-4.215101 4.8453,-5.511811 2.410792,-1.986178 4.986747,-3.606004 7.772402,-5.012462 1.337084,-0.675085 2.740673,-1.209483 4.11101,-1.814224 2.72084,-0.83025 5.364977,-1.800846 8.227663,-2.054062 2.521686,-0.223053 5.53606,0.02976 8.019679,0.60473 1.212099,0.280608 2.424486,0.607215 3.566227,1.101536 0.96194,0.416473 1.800219,1.074391 2.700326,1.611586 1.21865,1.308235 2.112603,1.858224 2.49573,3.636902 0.104418,0.484769 -0.04974,0.990525 -0.0746,1.485788 -0.0055,0.04401 0.616792,0.122222 0.622322,0.07822 v 0 c 0.14215,-0.618506 0.464542,-1.222028 0.426444,-1.855512 -0.126656,-2.10602 -1.198641,-2.903738 -2.443532,-4.485842 -0.951461,-0.657918 -1.823048,-1.449844 -2.854384,-1.973754 -2.717223,-1.380329 -5.595887,-1.888514 -8.62058,-2.060782 -2.857603,-0.162751 -6.027195,0.216508 -8.805724,0.89044 -1.490371,0.361489 -2.932099,0.900168 -4.398148,1.350252 -1.436572,0.625292 -2.915655,1.160807 -4.309715,1.875874 -2.829261,1.451237 -5.62383,3.292746 -7.948632,5.477218 -1.84152,1.730365 -3.847446,4.043143 -4.6220535,6.549451 -0.2846898,0.921139 -0.1416653,1.923047 -0.2124977,2.88457 0.388982,0.860742 0.5950942,1.830445 1.1669462,2.582222 1.404272,1.846106 4.089996,3.316933 6.206924,3.966906 3.478377,1.067982 7.124267,1.317588 10.732221,1.030684 1.851979,-0.14727 3.67025,-0.57907 5.505376,-0.868606 1.714918,-0.487796 3.455897,-0.891857 5.144756,-1.463389 1.517399,-0.513506 2.999142,-1.132382 4.461068,-1.78734 2.618595,-1.173155 5.084173,-2.678533 7.291629,-4.510095 0.02445,-0.02088 -0.270696,-0.366551 -0.29514,-0.345681 z"
|
||||
id="path1153"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 41.417949,26.819297 c -0.191609,-0.407379 -0.249473,0.129355 -0.18632,0.192487 0.193109,0.193045 0.478571,0.263633 0.724644,0.381979 0.509429,0.245004 1.019635,0.489529 1.541116,0.707713 2.517314,1.053213 2.618232,1.013981 5.351835,1.881886 1.473891,0.364812 3.724413,1.0107 5.309304,1.096864 1.006409,0.05471 2.18831,0.144185 2.734712,-0.918207 0.498295,-0.968854 0.187441,-2.177034 0.07907,-3.155794 -0.726622,-2.568412 -0.213616,-1.32173 -1.569257,-3.727459 -0.02087,-0.04877 -0.710525,0.246364 -0.689657,0.29513 v 0 c 1.107924,2.312196 0.663056,1.125341 1.344041,3.557016 0.05274,0.238649 0.57055,2.08751 0.362495,2.58544 -0.258919,0.619659 -1.502905,0.332703 -1.784626,0.280831 -0.969044,-0.178424 -4.353065,-1.090676 -5.108074,-1.289166 -4.284914,-1.128792 -1.566649,-0.424397 -5.541746,-1.429414 -0.56978,-0.144058 -1.136322,-0.301316 -1.708605,-0.435087 -0.304506,-0.07118 -0.609121,-0.20489 -0.920808,-0.179537 -0.790234,0.06428 -0.315333,0.314834 -0.19004,0.402193 0.01746,0.01781 0.269375,-0.229062 0.251918,-0.246875 z"
|
||||
id="path1159"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
63
arch_check/.config/nlogout/themes/handy/shutdown.svg
Normal file
@@ -0,0 +1,63 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="117.02659"
|
||||
inkscape:cx="110.31619"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 14.833942,21.895771 c -0.3319,0.09799 -0.671861,0.171946 -0.9957,0.293961 -2.197582,0.827999 -4.2284587,2.09478 -5.7345747,3.934694 -0.617496,0.754352 -1.211126,1.562179 -1.565276,2.470433 -0.367319,0.942027 -0.373606,1.987403 -0.56041,2.981105 0.250841,1.057579 0.269355,2.199111 0.752521,3.172735 1.3457,2.711704 3.8941857,4.755425 6.4343037,6.232541 3.446659,2.004285 7.724481,3.414633 11.621412,4.074036 2.532477,0.428521 5.115798,0.465719 7.673697,0.698579 2.927127,-0.20038 5.879446,-0.168709 8.781383,-0.601139 4.342079,-0.64703 9.255577,-2.08548 12.919945,-4.670896 2.59815,-1.833139 4.667385,-4.367233 4.809024,-7.684063 0.06098,-1.427952 -0.596151,-2.79565 -0.894228,-4.193475 C 57.216358,27.320922 56.51482,25.916141 55.496997,24.754203 52.566525,21.4088 48.202321,18.958208 43.986974,17.663505 40.419531,16.5678 39.264709,16.666818 35.567202,16.34824 c -5.768948,0.508235 -3.073175,-0.01485 -8.115477,1.416443 -0.08519,0.04256 0.516655,1.247263 0.60184,1.204706 v 0 c 4.587491,-1.058657 2.265333,-0.734997 6.966434,-0.97125 3.402417,0.265692 4.691721,0.161347 7.955539,1.22322 1.246481,0.405539 2.450095,0.944958 3.619524,1.537081 2.463723,1.247471 5.239187,3.020017 7.200757,4.984842 0.967981,0.969585 1.698075,2.15055 2.547112,3.225825 0.33819,1.125633 1.045808,2.201974 1.014571,3.376898 -0.07506,2.823294 -2.483855,4.822343 -4.651753,6.084154 -1.717432,0.999617 -3.588448,1.74719 -5.490604,2.322179 -4.980197,1.505432 -8.724225,1.606598 -13.846151,2.092024 -2.475595,-0.07622 -4.964311,0.03705 -7.426785,-0.228648 -3.822372,-0.412422 -7.858025,-1.513305 -11.341836,-3.177217 -2.199058,-1.050295 -5.0681687,-2.812957 -6.4437117,-5.008861 -0.490504,-0.783037 -0.539582,-1.767433 -0.809373,-2.651149 0.139299,-0.852771 0.111577,-1.750359 0.417898,-2.558314 0.31503,-0.830924 0.86565,-1.560104 1.409864,-2.262605 1.0055807,-1.298056 2.3251607,-2.400783 3.6417397,-3.365734 0.444602,-0.325859 0.930841,-0.590992 1.387722,-0.8994 0.267313,-0.180444 0.522804,-0.37781 0.784207,-0.566715 0.01626,-0.01094 -0.138517,-0.240892 -0.154777,-0.229948 z"
|
||||
id="path1179"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 22.999129,12.761212 c -0.127436,3.171066 0.05845,6.362465 0.541261,9.49979 0.08755,0.568874 0.211079,1.131624 0.316616,1.697435 0.330113,0.08857 0.09226,1.288352 0.58642,1.490352 0.08531,0.03487 0.100314,-0.154627 0.150469,-0.231941 -2.65e-4,-0.0054 -0.07672,-3.97e-4 -0.07637,0.005 v 0 c 0.06085,0.05969 0.120817,0.237865 0.182547,0.179082 0.371853,-0.354113 -0.378526,-1.369942 0.06478,-1.539106 -0.250883,-3.722295 -0.553889,-7.46207 -1.321842,-11.118494 -0.0013,-0.03139 -0.445146,-0.01351 -0.443884,0.01788 z"
|
||||
id="path1181"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
67
arch_check/.config/nlogout/themes/handy/suspend.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
sodipodi:docname="suspend.svg"
|
||||
id="svg8"
|
||||
version="1.1"
|
||||
viewBox="0 0 65 65"
|
||||
height="65mm"
|
||||
width="65mm">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="115.37284"
|
||||
inkscape:cx="81.582423"
|
||||
inkscape:zoom="2.061125"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 30.429366,25.065414 c 0.199642,-1.016623 0.326819,-2.047473 0.45823,-3.075007 -0.142008,0.06701 -0.39169,0.04782 -0.426027,0.201043 -0.141923,0.633343 -0.06351,1.297371 -0.05517,1.946367 0.0158,1.229635 0.05676,2.459306 0.127487,3.687007 0.169643,2.944982 0.46895,6.087425 0.837584,9.014544 0.155625,1.235737 0.358902,2.465007 0.53835,3.69751 0.561761,2.781742 0.217715,1.676768 0.819827,3.373705 -0.0013,0.02508 0.353378,0.0449 0.35478,0.01982 v 0 c 0.792324,-1.772883 0.435999,-0.637484 0.535392,-3.529624 -0.05573,-1.247444 -0.07563,-2.497007 -0.167198,-3.742335 -0.21713,-2.95294 -0.590518,-6.108745 -1.113255,-9.023188 -0.05522,-0.307872 -0.894961,-4.686145 -1.430425,-5.608872 -0.09621,-0.16579 -0.376449,-0.0725 -0.564674,-0.108751 -0.196585,1.028777 -0.296683,2.09198 -0.187844,3.136462 -7.93e-4,0.0193 0.272146,0.03062 0.272947,0.01132 z"
|
||||
id="path1201"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 24.111623,38.901018 c -0.394651,-0.232439 -1.932087,-0.899451 -1.76715,0.276431 0.151799,1.082228 1.645267,3.190113 2.08404,3.890658 0.799114,1.073732 2.737861,3.805656 3.779224,4.707065 1.548672,1.340532 3.237897,2.193025 5.369711,1.881719 3.389791,-0.495009 4.445158,-1.824151 7.065528,-3.804214 0.913471,-1.017965 1.905992,-1.97019 2.740411,-3.0539 1.398617,-1.816468 2.452664,-3.65864 3.115988,-5.845892 0.196471,-0.647853 0.218752,-1.336191 0.328128,-2.004287 0.01103,-0.04951 -0.689139,-0.205629 -0.70018,-0.15612 v 0 c -0.223221,0.57632 -0.383964,1.180922 -0.669669,1.728962 -0.432109,0.828881 -0.9486,1.612564 -1.475015,2.384999 -1.995476,2.928067 -2.230252,3.001431 -4.657261,5.704594 -1.184019,0.992428 -3.596503,3.321396 -5.339779,3.784862 -1.845437,0.490627 -3.26586,-0.226113 -4.604067,-1.414598 -0.729761,-0.648112 -1.261372,-1.489755 -1.88985,-2.236494 -0.651534,-0.774131 -1.300119,-1.550738 -1.950179,-2.326108 -0.559104,-0.665347 -1.114773,-1.333595 -1.677313,-1.99604 -0.34363,-0.404654 -0.682911,-0.813398 -1.04114,-1.205188 -0.07976,-0.08724 -0.350312,-0.142147 -0.270479,-0.229314 0.101548,-0.110879 0.300589,0.01511 0.449815,0.0335 1.03566,0.127569 0.132151,0.07557 1.009227,0.108622 0.01621,0.0071 0.116221,-0.222184 0.10001,-0.229257 z"
|
||||
id="path1203"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 20.9968,19.033034 c 2.80332,0.147986 5.61501,0.08634 8.415288,-0.09469 2.110415,-0.136433 4.405239,-0.355058 6.501667,-0.690298 0.77733,-0.124303 1.544379,-0.306059 2.316568,-0.459088 0.500512,-0.156113 1.013722,-0.276194 1.501537,-0.468337 0.120962,-0.04764 0.920178,-0.32473 0.859668,-0.732161 -0.0118,-0.07951 -0.131326,-0.09272 -0.196988,-0.139084 -0.004,-0.0026 -0.04008,0.05366 -0.03611,0.05621 v 0 c 0.04572,-0.0018 0.182803,-0.0021 0.137167,-0.0054 -0.896686,-0.06582 -1.78767,0.284532 -2.683322,0.206049 -1.81516,0.152431 -3.630218,0.306083 -5.445381,0.458482 -3.247755,0.272679 -6.501638,0.508753 -9.726805,0.994379 -0.612418,0.09221 -1.218544,0.222232 -1.827816,0.333348 -0.03823,0.01305 0.146297,0.553659 0.184524,0.540611 z"
|
||||
id="path1209"
|
||||
style="fill:#ffffff;stroke-width:0.264999;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
82
arch_check/.config/nlogout/themes/orange/cancel.svg
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>action-unavailable</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.4766083"
|
||||
inkscape:cx="90.030274"
|
||||
inkscape:cy="124.97813"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">action-unavailable</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="action-unavailable"
|
||||
style="fill:#ff9221;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.42857)">
|
||||
<g
|
||||
id="60"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#ff9221;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 7,0 c 3.863,0 7,3.137 7,7 0,3.863 -3.137,7 -7,7 C 3.137,14 0,10.863 0,7 0,3.137 3.137,0 7,0 Z m 0,13 c 3.313709,0 6,-2.686291 6,-6 C 13,3.6862915 10.313709,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#ff9221;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle-4"
|
||||
transform="rotate(44,7.115347,7.050773)"
|
||||
x="6.6153469"
|
||||
y="0.55077314"
|
||||
width="1"
|
||||
height="13"
|
||||
style="fill:#ff9221;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
76
arch_check/.config/nlogout/themes/orange/hibernate.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="256"
|
||||
height="255.58078"
|
||||
viewBox="0 0 256 255.58078"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:zoom="2.36"
|
||||
inkscape:cx="-187.71186"
|
||||
inkscape:cy="232.83898"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path825"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path819"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ff9221;stroke:none;stroke-width:8.05695;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 128.73012,0 C 93.279396,0 57.673851,12.551957 34.296983,37.631487 0.1366776,74.279871 -9.8550024,133.00833 10.448481,177.79265 c 17.833807,39.33677 41.353893,60.03324 84.115591,74.03432 36.494408,11.94904 100.895838,-5.91231 127.701348,-35.41046 44.97944,-49.4977 44.97944,-129.287326 0,-178.785023 C 199.47518,12.551957 164.18086,0 128.73012,0 Z m 0.86637,12.727605 c 13.75548,0.0027 27.72041,2.625534 41.2702,8.285538 94.80241,39.600793 94.80241,172.468157 0,212.068967 C 97.627222,263.67562 13.627646,206.24708 14.03993,125.85835 14.368184,61.855198 69.989397,12.71571 129.59649,12.727605 Z m -1.1499,46.594364 c -3.44739,0 -5.6392,26.333736 -5.6392,67.702031 0,41.36831 2.19181,67.68628 5.6392,67.68628 3.4474,0 5.63921,-26.31797 5.63921,-67.68628 0,-41.368295 -2.19181,-67.702031 -5.63921,-67.702031 z"
|
||||
id="path817-3" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
81
arch_check/.config/nlogout/themes/orange/lock.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="219.429"
|
||||
height="256.00049"
|
||||
viewBox="0 0 219.429 256.00049"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="lock.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>document-edit copy</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1080"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="68.237288"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">document-edit copy</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="document-edit-copy"
|
||||
style="fill:#ff9221;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.28575,0,0,18.28575,-109.7145,-91.42875)">
|
||||
<g
|
||||
id="27"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#ff9221;fill-rule:nonzero">
|
||||
<path
|
||||
d="M 6,1 C 4.3434673,1 3,2.3667179 3,4.0625 V 7 H 1 v 6 H 11 V 7 H 9 V 4.0625 C 9,2.3672731 7.6561924,1 6,1 Z M 6,0 c 2.216,0 4,1.8225 4,4.0625 V 6 h 1 c 0.554,0 1,0.446 1,1 v 6 c 0,0.554 -0.446,1 -1,1 H 1 C 0.446,14 0,13.554 0,13 V 7 C 0,6.446 0.446,6 1,6 H 2 V 4.0625 C 2,1.8216 3.784,0 6,0 Z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#ff9221"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
x="2"
|
||||
y="6"
|
||||
width="8"
|
||||
height="1"
|
||||
style="fill:#ff9221" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
74
arch_check/.config/nlogout/themes/orange/logout.svg
Normal file
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="201.08699"
|
||||
height="256.00021"
|
||||
viewBox="0 0 201.08699 256.00021"
|
||||
version="1.1"
|
||||
id="svg11"
|
||||
sodipodi:docname="logout.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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>pane-hide</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview13"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="1.7383042"
|
||||
inkscape:cx="-261.17408"
|
||||
inkscape:cy="182.074"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">pane-hide</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="pane-hide"
|
||||
style="fill:#ff9221;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.280636,0,0,18.280636,-109.68382,-91.40318)">
|
||||
<g
|
||||
id="259"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#ff9221;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 1,0 v 1.0019531 l 9,0.00195 V 13.003906 H 1 V 14 l 10,0.0039 V 0.0039062 Z m 3,4.0039062 v 2 H 0 v 1 H 4 V 9.003906 L 8,6.5039061 Z"
|
||||
id="Shape"
|
||||
style="fill:#ff9221"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
79
arch_check/.config/nlogout/themes/orange/reboot.svg
Normal file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="reboot.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>view-refresh</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="86.542373"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">view-refresh</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="view-refresh"
|
||||
style="fill:#ff9221;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.428569)">
|
||||
<g
|
||||
id="21"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#ff9221">
|
||||
<path
|
||||
d="M 12.488598,4 H 12.197307 C 11.159879,2.2065959 9.2208471,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 2.6124377,0 4.834916,-1.669615 5.658589,-4 h 1.051532 C 12.849572,11.891489 10.171021,14 7,14 3.1340068,14 0,10.865993 0,7 0,3.1340068 3.1340068,0 7,0 c 1.9756701,0 3.760175,0.81847727 5.032933,2.1348516 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#ff9221"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polygon
|
||||
id="Triangle"
|
||||
transform="rotate(135,12.75,3.75)"
|
||||
points="12.75,1.9822331 16.285534,5.517767 9.2144661,5.517767 "
|
||||
style="fill:#ff9221" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
73
arch_check/.config/nlogout/themes/orange/shutdown.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="106.77966"
|
||||
inkscape:cy="128.08475"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
type="text/css"
|
||||
id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(16,0,0,16,-48,-48)"
|
||||
id="g6"
|
||||
style="fill:#ff9221;fill-opacity:1">
|
||||
<path
|
||||
style="color:#232629;fill:#ff9221;fill-opacity:1;stroke:none"
|
||||
d="m 10,3 v 7 h 2 V 3 Z M 9,3.265625 C 5.5444518,4.1502188 3,7.2610109 3,11 c 0,4.432 3.568,8 8,8 4.432,0 8,-3.568 8,-8 C 19,7.2610109 16.455548,4.1502188 13,3.265625 V 4.3027344 C 15.895041,5.15992 18,7.819625 18,11 18,14.878 14.878,18 11,18 7.122,18 4,14.878 4,11 4,7.819625 6.1049587,5.15992 9,4.3027344 Z"
|
||||
class="ColorScheme-Text"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
88
arch_check/.config/nlogout/themes/orange/suspend.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="194.343"
|
||||
height="256.0004"
|
||||
viewBox="0 0 194.343 256.0004"
|
||||
version="1.1"
|
||||
id="svg13"
|
||||
sodipodi:docname="suspend.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata17">
|
||||
<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>kdenlive-zindex-down</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview15"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="56.135593"
|
||||
inkscape:cy="128.49153"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg13"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">kdenlive-zindex-down</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="kdenlive-zindex-down"
|
||||
style="fill:#ff9221;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(17.177656,0,0,17.177656,-100.74738,-68.643528)">
|
||||
<g
|
||||
id="218"
|
||||
transform="translate(5,3)"
|
||||
style="fill:#ff9221;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 6.5,1.996094 c -0.5522853,0 -1,0.4477148 -1,1 0,0.5522853 0.4477147,1 1,1 0.5522852,0 1,-0.4477147 1,-1 0,-0.5523026 -0.4477021,-1 -1,-1 z m 0,-1 c 1.10457,0 2,0.8954 2,2 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 z"
|
||||
id="Path"
|
||||
style="fill:#ff9221;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
transform="rotate(-90,6.5,10.5)"
|
||||
x="2"
|
||||
y="10"
|
||||
width="9"
|
||||
height="1"
|
||||
style="fill:#ff9221;fill-opacity:1" />
|
||||
<path
|
||||
d="m 3.8754327,13.388791 h 7.0000003 v 1 h -7.0000003 -1 V 6.3887907 h 1 z"
|
||||
id="Combined-Shape"
|
||||
transform="rotate(-45,6.521879,10.742344)"
|
||||
style="fill:#ff9221;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
82
arch_check/.config/nlogout/themes/red/cancel.svg
Normal file
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>action-unavailable</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.4766083"
|
||||
inkscape:cx="90.030274"
|
||||
inkscape:cy="124.97813"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">action-unavailable</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="action-unavailable"
|
||||
style="fill:#b00000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.42857)">
|
||||
<g
|
||||
id="60"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#b00000;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 7,0 c 3.863,0 7,3.137 7,7 0,3.863 -3.137,7 -7,7 C 3.137,14 0,10.863 0,7 0,3.137 3.137,0 7,0 Z m 0,13 c 3.313709,0 6,-2.686291 6,-6 C 13,3.6862915 10.313709,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#b00000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle-4"
|
||||
transform="rotate(44,7.115347,7.050773)"
|
||||
x="6.6153469"
|
||||
y="0.55077314"
|
||||
width="1"
|
||||
height="13"
|
||||
style="fill:#b00000;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
76
arch_check/.config/nlogout/themes/red/hibernate.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
width="256"
|
||||
height="255.58078"
|
||||
viewBox="0 0 256 255.58078"
|
||||
sodipodi:docname="hibernate.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview4"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:zoom="2.36"
|
||||
inkscape:cx="-187.71186"
|
||||
inkscape:cy="232.83898"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path825"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path819"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000"
|
||||
d=""
|
||||
id="path817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#b00000;stroke:none;stroke-width:8.05695;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 128.73012,0 C 93.279396,0 57.673851,12.551957 34.296983,37.631487 0.1366776,74.279871 -9.8550024,133.00833 10.448481,177.79265 c 17.833807,39.33677 41.353893,60.03324 84.115591,74.03432 36.494408,11.94904 100.895838,-5.91231 127.701348,-35.41046 44.97944,-49.4977 44.97944,-129.287326 0,-178.785023 C 199.47518,12.551957 164.18086,0 128.73012,0 Z m 0.86637,12.727605 c 13.75548,0.0027 27.72041,2.625534 41.2702,8.285538 94.80241,39.600793 94.80241,172.468157 0,212.068967 C 97.627222,263.67562 13.627646,206.24708 14.03993,125.85835 14.368184,61.855198 69.989397,12.71571 129.59649,12.727605 Z m -1.1499,46.594364 c -3.44739,0 -5.6392,26.333736 -5.6392,67.702031 0,41.36831 2.19181,67.68628 5.6392,67.68628 3.4474,0 5.63921,-26.31797 5.63921,-67.68628 0,-41.368295 -2.19181,-67.702031 -5.63921,-67.702031 z"
|
||||
id="path817-3" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
81
arch_check/.config/nlogout/themes/red/lock.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="219.429"
|
||||
height="256.00049"
|
||||
viewBox="0 0 219.429 256.00049"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="lock.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>document-edit copy</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1080"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="68.237288"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">document-edit copy</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="document-edit-copy"
|
||||
style="fill:#b00000;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.28575,0,0,18.28575,-109.7145,-91.42875)">
|
||||
<g
|
||||
id="27"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#b00000;fill-rule:nonzero">
|
||||
<path
|
||||
d="M 6,1 C 4.3434673,1 3,2.3667179 3,4.0625 V 7 H 1 v 6 H 11 V 7 H 9 V 4.0625 C 9,2.3672731 7.6561924,1 6,1 Z M 6,0 c 2.216,0 4,1.8225 4,4.0625 V 6 h 1 c 0.554,0 1,0.446 1,1 v 6 c 0,0.554 -0.446,1 -1,1 H 1 C 0.446,14 0,13.554 0,13 V 7 C 0,6.446 0.446,6 1,6 H 2 V 4.0625 C 2,1.8216 3.784,0 6,0 Z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#b00000"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
x="2"
|
||||
y="6"
|
||||
width="8"
|
||||
height="1"
|
||||
style="fill:#b00000" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
74
arch_check/.config/nlogout/themes/red/logout.svg
Normal file
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="201.08699"
|
||||
height="256.00021"
|
||||
viewBox="0 0 201.08699 256.00021"
|
||||
version="1.1"
|
||||
id="svg11"
|
||||
sodipodi:docname="logout.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata15">
|
||||
<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>pane-hide</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview13"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="1.7383042"
|
||||
inkscape:cx="-261.17408"
|
||||
inkscape:cy="182.074"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">pane-hide</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="pane-hide"
|
||||
style="fill:#b00000;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.280636,0,0,18.280636,-109.68382,-91.40318)">
|
||||
<g
|
||||
id="259"
|
||||
transform="translate(6,5)"
|
||||
style="fill:#b00000;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 1,0 v 1.0019531 l 9,0.00195 V 13.003906 H 1 V 14 l 10,0.0039 V 0.0039062 Z m 3,4.0039062 v 2 H 0 v 1 H 4 V 9.003906 L 8,6.5039061 Z"
|
||||
id="Shape"
|
||||
style="fill:#b00000"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
79
arch_check/.config/nlogout/themes/red/reboot.svg
Normal file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="256"
|
||||
height="256"
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="reboot.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title>view-refresh</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="86.542373"
|
||||
inkscape:cy="127.98305"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">view-refresh</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="view-refresh"
|
||||
style="fill:#b00000;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(18.285714,0,0,18.285714,-91.42857,-91.428569)">
|
||||
<g
|
||||
id="21"
|
||||
transform="translate(5,5)"
|
||||
style="fill:#b00000">
|
||||
<path
|
||||
d="M 12.488598,4 H 12.197307 C 11.159879,2.2065959 9.2208471,1 7,1 3.6862915,1 1,3.6862915 1,7 c 0,3.313709 2.6862915,6 6,6 2.6124377,0 4.834916,-1.669615 5.658589,-4 h 1.051532 C 12.849572,11.891489 10.171021,14 7,14 3.1340068,14 0,10.865993 0,7 0,3.1340068 3.1340068,0 7,0 c 1.9756701,0 3.760175,0.81847727 5.032933,2.1348516 z"
|
||||
id="Combined-Shape"
|
||||
style="fill:#b00000"
|
||||
inkscape:connector-curvature="0" />
|
||||
<polygon
|
||||
id="Triangle"
|
||||
transform="rotate(135,12.75,3.75)"
|
||||
points="12.75,1.9822331 16.285534,5.517767 9.2144661,5.517767 "
|
||||
style="fill:#b00000" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
73
arch_check/.config/nlogout/themes/red/shutdown.svg
Normal file
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 256 256"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
sodipodi:docname="shutdown.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
width="256"
|
||||
height="256"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<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" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview10"
|
||||
showgrid="false"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="106.77966"
|
||||
inkscape:cy="128.08475"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg8"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<defs
|
||||
id="defs3051">
|
||||
<style
|
||||
type="text/css"
|
||||
id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(16,0,0,16,-48,-48)"
|
||||
id="g6"
|
||||
style="fill:#b00000;fill-opacity:1">
|
||||
<path
|
||||
style="color:#232629;fill:#b00000;fill-opacity:1;stroke:none"
|
||||
d="m 10,3 v 7 h 2 V 3 Z M 9,3.265625 C 5.5444518,4.1502188 3,7.2610109 3,11 c 0,4.432 3.568,8 8,8 4.432,0 8,-3.568 8,-8 C 19,7.2610109 16.455548,4.1502188 13,3.265625 V 4.3027344 C 15.895041,5.15992 18,7.819625 18,11 18,14.878 14.878,18 11,18 7.122,18 4,14.878 4,11 4,7.819625 6.1049587,5.15992 9,4.3027344 Z"
|
||||
class="ColorScheme-Text"
|
||||
id="path4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
88
arch_check/.config/nlogout/themes/red/suspend.svg
Normal file
@@ -0,0 +1,88 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="194.343"
|
||||
height="256.0004"
|
||||
viewBox="0 0 194.343 256.0004"
|
||||
version="1.1"
|
||||
id="svg13"
|
||||
sodipodi:docname="suspend.svg"
|
||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata
|
||||
id="metadata17">
|
||||
<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>kdenlive-zindex-down</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1364"
|
||||
id="namedview15"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="9.8333333"
|
||||
inkscape:cx="56.135593"
|
||||
inkscape:cy="128.49153"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="40"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg13"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1" />
|
||||
<!-- Generator: Sketch 51.3 (57544) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">kdenlive-zindex-down</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="kdenlive-zindex-down"
|
||||
style="fill:#b00000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1"
|
||||
transform="matrix(17.177656,0,0,17.177656,-100.74738,-68.643528)">
|
||||
<g
|
||||
id="218"
|
||||
transform="translate(5,3)"
|
||||
style="fill:#b00000;fill-opacity:1;fill-rule:nonzero">
|
||||
<path
|
||||
d="m 6.5,1.996094 c -0.5522853,0 -1,0.4477148 -1,1 0,0.5522853 0.4477147,1 1,1 0.5522852,0 1,-0.4477147 1,-1 0,-0.5523026 -0.4477021,-1 -1,-1 z m 0,-1 c 1.10457,0 2,0.8954 2,2 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 0,-1.10457 0.89543,-2 2,-2 z"
|
||||
id="Path"
|
||||
style="fill:#b00000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
id="Rectangle"
|
||||
transform="rotate(-90,6.5,10.5)"
|
||||
x="2"
|
||||
y="10"
|
||||
width="9"
|
||||
height="1"
|
||||
style="fill:#b00000;fill-opacity:1" />
|
||||
<path
|
||||
d="m 3.8754327,13.388791 h 7.0000003 v 1 h -7.0000003 -1 V 6.3887907 h 1 z"
|
||||
id="Combined-Shape"
|
||||
transform="rotate(-45,6.521879,10.742344)"
|
||||
style="fill:#b00000;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
72
arch_check/.config/nlogout/themes/runes/cancel.svg
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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"
|
||||
sodipodi:docname="dagaz.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="72.894475"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 12.872056,23.093984 c 6.805721,3.235858 13.150947,7.435768 19.413669,11.731958 3.830349,2.648017 4.444036,3.082608 8.244411,5.669901 1.172649,0.798337 2.367499,1.559341 3.523299,2.385825 0.855717,0.611902 1.672498,1.285024 2.508746,1.927536 3.0887,2.366056 6.187891,-2.350043 3.099191,-4.716101 v 0 c -0.920745,-0.70341 -1.821992,-1.437568 -2.76224,-2.110239 -1.148904,-0.821945 -2.336985,-1.578212 -3.502814,-2.371885 -3.790627,-2.58058 -4.408705,-3.018259 -8.239137,-5.666288 -6.411011,-4.394626 -12.895775,-8.689229 -19.85924,-12.006097 -3.376404,-1.852026 -5.8022878,3.303364 -2.425885,5.15539 z"
|
||||
id="path475"
|
||||
style="fill:#ffffff;stroke-width:0.371007" />
|
||||
<path
|
||||
d="m 51.666223,12.68771 c -0.374228,0.107616 -0.753854,0.195342 -1.122686,0.322828 -2.531584,0.875031 -4.937371,2.087675 -7.306559,3.378522 -3.140119,1.710888 -4.439813,2.547343 -7.640075,4.476113 -7.496149,4.613514 -14.857736,9.47464 -22.249507,14.278718 -3.244648,2.10877 -0.482467,7.062985 2.762179,4.954215 v 0 c 7.342012,-4.771745 14.653975,-9.600239 22.098782,-14.184333 3.167942,-1.911088 4.279706,-2.63278 7.364399,-4.321042 2.06573,-1.13058 4.165801,-2.21153 6.368198,-2.999925 0.271861,-0.09732 0.55224,-0.164338 0.828364,-0.246508 3.705961,-0.842149 2.602866,-6.500736 -1.103095,-5.658588 z"
|
||||
id="path479"
|
||||
style="fill:#ffffff;stroke-width:0.371007" />
|
||||
<path
|
||||
d="m 9.6540232,20.57979 c -0.135759,3.846417 0.226431,7.687913 0.4008018,11.52699 -0.01707,0.356411 -0.03414,0.712824 -0.05121,1.069238 -0.1542968,4.085494 5.197105,4.321091 5.351402,0.235594 v 0 c 0.0164,-0.529645 0.03279,-1.059289 0.04919,-1.588933 -0.165129,-3.6138 -0.50038,-7.229159 -0.406734,-10.849613 C 15.25504,16.893643 9.9115922,16.500367 9.6540252,20.57979 Z"
|
||||
id="path485"
|
||||
style="fill:#ffffff;stroke-width:0.371007" />
|
||||
<path
|
||||
d="m 50.513752,16.706277 c -0.07474,0.663606 -0.178554,1.324142 -0.224207,1.990815 -0.115153,1.681447 -0.111266,4.144764 -0.103723,5.787053 0.01393,3.030798 0.08955,6.061659 0.152727,9.09158 0.06734,3.040368 0.03545,1.582592 0.09587,4.373322 0.08849,4.087773 5.442881,3.952648 5.354385,-0.135125 v 0 c -0.06043,-2.791162 -0.02857,-1.335043 -0.09576,-4.36836 -0.06218,-2.98151 -0.135593,-5.963793 -0.151389,-8.946148 -0.0093,-1.747207 -0.01066,-3.437859 0.07248,-5.1786 0.01961,-0.41045 0.06619,-0.818879 0.09928,-1.228318 0.907874,-3.969664 -4.291806,-5.355882 -5.199674,-1.38622 z"
|
||||
id="path487"
|
||||
style="fill:#ffffff;stroke-width:0.371007" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
76
arch_check/.config/nlogout/themes/runes/hibernate.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?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"
|
||||
sodipodi:docname="berkana.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="72.894475"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 23.739172,9.8826988 c 0.238361,4.1672202 0.269241,8.3432402 0.39674,12.5144872 0.04476,1.464441 0.10758,2.928274 0.16137,4.39241 0.346656,7.106165 0.858052,14.202671 1.264361,21.305533 0.05416,1.806474 0.253229,3.610266 0.27617,5.418068 0.04366,2.805991 4.011926,2.744251 3.96827,-0.06174 v 0 C 29.773752,51.588525 29.591219,49.729883 29.523915,47.868463 29.119108,40.792523 28.610377,33.722875 28.263351,26.643737 28.210082,25.196835 28.14777,23.750238 28.103545,22.303032 27.972742,18.022644 27.947164,13.736439 27.685462,9.4610739 27.387328,6.6706251 23.441038,7.09225 23.739172,9.8826988 Z"
|
||||
id="path395"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 26.197242,9.5351903 c 0.352586,0.327734 0.679689,0.6852267 1.057759,0.9832027 0.589645,0.464727 1.225983,0.866933 1.839224,1.300048 0.806187,0.569388 1.6188,1.129768 2.419057,1.707462 2.471809,1.784365 4.874362,3.650946 7.261462,5.545948 1.560472,1.304337 3.194129,2.528294 4.657748,3.94352 2.02556,1.942316 4.772409,-0.922261 2.746849,-2.864576 v 0 C 44.615452,18.660904 42.9113,17.331948 41.242004,15.963218 39.245916,14.379292 38.602389,13.848403 36.501147,12.27081 34.294957,10.614423 33.572395,10.115176 31.376692,8.5717011 30.845058,8.1979877 30.321571,7.8121458 29.778509,7.4552433 29.695828,7.400905 29.595804,7.3792536 29.504452,7.3412587 27.953108,5.0027077 24.645898,7.1966393 26.197242,9.5351903 Z"
|
||||
id="path397"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 27.190979,30.153362 c 2.683791,-1.120306 5.450411,-2.034349 8.193574,-2.99689 2.144805,-0.748751 4.294227,-1.484184 6.439741,-2.230887 1.359482,-0.473142 2.70157,-0.977256 4.089575,-1.359232 2.702695,-0.755597 1.634119,-4.577785 -1.068576,-3.822189 v 0 c -0.394464,0.111657 -0.79284,0.210328 -1.183396,0.334971 -1.055217,0.336765 -2.090759,0.73232 -3.136866,1.096397 -2.150443,0.748421 -4.30481,1.485522 -6.454526,2.236042 -2.835469,0.994945 -5.694924,1.940437 -8.466751,3.104249 -2.572129,1.122338 -0.984904,4.759878 1.587225,3.637539 z"
|
||||
id="path399"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 28.796102,32.152451 c 2.780712,1.761908 5.46733,3.670787 8.142777,5.587526 2.514137,1.825982 4.963367,3.738393 7.4333,5.623057 2.231024,1.702356 4.638518,-1.452792 2.407494,-3.155148 v 0 c -2.501715,-1.908889 -4.98252,-3.845814 -7.529698,-5.694333 -2.847549,-2.039382 -5.699271,-4.091123 -8.689998,-5.916339 -2.513933,-1.247248 -4.277808,2.307991 -1.763875,3.555237 z"
|
||||
id="path409"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 29.671599,55.981905 c 3.832752,-1.913019 7.493798,-4.145386 11.157028,-6.359543 2.396379,-1.412844 4.722707,-2.940786 7.118541,-4.354232 2.108618,-1.18935 1.440923,-0.05522 -1.10998,-3.722677 0.007,-0.0122 0.01389,-0.02439 0.02085,-0.03659 -2.155354,1.797201 0.386273,4.845333 2.541627,3.04813 v 0 c 0.110437,-0.09849 0.220872,-0.19698 0.331309,-0.295468 -0.686705,-1.097656 -1.302219,-2.243199 -2.060112,-3.292962 -0.05179,-0.07174 -0.165561,0.06264 -0.246854,0.09757 -0.517025,0.222117 -1.002533,0.513633 -1.49433,0.784301 -2.40702,1.421662 -4.747024,2.953507 -7.154042,4.375439 -3.55588,2.149403 -7.108346,4.318532 -10.826288,6.180452 -2.52832,1.217822 -0.806063,4.793406 1.722257,3.575587 z"
|
||||
id="path411"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
68
arch_check/.config/nlogout/themes/runes/lock.svg
Normal file
@@ -0,0 +1,68 @@
|
||||
<?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"
|
||||
sodipodi:docname="othila.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="72.894475"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 37.599383,9.0777718 c -2.731007,2.6480322 -5.784169,4.9462302 -8.781005,7.2812382 -3.001971,2.292486 -6.10088,4.45686 -9.295304,6.472182 -0.433014,0.266178 -0.863512,0.537433 -1.308771,0.782971 -2.844336,1.579705 -0.610296,5.602205 2.234041,4.0225 v 0 c 0.519096,-0.289546 1.026174,-0.599854 1.530467,-0.914353 3.322158,-2.097371 6.546377,-4.347598 9.66781,-6.733909 3.137994,-2.445633 6.330493,-4.857002 9.185074,-7.635938 2.315553,-2.285589 -0.916756,-5.56028 -3.232312,-3.2746912 z"
|
||||
id="path231"
|
||||
style="fill:#ffffff;stroke-width:0.306749" />
|
||||
<path
|
||||
d="m 18.868861,26.49745 c 3.104812,1.814349 6.167834,3.709274 9.121819,5.762002 0.948035,0.658791 1.875041,1.347339 2.81256,2.021011 5.132091,3.858099 10.000938,8.052442 14.808152,12.30416 1.241106,1.13405 2.487092,2.264312 3.691161,3.438061 0.447063,0.435805 0.834595,0.855608 1.199259,1.356484 0.207286,0.293043 0.203461,0.471682 0.07123,0.04915 0.756837,3.164321 5.231859,2.093992 4.475026,-1.070327 v 0 c -0.177565,-0.629653 -0.472498,-1.205063 -0.860794,-1.733589 -1.5753,-2.076612 -3.654157,-3.694336 -5.527703,-5.486516 -4.924036,-4.354277 -9.911926,-8.649047 -15.172673,-12.594985 -0.978886,-0.702354 -1.94702,-1.419942 -2.936657,-2.107065 -3.099181,-2.151814 -6.311813,-4.142011 -9.577079,-6.030244 -2.893384,-1.487969 -4.99769,2.603893 -2.104306,4.091863 z"
|
||||
id="path233"
|
||||
style="fill:#ffffff;stroke-width:0.306749" />
|
||||
<path
|
||||
d="M 45.893102,13.172439 C 45.298852,12.11699 44.493346,11.207615 43.695144,10.304684 43.041936,9.7019978 41.909949,8.5038833 40.857425,9.5110011 c -0.904967,0.8659249 -0.951246,2.3703959 -1.000308,3.6219479 -0.01816,0.463253 0.534628,0.757769 0.814129,1.127649 0.689864,0.912938 1.412131,1.800934 2.116651,2.70261 0.358861,0.467342 0.718773,0.933878 1.076578,1.402027 0.110952,0.145161 1.494818,1.96399 1.690592,2.230588 0.03027,0.04122 0.580386,0.767647 0.656604,1.008928 0.02755,0.08723 -0.09757,-0.154781 -0.146363,-0.232171 -0.0053,-0.437632 0.114603,-0.895185 -0.01605,-1.312899 -0.04035,-0.129017 -0.212302,0.167545 -0.314504,0.25602 -0.269928,0.233674 -0.52646,0.482857 -0.801687,0.710262 -1.893498,1.564479 -3.926229,2.942851 -5.940162,4.34414 -6.997192,4.711136 -13.947198,9.492954 -20.742917,14.491149 -2.485163,1.897722 -4.982342,3.820161 -7.105021,6.128955 -0.400241,0.432716 -0.7498,0.898856 -1.035429,1.412919 -1.4085592,2.932863 2.739134,4.924867 4.147694,1.992003 v 0 c -0.360503,0.614534 0.184034,-0.27751 0.285102,-0.301804 1.901734,-2.101575 4.210863,-3.789133 6.434091,-5.525593 6.762933,-4.975383 13.682279,-9.731363 20.645476,-14.421413 2.16698,-1.509488 4.359951,-2.992841 6.383738,-4.695341 0.312268,-0.262694 1.768171,-1.551396 1.955814,-1.969278 0.316252,-0.704302 0.374796,-1.497919 0.562191,-2.246878 -0.107515,-0.307557 -0.188137,-0.625887 -0.322574,-0.922671 -0.188055,-0.41516 -0.725741,-1.150892 -0.973898,-1.488868 -0.91585,-1.247344 -1.880651,-2.458667 -2.813584,-3.693043 -1.356051,-1.735489 -0.801561,-1.029156 -2.052439,-2.618448 -0.159545,-0.202709 -0.315993,-0.808057 -0.478828,-0.607979 -0.678959,0.834252 -0.505416,2.30472 -1.394618,2.90993 -2.491049,1.695455 -2.324573,0.297462 -2.238993,-0.460508 0.590294,0.666871 1.203674,1.325893 1.649426,2.102146 1.614285,2.824855 5.609235,0.541914 3.99495,-2.282942 z"
|
||||
id="path235"
|
||||
style="fill:#ffffff;stroke-width:0.306749" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
68
arch_check/.config/nlogout/themes/runes/logout.svg
Normal file
@@ -0,0 +1,68 @@
|
||||
<?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"
|
||||
sodipodi:docname="teiwaz.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="70.037332"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 27.494888,17.12983 c -0.36372,1.788629 -0.125322,3.620409 -0.02458,5.421951 0.126201,2.25677 0.116477,2.382134 0.19214,4.694301 0.150651,4.286472 0.02983,8.575969 0.135811,12.862769 0.02395,0.482791 0.04805,0.965573 0.07181,1.448374 0.0467,0.948849 0.08615,1.312257 0.05149,2.2318 -0.03231,0.857269 -0.159515,1.703449 -0.282075,2.550965 -0.399523,2.777746 3.528804,3.342756 3.928324,0.565009 v 0 c 0.147458,-1.030197 0.288838,-2.056347 0.322461,-3.098429 0.0329,-1.019604 -0.0061,-1.433812 -0.05641,-2.447576 -0.02233,-0.449778 -0.0454,-0.899517 -0.0681,-1.349274 -0.108553,-4.297069 0.01897,-8.597173 -0.136712,-12.893908 -0.07831,-2.376394 -0.0682,-2.498866 -0.19797,-4.815422 -0.02387,-0.425967 -0.160242,-2.319813 -0.169243,-2.956878 -0.0087,-0.613557 0.01529,-0.71073 0.07659,-1.224669 0.699339,-2.717796 -3.144205,-3.706809 -3.843544,-0.989013 z"
|
||||
id="path447"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 28.814987,13.778867 c -1.814361,1.518723 -3.521854,3.183648 -5.058839,4.984543 -0.41754,0.489234 -0.807221,1.001574 -1.210831,1.502361 -0.367131,0.514906 -0.750183,1.018823 -1.101393,1.544717 -0.653831,0.979031 -1.483449,2.394943 -2.088106,3.411806 -0.799702,1.344875 -1.600131,2.688538 -2.414765,4.024425 -0.331942,0.562681 -0.705296,1.098298 -1.045688,1.655458 -1.455792,2.399199 1.937188,4.458001 3.39298,2.058802 v 0 c 0.334511,-0.557355 0.719186,-1.082646 1.041212,-1.648103 0.8216,-1.347539 1.629518,-2.70256 2.435798,-4.059319 0.500471,-0.842161 1.368394,-2.320694 1.914213,-3.144899 0.306111,-0.462239 0.640202,-0.905327 0.960303,-1.35799 0.352846,-0.441263 0.692571,-0.893347 1.05854,-1.323789 1.381953,-1.625418 2.917351,-3.128758 4.54339,-4.507701 2.220537,-1.716017 -0.206277,-4.856328 -2.426814,-3.140311 z"
|
||||
id="path449"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 27.693008,17.70486 c 1.37704,1.3615 2.646236,2.825534 3.977241,4.230264 1.193051,1.259135 1.852361,1.885862 3.07867,3.090451 1.398903,1.309066 2.760292,2.657001 4.145325,3.980407 2.029339,1.938367 4.770607,-0.93155 2.741266,-2.86992 v 0 c -1.372312,-1.310314 -2.719681,-2.646535 -4.106021,-3.942342 -1.120558,-1.099798 -1.84668,-1.792912 -2.931522,-2.938044 -1.330204,-1.404129 -2.597608,-2.868587 -3.975267,-4.228109 -1.893133,-2.071603 -4.822822,0.60569 -2.929692,2.677293 z"
|
||||
id="path451"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
72
arch_check/.config/nlogout/themes/runes/reboot.svg
Normal file
@@ -0,0 +1,72 @@
|
||||
<?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"
|
||||
sodipodi:docname="jera.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="70.037332"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 30.034113,15.067052 c 3.366437,2.699366 6.750698,5.375975 10.108009,8.086808 3.004416,2.437863 6.006793,4.878217 9.031727,7.290619 0.553781,0.435893 0.298413,0.241695 0.762902,0.586783 2.25656,1.668359 4.615977,-1.522902 2.359414,-3.191259 v 0 c -0.363207,-0.266644 -0.14537,-0.103029 -0.64779,-0.498377 -3.018708,-2.407397 -6.014767,-4.842853 -9.013028,-7.275615 -3.405534,-2.749695 -6.836503,-5.467094 -10.255319,-8.200155 -2.263587,-1.658813 -4.609502,1.542383 -2.345915,3.201196 z"
|
||||
id="path325"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 49.215815,27.599716 c -2.069082,0.813676 -4.101825,1.716067 -6.169308,2.534108 -1.996213,0.789842 -2.674186,1.022898 -4.698095,1.763519 -3.52833,1.265225 -7.098332,2.408008 -10.678351,3.516601 -1.003887,0.270518 -1.974619,0.644822 -2.962214,0.964504 -2.665938,0.876507 -1.42637,4.646711 1.239568,3.770204 v 0 c 0.963657,-0.319987 1.916371,-0.673888 2.896645,-0.943573 3.643952,-1.128445 7.27752,-2.29231 10.86862,-3.580841 3.628218,-1.328592 7.216595,-2.751778 10.772214,-4.264147 2.658986,-0.897374 1.389906,-4.657749 -1.269079,-3.760375 z"
|
||||
id="path327"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="M 34.245528,25.769936 C 29.630296,27.382869 25.0394,29.061005 20.47148,30.803418 16.945471,32.216944 13.4157,33.641395 9.9864848,35.280057 9.8052431,35.38483 9.6240017,35.489605 9.44276,35.594377 c -2.4110987,1.435999 -0.3802901,4.845807 2.030808,3.40981 v 0 c 0.07542,-0.04809 0.150833,-0.09617 0.22625,-0.144262 3.32928,-1.596194 6.763277,-2.969945 10.186217,-4.348406 4.618595,-1.762032 9.264268,-3.447513 13.92484,-5.094576 2.578825,-1.106868 1.013476,-4.753876 -1.565347,-3.647007 z"
|
||||
id="path329"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 9.0680065,40.366558 c 4.1759935,1.179309 8.2966815,2.544249 12.4238145,3.881818 6.774354,2.222252 13.567185,4.387443 20.386577,6.467388 1.725456,0.485775 3.423592,1.075108 5.160383,1.521127 2.720091,0.690356 3.696401,-3.156435 0.976309,-3.846791 v 0 C 46.336505,47.971662 44.704809,47.373243 43.036198,46.919649 36.238759,44.846507 29.467921,42.687999 22.715392,40.47295 18.552539,39.123831 14.396012,37.747717 10.183965,36.557934 7.4908615,35.768833 6.374903,39.577454 9.0680065,40.366558 Z"
|
||||
id="path331"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
68
arch_check/.config/nlogout/themes/runes/shutdown.svg
Normal file
@@ -0,0 +1,68 @@
|
||||
<?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"
|
||||
sodipodi:docname="ansuz.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="72.894475"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 29.237506,8.1112585 c -0.116616,0.4434458 -0.261654,0.8803758 -0.349846,1.3303378 -0.440214,2.2460057 -0.49227,4.6452217 -0.59367,6.9221767 -0.08847,1.986593 -0.17854,5.039925 -0.239444,6.949155 -0.228642,7.557035 -0.295814,15.117525 -0.326819,22.677541 0.005,2.628911 -0.04524,5.25729 -0.08877,7.885668 -0.04645,2.805946 3.921751,2.871642 3.968206,0.0657 v 0 c 0.04377,-2.644854 0.09423,-5.289708 0.08928,-7.935097 0.03082,-7.523263 0.09745,-15.047 0.324835,-22.567302 0.06105,-1.914947 0.148459,-4.88033 0.236144,-6.870287 0.06945,-1.576212 0.152014,-3.281241 0.31332,-4.860613 0.0646,-0.632499 0.183215,-1.25855 0.249963,-1.8909187 1.206576,-2.5337049 -2.376623,-4.2400618 -3.5832,-1.7063568 z"
|
||||
id="path267"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 29.352111,8.6622153 c 3.163121,2.8634607 6.263294,5.7936937 9.360792,8.7277537 2.141847,2.042042 1.127519,1.036653 3.050813,3.008242 1.96089,2.007586 4.800044,-0.76553 2.839156,-2.773116 v 0 c -2.02752,-2.07335 -0.975423,-1.033047 -3.160691,-3.116448 -3.055729,-2.89447 -6.107799,-5.7922637 -9.238177,-8.6064466 -1.951626,-2.0165927 -4.803518,0.7434223 -2.851893,2.7600149 z"
|
||||
id="path269"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 27.989935,24.478505 c 3.002799,2.051077 5.958867,4.165045 8.867242,6.347768 0.426772,0.324191 0.853543,0.648385 1.280316,0.972576 2.234715,1.697506 4.635351,-1.46286 2.400636,-3.160366 v 0 c -0.432949,-0.328858 -0.8659,-0.657714 -1.298848,-0.986573 -2.922386,-2.1928 -5.8904,-4.32002 -8.908992,-6.37867 -2.266465,-1.65488 -4.606818,1.550385 -2.340354,3.205265 z"
|
||||
id="path271"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
76
arch_check/.config/nlogout/themes/runes/suspend.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<?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"
|
||||
sodipodi:docname="mannaz.svg"
|
||||
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||
width="64mm"
|
||||
height="64mm"
|
||||
viewBox="0 0 64 64"
|
||||
version="1.1"
|
||||
id="SVGRoot">
|
||||
<defs
|
||||
id="defs18" />
|
||||
<sodipodi:namedview
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-height="1021"
|
||||
inkscape:window-width="1920"
|
||||
showgrid="false"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:cy="72.894475"
|
||||
inkscape:cx="57.482729"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
borderopacity="1.0"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#000000"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata21">
|
||||
<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
|
||||
id="layer1"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1">
|
||||
<path
|
||||
d="m 15.349618,8.8757633 c -0.01,0.2154671 -0.03488,0.4307625 -0.02987,0.6464014 0.04302,1.8517023 0.329752,3.6922823 0.509717,5.5325643 0.246904,2.524783 0.237074,2.716021 0.401193,5.281797 0.209938,5.039338 0.265479,10.08374 0.366063,15.126166 -0.01339,1.656919 0.180548,3.322331 0.01337,4.976456 -0.05044,0.499099 -0.135429,0.932166 -0.221863,1.424889 -0.337491,1.817899 -0.505384,3.657733 -0.560864,5.504056 -0.02325,1.152649 -0.01747,2.305645 -9.79e-4,3.458337 0.01058,0.611714 -0.01871,0.145664 0.38081,1.34816 1.522602,2.357364 4.85642,0.204079 3.333818,-2.153285 v 0 c 0.274746,1.014151 0.262907,1.277255 0.253715,0.748271 -0.01574,-1.095814 -0.0215,-2.191911 -2.35e-4,-3.287702 0.04489,-1.657942 0.201923,-3.309236 0.504416,-4.941347 0.118625,-0.693685 0.206096,-1.130525 0.271582,-1.843913 0.162291,-1.767941 0.0016,-3.542668 -0.0058,-5.313074 C 20.462934,30.282735 20.40765,25.179866 20.19126,20.082324 20.019129,17.409194 20.03174,17.25217 19.775078,14.626799 19.547588,12.299826 19.550135,12.779626 19.358124,10.673259 19.27155,9.7235444 19.278159,9.9449072 19.295802,9.2983862 19.594641,6.5080131 15.648457,6.0853899 15.349618,8.8757633 Z"
|
||||
id="path293"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 17.102215,12.156318 c 0.06689,0.04215 0.128562,0.09406 0.200687,0.126457 0.339737,0.152623 0.692878,0.274213 1.032334,0.427461 1.13407,0.511982 2.837418,1.357009 3.886748,1.917278 1.887305,1.007689 3.682573,2.062963 5.537177,3.131399 4.136824,2.438458 8.307901,4.817055 12.498136,7.16219 1.238242,0.702085 0.737222,0.366116 1.541589,0.947927 2.298859,1.609577 4.575146,-1.641499 2.276287,-3.251076 v 0 C 42.940077,21.838888 43.562202,22.23265 42.195558,21.457849 38.019557,19.120701 33.862752,16.750048 29.740014,14.319843 27.105968,12.802968 24.483162,11.277596 21.752817,9.9378862 20.957798,9.547792 19.436249,8.8146985 18.502404,8.4996321 18.123808,8.3718992 17.729535,8.2964673 17.343101,8.1948848 14.541945,8.0245524 14.301059,11.985985 17.102215,12.156318 Z"
|
||||
id="path295"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 22.15757,28.400826 c 2.957475,-1.440275 5.969059,-2.761287 8.88163,-4.294726 0.992302,-0.522437 1.970556,-1.071132 2.955833,-1.606698 4.218389,-2.384969 8.409487,-4.824232 12.48188,-7.452349 1.269222,-0.859549 2.516441,-1.760041 3.671996,-2.769181 C 52.259456,10.428255 49.6437,7.4434914 47.533156,9.2931083 v 0 c -1.005959,0.8859247 -2.105253,1.6618767 -3.20875,2.4196247 -3.988099,2.57544 -8.095107,4.961711 -12.225539,7.300192 -2.455801,1.336369 -3.042156,1.689708 -5.491397,2.894923 -2.088724,1.027813 -4.236792,1.931528 -6.311522,2.987933 -2.478441,1.316366 -0.616819,4.82141 1.861622,3.505045 z"
|
||||
id="path297"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 46.527086,11.227162 c -0.30693,3.461095 -0.436388,6.934749 -0.616101,10.404263 -0.191995,3.627097 -0.417536,7.253834 -0.522804,10.884955 -0.03793,1.308375 -0.07624,4.105857 -0.09591,5.386826 -0.07117,3.718616 -0.174393,7.436538 -0.282811,11.154228 -0.0818,2.805136 3.885258,2.920825 3.967062,0.115686 v 0 c 0.108948,-3.735948 0.212654,-7.472132 0.28403,-11.209015 0.0182,-1.186796 0.05799,-4.068452 0.09351,-5.297042 0.104462,-3.612915 0.329543,-7.221435 0.52035,-10.830343 0.179951,-3.474194 0.31128,-6.952154 0.616792,-10.418039 0.135424,-2.8030608 -3.828701,-2.9945797 -3.964125,-0.191519 z"
|
||||
id="path301"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
<path
|
||||
d="m 41.341282,25.414248 c 0.536519,0.445308 1.104399,0.84314 1.71541,1.178635 0.29614,0.156235 0.607025,0.280777 0.907015,0.429018 0.07133,0.0377 0.241604,0.134377 0.250738,0.139674 0.08194,0.06222 0.221311,0.1445 0.266067,0.172834 0.02141,0.01482 0.06759,0.05013 0.07752,0.05769 -0.02223,-0.01712 -0.04335,-0.03559 -0.06468,-0.05378 2.111152,1.848924 4.725926,-1.136697 2.614771,-2.985621 v 0 c -0.0315,-0.02695 -0.06294,-0.05399 -0.09571,-0.07941 -0.108996,-0.08528 -0.220872,-0.166855 -0.335484,-0.244436 -0.04756,-0.03077 -0.09481,-0.062 -0.142669,-0.0923 -0.01982,-0.01254 -0.07491,-0.05453 -0.0603,-0.0362 0.01783,0.02238 0.04673,0.03302 0.07048,0.04898 0.06297,0.0423 -0.24855,-0.173986 -0.18772,-0.128661 -0.209126,-0.131978 -0.426667,-0.249379 -0.646472,-0.362559 -0.252304,-0.123075 -0.508619,-0.237032 -0.763265,-0.354897 -0.385058,-0.202391 -0.726498,-0.465701 -1.065035,-0.737901 -2.15592,-1.796523 -4.696587,1.252409 -2.540666,3.048932 z"
|
||||
id="path305"
|
||||
style="fill:#ffffff;stroke-width:0.264583" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.0 KiB |
93
arch_check/.config/nlogout/themes/sardi-blood/cancel.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?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"
|
||||
height="128"
|
||||
viewBox="0 0 512 512"
|
||||
width="128"
|
||||
version="1.1"
|
||||
id="svg26"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="0.92.1 r">
|
||||
<metadata
|
||||
id="metadata32">
|
||||
<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>
|
||||
<defs
|
||||
id="defs30" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1023"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.32593203"
|
||||
inkscape:cx="-8.2925809"
|
||||
inkscape:cy="-53.001638"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg26" />
|
||||
<path
|
||||
style="fill:#CF0808;fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2"
|
||||
d="m 471.95,253.05 c 0,120.9 -98.01,218.9 -218.9,218.9 -120.9,0 -218.9,-98.01 -218.9,-218.9 0,-120.9 98.01,-218.9 218.9,-218.9 120.9,0 218.9,98.01 218.9,218.9" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 382.91525,126.91525 92.28899,105.52458 c 3.40059,83.78873 -33.0988,156.50389 -86.86526,191.69576 -51.21945,38.82842 -108.60088,53.0089 -171.38983,45.55933 l -86.77966,-84.61017 z"
|
||||
id="path4518"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
fill-rule="evenodd"
|
||||
id="g18">
|
||||
<path
|
||||
d="m256 1c-140.83 0-255 114.17-255 255s114.17 255 255 255 255-114.17 255-255-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
fill-opacity=".067"
|
||||
id="path8" />
|
||||
<g
|
||||
fill-opacity=".129"
|
||||
id="g14">
|
||||
<path
|
||||
d="m256 4.433c-138.94 0-251.57 112.63-251.57 251.57s112.63 251.57 251.57 251.57 251.57-112.63 251.57-251.57-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m256 8.356c-136.77 0-247.64 110.87-247.64 247.64s110.87 247.64 247.64 247.64 247.64-110.87 247.64-247.64-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path12" />
|
||||
</g>
|
||||
<path
|
||||
d="m253.04 7.859c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9z"
|
||||
fill="#ffffff"
|
||||
stroke="#000000"
|
||||
stroke-opacity=".31"
|
||||
stroke-width="4.904"
|
||||
id="path16" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:#ffffff;stroke-width:34.58610153;stroke:none;fill-opacity:1"
|
||||
class="ColorScheme-Text"
|
||||
d="m 359.84183,117.49355 a 34.586102,34.586102 0 0 0 -24.45341,10.1327 l -79.3049,79.30489 -78.96699,-78.96699 a 34.586102,34.586102 0 0 0 -0.34586,-0.34586 34.586102,34.586102 0 0 0 -24.25074,-9.99746 l -0.34586,0.47383 a 34.586102,34.586102 0 0 0 -34.58609,34.5861 34.586102,34.586102 0 0 0 10.13268,24.45342 l 79.3049,79.30489 -79.3049,79.3049 a 34.586102,34.586102 0 0 0 -9.99746,24.18328 34.586102,34.586102 0 0 0 34.5861,34.58611 34.586102,34.586102 0 0 0 24.45342,-10.13269 l 79.30489,-79.30489 78.96699,78.96698 a 34.586102,34.586102 0 0 0 24.79132,10.4706 34.586102,34.586102 0 0 0 34.5861,-34.58611 34.586102,34.586102 0 0 0 -10.13269,-24.4534 l -79.57501,-79.50756 78.96698,-78.967 a 34.586102,34.586102 0 0 0 10.74072,-24.92655 34.586102,34.586102 0 0 0 -34.5861,-34.5861 z"
|
||||
id="path5" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
18
arch_check/.config/nlogout/themes/sardi-blood/hibernate.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
11
arch_check/.config/nlogout/themes/sardi-blood/lock.svg
Normal file
|
After Width: | Height: | Size: 11 KiB |
13
arch_check/.config/nlogout/themes/sardi-blood/logout.svg
Normal file
|
After Width: | Height: | Size: 13 KiB |
13
arch_check/.config/nlogout/themes/sardi-blood/reboot.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg height="128" viewBox="0 0 512 512" width="128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m471.95 253.05c0 120.9-98.01 218.9-218.9 218.9-120.9 0-218.9-98.01-218.9-218.9 0-120.9 98.01-218.9 218.9-218.9 120.9 0 218.9 98.01 218.9 218.9" fill="#CF0808" fill-rule="evenodd"/>
|
||||
<path d="m365.5 129.28c-9.884 1.237-17.616 16.99-28.563 23.563-14.965-5.137-38.36-17.864-58.906-19.531-9.17-2.426-17.936-2.908-27.375-2.844l1.438 1.063c-62.58-1.771-114.06 44.913-122.87 106.56-7.462 43.98 12.63 78.55 37.5 116.44 38.539 38.432 76.953 77 115.44 115.5 50.02-6.646 96.3-29.11 129.73-63.62-2.771-2.77 8.566.529 5.795-2.241 7.528-6.913 4.21-19.459 12.536-17.567 27.759-36.69 41.719-83.99 41.719-133.54 0-6.134-.255-12.212-.75-18.219-35.28-35.22-70.61-70.41-105.69-105.56" fill-opacity=".235"/>
|
||||
<g fill-rule="evenodd" transform="translate(0 -540.36)">
|
||||
<path d="m256 541.36c-140.83 0-255 114.17-255 255 0 140.83 114.17 255 255 255 140.83 0 255-114.17 255-255 0-140.83-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9" fill-opacity=".067"/>
|
||||
<g fill-opacity=".129">
|
||||
<path d="m256 544.79c-138.94 0-251.57 112.63-251.57 251.57 0 138.94 112.63 251.54 251.57 251.54 138.94 0 251.57-112.6 251.57-251.54 0-138.94-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9"/>
|
||||
<path d="m256 548.72c-136.77 0-247.64 110.87-247.64 247.64 0 136.77 110.87 247.64 247.64 247.64 136.77 0 247.64-110.87 247.64-247.64 0-136.77-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9"/>
|
||||
</g>
|
||||
<path d="m253.04 548.22c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9z" fill="#ffffff" stroke="#000000" stroke-opacity=".31" stroke-width="4.904"/>
|
||||
</g>
|
||||
<path d="m177.98 363.93c8.153 5.49 14.14 8.751 23.899 13.02 4.438 1.94 19.1 6.486 24.26 7.523 8.558 1.719 18.356 2.754 26.24 2.772 7.638.017 22.22-1.649 29.61-3.384 4.889-1.148 20.862-6.544 24.694-8.343 14.665-6.883 23.16-12.584 33.02-22.17l7.629-7.411-.262-2.045c-.248-1.931-1.159-2.941-16.413-18.2-14.629-14.629-16.315-16.17-17.897-16.303-2.471-.215-5.079.982-7.607 3.491-3.959 3.93-14.308 10.879-19.713 13.237-4.04 1.762-14.911 5.295-16.888 5.488-1.274.124-3.885.526-5.802.892-6.699 1.28-22.06.493-28.789-1.476-.786-.23-2.889-.826-4.674-1.325-12.743-3.56-28.397-14.176-36.927-25.04-6.28-7.999-11.694-18.07-13.832-25.718-.499-1.785-1.091-3.893-1.316-4.683-.941-3.302-1.993-12.25-2.077-17.66-.082-5.301 1.045-15.835 2.069-19.335.23-.785.826-2.889 1.325-4.674 2.787-9.975 10.748-23.286 18.85-31.518 3.569-3.626 13.2-10.891 16.646-12.557 1.465-.708 2.929-1.546 3.253-1.863.892-.872 11.567-4.846 16.664-6.204 3.527-.94 12.147-2.122 12.548-1.721.241.241.639.237.884-.008.808-.808 12.643-.309 18.14.766 2.968.58 5.932 1.071 6.588 1.092.656.021 1.392.239 1.637.483.245.245 1.362.636 2.484.87 1.122.234 3.054.882 4.295 1.44 6.292 2.833 12.406 6.05 14.394 7.566l2.223 1.699-14.173 14.173c-10.816 10.816-14.224 14.505-14.391 15.577-.12.772.525 2.377 1.433 3.567 1.374 1.8 2.359 2.357 5.873 3.324 36.35 7.178 64.12 12.727 103.29 20.508 5.159 1.447 7.303 1.184 9.674-1.187 2.816-2.816 2.778-3.861-.688-19.11l-18.788-94.06c-.98-3.256-1.655-4.421-3.299-5.687-1.137-.876-2.699-1.494-3.471-1.374-1.065.165-4.555 3.369-14.467 13.281l-13.06 13.06-2.631-2.631c-4.79-4.79-21.2-14.336-30.81-17.918-8.626-3.216-11.513-4.142-18.17-5.827-4.051-1.025-7.596-1.841-7.878-1.812-.282.029-2.579-.358-5.103-.858-5.975-1.185-30.1-1.192-36.01-.01-2.529.506-4.864.88-5.187.831-1.118-.169-12.556 2.896-18.622 4.99-3.349 1.156-6.917 2.372-7.93 2.701-3.833 1.248-18.931 9.505-24.971 13.657-5.346 3.675-8 6.04-17.704 15.753-12.05 12.07-16.701 17.934-21.372 26.969-1.061 2.051-2.237 4.04-2.614 4.415-.587.587-2.078 3.706-4.254 8.899-.902 2.151-5.932 16.935-6.561 19.28-2.545 9.493-4.199 23.24-4.083 33.929.08 7.318 1.497 21.22 2.453 24.08.33.987.662 2.427.737 3.2.233 2.407 5.486 18.776 7.473 23.287 3.512 7.971 6.765 13.823 12.276 22.09 4.121 6.179 5.563 7.813 16.442 18.629 9.835 9.778 12.891 12.506 17.44 15.569" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
13
arch_check/.config/nlogout/themes/sardi-blood/shutdown.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg height="128" viewBox="0 0 512 512" width="128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m471.95 253.05c0 120.9-98.01 218.9-218.9 218.9-120.9 0-218.9-98.01-218.9-218.9 0-120.9 98.01-218.9 218.9-218.9 120.9 0 218.9 98.01 218.9 218.9" fill="#CF0808" fill-rule="evenodd"/>
|
||||
<path d="m280.66 105.97c-4.603.819-13.264.767-19.469.031h-30.19c-.084 10.703.168 21.614-.125 32.19-24.606-25.938-.032.017-24.656-26.16-2.384 4.225-18.12 9.703-26.906 14.844-59.988 35.792-89.24 114.39-64.28 179.63 11.629 35.764 39.593 61.961 69.03 83.63 55.25 57.46 72.39 75.25 78.56 81.59 111.09-4.786 200.71-92.34 208.72-202.56-77.95-86.62 22.13 23.862-109.94-122.22-14.227-11.361-43.21-33.34-54.16-30.656-.783 4.269.537 14.91-1.813 14.906-24.492-25.17-16.627-17.232-24.781-25.22" fill-opacity=".235"/>
|
||||
<g fill-rule="evenodd" transform="translate(0 -540.36)">
|
||||
<path d="m256 541.36c-140.83 0-255 114.17-255 255s114.17 255 255 255 255-114.17 255-255-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9" fill-opacity=".067"/>
|
||||
<g fill-opacity=".129">
|
||||
<path d="m256 544.79c-138.94 0-251.57 112.63-251.57 251.57s112.63 251.54 251.57 251.54 251.57-112.6 251.57-251.54-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"/>
|
||||
<path d="m256 548.72c-136.77 0-247.64 110.87-247.64 247.64s110.87 247.64 247.64 247.64 247.64-110.87 247.64-247.64-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"/>
|
||||
</g>
|
||||
<path d="m253.04 548.22c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9z" fill="#ffffff" stroke="#000000" stroke-opacity=".31" stroke-width="4.904"/>
|
||||
</g>
|
||||
<path d="m231 106v151.41h50v-151.41zm-25 5.906c-58.28 20.771-100 76.8-100 142.72 0 83.6 67.16 151.38 150 151.38s150-67.775 150-151.37c0-65.921-41.724-121.95-100-142.72v55.969c29.846 17.457 50 49.43 50 86.75 0 55.733-44.775 100.91-100 100.91-55.22 0-100-45.17-100-100.91 0-37.32 20.15-69.29 50-86.75v-55.969" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
18
arch_check/.config/nlogout/themes/sardi-blood/suspend.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
24
arch_check/.config/nlogout/themes/sardi-blood/switch.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
93
arch_check/.config/nlogout/themes/sardi-blue/cancel.svg
Normal file
@@ -0,0 +1,93 @@
|
||||
<?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"
|
||||
height="128"
|
||||
viewBox="0 0 512 512"
|
||||
width="128"
|
||||
version="1.1"
|
||||
id="svg26"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="0.92.1 r">
|
||||
<metadata
|
||||
id="metadata32">
|
||||
<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>
|
||||
<defs
|
||||
id="defs30" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1023"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.32593203"
|
||||
inkscape:cx="-8.2925809"
|
||||
inkscape:cy="-53.001638"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg26" />
|
||||
<path
|
||||
style="fill:#1793d1;fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2"
|
||||
d="m 471.95,253.05 c 0,120.9 -98.01,218.9 -218.9,218.9 -120.9,0 -218.9,-98.01 -218.9,-218.9 0,-120.9 98.01,-218.9 218.9,-218.9 120.9,0 218.9,98.01 218.9,218.9" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 382.91525,126.91525 92.28899,105.52458 c 3.40059,83.78873 -33.0988,156.50389 -86.86526,191.69576 -51.21945,38.82842 -108.60088,53.0089 -171.38983,45.55933 l -86.77966,-84.61017 z"
|
||||
id="path4518"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
fill-rule="evenodd"
|
||||
id="g18">
|
||||
<path
|
||||
d="m256 1c-140.83 0-255 114.17-255 255s114.17 255 255 255 255-114.17 255-255-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
fill-opacity=".067"
|
||||
id="path8" />
|
||||
<g
|
||||
fill-opacity=".129"
|
||||
id="g14">
|
||||
<path
|
||||
d="m256 4.433c-138.94 0-251.57 112.63-251.57 251.57s112.63 251.57 251.57 251.57 251.57-112.63 251.57-251.57-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m256 8.356c-136.77 0-247.64 110.87-247.64 247.64s110.87 247.64 247.64 247.64 247.64-110.87 247.64-247.64-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path12" />
|
||||
</g>
|
||||
<path
|
||||
d="m253.04 7.859c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9z"
|
||||
fill="#ffffff"
|
||||
stroke="#000000"
|
||||
stroke-opacity=".31"
|
||||
stroke-width="4.904"
|
||||
id="path16" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:#ffffff;stroke-width:34.58610153;stroke:none;fill-opacity:1"
|
||||
class="ColorScheme-Text"
|
||||
d="m 359.84183,117.49355 a 34.586102,34.586102 0 0 0 -24.45341,10.1327 l -79.3049,79.30489 -78.96699,-78.96699 a 34.586102,34.586102 0 0 0 -0.34586,-0.34586 34.586102,34.586102 0 0 0 -24.25074,-9.99746 l -0.34586,0.47383 a 34.586102,34.586102 0 0 0 -34.58609,34.5861 34.586102,34.586102 0 0 0 10.13268,24.45342 l 79.3049,79.30489 -79.3049,79.3049 a 34.586102,34.586102 0 0 0 -9.99746,24.18328 34.586102,34.586102 0 0 0 34.5861,34.58611 34.586102,34.586102 0 0 0 24.45342,-10.13269 l 79.30489,-79.30489 78.96699,78.96698 a 34.586102,34.586102 0 0 0 24.79132,10.4706 34.586102,34.586102 0 0 0 34.5861,-34.58611 34.586102,34.586102 0 0 0 -10.13269,-24.4534 l -79.57501,-79.50756 78.96698,-78.967 a 34.586102,34.586102 0 0 0 10.74072,-24.92655 34.586102,34.586102 0 0 0 -34.5861,-34.5861 z"
|
||||
id="path5" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
18
arch_check/.config/nlogout/themes/sardi-blue/hibernate.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
11
arch_check/.config/nlogout/themes/sardi-blue/lock.svg
Normal file
|
After Width: | Height: | Size: 11 KiB |
13
arch_check/.config/nlogout/themes/sardi-blue/logout.svg
Normal file
|
After Width: | Height: | Size: 13 KiB |
13
arch_check/.config/nlogout/themes/sardi-blue/reboot.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg height="128" viewBox="0 0 512 512" width="128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m471.95 253.05c0 120.9-98.01 218.9-218.9 218.9-120.9 0-218.9-98.01-218.9-218.9 0-120.9 98.01-218.9 218.9-218.9 120.9 0 218.9 98.01 218.9 218.9" fill="#1793d1" fill-rule="evenodd"/>
|
||||
<path d="m365.5 129.28c-9.884 1.237-17.616 16.99-28.563 23.563-14.965-5.137-38.36-17.864-58.906-19.531-9.17-2.426-17.936-2.908-27.375-2.844l1.438 1.063c-62.58-1.771-114.06 44.913-122.87 106.56-7.462 43.98 12.63 78.55 37.5 116.44 38.539 38.432 76.953 77 115.44 115.5 50.02-6.646 96.3-29.11 129.73-63.62-2.771-2.77 8.566.529 5.795-2.241 7.528-6.913 4.21-19.459 12.536-17.567 27.759-36.69 41.719-83.99 41.719-133.54 0-6.134-.255-12.212-.75-18.219-35.28-35.22-70.61-70.41-105.69-105.56" fill-opacity=".235"/>
|
||||
<g fill-rule="evenodd" transform="translate(0 -540.36)">
|
||||
<path d="m256 541.36c-140.83 0-255 114.17-255 255 0 140.83 114.17 255 255 255 140.83 0 255-114.17 255-255 0-140.83-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9" fill-opacity=".067"/>
|
||||
<g fill-opacity=".129">
|
||||
<path d="m256 544.79c-138.94 0-251.57 112.63-251.57 251.57 0 138.94 112.63 251.54 251.57 251.54 138.94 0 251.57-112.6 251.57-251.54 0-138.94-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9"/>
|
||||
<path d="m256 548.72c-136.77 0-247.64 110.87-247.64 247.64 0 136.77 110.87 247.64 247.64 247.64 136.77 0 247.64-110.87 247.64-247.64 0-136.77-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9"/>
|
||||
</g>
|
||||
<path d="m253.04 548.22c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9 0 120.9-98 218.9-218.9 218.9-120.9 0-218.93-98-218.93-218.9 0-120.9 98.03-218.9 218.93-218.9z" fill="#ffffff" stroke="#000000" stroke-opacity=".31" stroke-width="4.904"/>
|
||||
</g>
|
||||
<path d="m177.98 363.93c8.153 5.49 14.14 8.751 23.899 13.02 4.438 1.94 19.1 6.486 24.26 7.523 8.558 1.719 18.356 2.754 26.24 2.772 7.638.017 22.22-1.649 29.61-3.384 4.889-1.148 20.862-6.544 24.694-8.343 14.665-6.883 23.16-12.584 33.02-22.17l7.629-7.411-.262-2.045c-.248-1.931-1.159-2.941-16.413-18.2-14.629-14.629-16.315-16.17-17.897-16.303-2.471-.215-5.079.982-7.607 3.491-3.959 3.93-14.308 10.879-19.713 13.237-4.04 1.762-14.911 5.295-16.888 5.488-1.274.124-3.885.526-5.802.892-6.699 1.28-22.06.493-28.789-1.476-.786-.23-2.889-.826-4.674-1.325-12.743-3.56-28.397-14.176-36.927-25.04-6.28-7.999-11.694-18.07-13.832-25.718-.499-1.785-1.091-3.893-1.316-4.683-.941-3.302-1.993-12.25-2.077-17.66-.082-5.301 1.045-15.835 2.069-19.335.23-.785.826-2.889 1.325-4.674 2.787-9.975 10.748-23.286 18.85-31.518 3.569-3.626 13.2-10.891 16.646-12.557 1.465-.708 2.929-1.546 3.253-1.863.892-.872 11.567-4.846 16.664-6.204 3.527-.94 12.147-2.122 12.548-1.721.241.241.639.237.884-.008.808-.808 12.643-.309 18.14.766 2.968.58 5.932 1.071 6.588 1.092.656.021 1.392.239 1.637.483.245.245 1.362.636 2.484.87 1.122.234 3.054.882 4.295 1.44 6.292 2.833 12.406 6.05 14.394 7.566l2.223 1.699-14.173 14.173c-10.816 10.816-14.224 14.505-14.391 15.577-.12.772.525 2.377 1.433 3.567 1.374 1.8 2.359 2.357 5.873 3.324 36.35 7.178 64.12 12.727 103.29 20.508 5.159 1.447 7.303 1.184 9.674-1.187 2.816-2.816 2.778-3.861-.688-19.11l-18.788-94.06c-.98-3.256-1.655-4.421-3.299-5.687-1.137-.876-2.699-1.494-3.471-1.374-1.065.165-4.555 3.369-14.467 13.281l-13.06 13.06-2.631-2.631c-4.79-4.79-21.2-14.336-30.81-17.918-8.626-3.216-11.513-4.142-18.17-5.827-4.051-1.025-7.596-1.841-7.878-1.812-.282.029-2.579-.358-5.103-.858-5.975-1.185-30.1-1.192-36.01-.01-2.529.506-4.864.88-5.187.831-1.118-.169-12.556 2.896-18.622 4.99-3.349 1.156-6.917 2.372-7.93 2.701-3.833 1.248-18.931 9.505-24.971 13.657-5.346 3.675-8 6.04-17.704 15.753-12.05 12.07-16.701 17.934-21.372 26.969-1.061 2.051-2.237 4.04-2.614 4.415-.587.587-2.078 3.706-4.254 8.899-.902 2.151-5.932 16.935-6.561 19.28-2.545 9.493-4.199 23.24-4.083 33.929.08 7.318 1.497 21.22 2.453 24.08.33.987.662 2.427.737 3.2.233 2.407 5.486 18.776 7.473 23.287 3.512 7.971 6.765 13.823 12.276 22.09 4.121 6.179 5.563 7.813 16.442 18.629 9.835 9.778 12.891 12.506 17.44 15.569" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
13
arch_check/.config/nlogout/themes/sardi-blue/shutdown.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg height="128" viewBox="0 0 512 512" width="128" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m471.95 253.05c0 120.9-98.01 218.9-218.9 218.9-120.9 0-218.9-98.01-218.9-218.9 0-120.9 98.01-218.9 218.9-218.9 120.9 0 218.9 98.01 218.9 218.9" fill="#1793d1" fill-rule="evenodd"/>
|
||||
<path d="m280.66 105.97c-4.603.819-13.264.767-19.469.031h-30.19c-.084 10.703.168 21.614-.125 32.19-24.606-25.938-.032.017-24.656-26.16-2.384 4.225-18.12 9.703-26.906 14.844-59.988 35.792-89.24 114.39-64.28 179.63 11.629 35.764 39.593 61.961 69.03 83.63 55.25 57.46 72.39 75.25 78.56 81.59 111.09-4.786 200.71-92.34 208.72-202.56-77.95-86.62 22.13 23.862-109.94-122.22-14.227-11.361-43.21-33.34-54.16-30.656-.783 4.269.537 14.91-1.813 14.906-24.492-25.17-16.627-17.232-24.781-25.22" fill-opacity=".235"/>
|
||||
<g fill-rule="evenodd" transform="translate(0 -540.36)">
|
||||
<path d="m256 541.36c-140.83 0-255 114.17-255 255s114.17 255 255 255 255-114.17 255-255-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9" fill-opacity=".067"/>
|
||||
<g fill-opacity=".129">
|
||||
<path d="m256 544.79c-138.94 0-251.57 112.63-251.57 251.57s112.63 251.54 251.57 251.54 251.57-112.6 251.57-251.54-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"/>
|
||||
<path d="m256 548.72c-136.77 0-247.64 110.87-247.64 247.64s110.87 247.64 247.64 247.64 247.64-110.87 247.64-247.64-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"/>
|
||||
</g>
|
||||
<path d="m253.04 548.22c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9z" fill="#ffffff" stroke="#000000" stroke-opacity=".31" stroke-width="4.904"/>
|
||||
</g>
|
||||
<path d="m231 106v151.41h50v-151.41zm-25 5.906c-58.28 20.771-100 76.8-100 142.72 0 83.6 67.16 151.38 150 151.38s150-67.775 150-151.37c0-65.921-41.724-121.95-100-142.72v55.969c29.846 17.457 50 49.43 50 86.75 0 55.733-44.775 100.91-100 100.91-55.22 0-100-45.17-100-100.91 0-37.32 20.15-69.29 50-86.75v-55.969" fill="#ffffff"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
18
arch_check/.config/nlogout/themes/sardi-blue/suspend.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
24
arch_check/.config/nlogout/themes/sardi-blue/switch.svg
Normal file
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1,93 @@
|
||||
<?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"
|
||||
height="128"
|
||||
viewBox="0 0 512 512"
|
||||
width="128"
|
||||
version="1.1"
|
||||
id="svg26"
|
||||
sodipodi:docname="cancel.svg"
|
||||
inkscape:version="0.92.1 r">
|
||||
<metadata
|
||||
id="metadata32">
|
||||
<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>
|
||||
<defs
|
||||
id="defs30" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1023"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.32593203"
|
||||
inkscape:cx="-8.2925809"
|
||||
inkscape:cy="-53.001638"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg26" />
|
||||
<path
|
||||
style="fill:#82a4b3;fill-rule:evenodd"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2"
|
||||
d="m 471.95,253.05 c 0,120.9 -98.01,218.9 -218.9,218.9 -120.9,0 -218.9,-98.01 -218.9,-218.9 0,-120.9 98.01,-218.9 218.9,-218.9 120.9,0 218.9,98.01 218.9,218.9" />
|
||||
<path
|
||||
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 382.91525,126.91525 92.28899,105.52458 c 3.40059,83.78873 -33.0988,156.50389 -86.86526,191.69576 -51.21945,38.82842 -108.60088,53.0089 -171.38983,45.55933 l -86.77966,-84.61017 z"
|
||||
id="path4518"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<g
|
||||
fill-rule="evenodd"
|
||||
id="g18">
|
||||
<path
|
||||
d="m256 1c-140.83 0-255 114.17-255 255s114.17 255 255 255 255-114.17 255-255-114.17-255-255-255m8.827 44.931c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
fill-opacity=".067"
|
||||
id="path8" />
|
||||
<g
|
||||
fill-opacity=".129"
|
||||
id="g14">
|
||||
<path
|
||||
d="m256 4.433c-138.94 0-251.57 112.63-251.57 251.57s112.63 251.57 251.57 251.57 251.57-112.63 251.57-251.57-112.63-251.57-251.57-251.57m5.885 38.556c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path10" />
|
||||
<path
|
||||
d="m256 8.356c-136.77 0-247.64 110.87-247.64 247.64s110.87 247.64 247.64 247.64 247.64-110.87 247.64-247.64-110.87-247.64-247.64-247.64m2.942 31.691c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9"
|
||||
id="path12" />
|
||||
</g>
|
||||
<path
|
||||
d="m253.04 7.859c-135.42 0-245.19 109.78-245.19 245.19 0 135.42 109.78 245.19 245.19 245.19 135.42 0 245.19-109.78 245.19-245.19 0-135.42-109.78-245.19-245.19-245.19zm0 26.297c120.9 0 218.9 98 218.9 218.9s-98 218.9-218.9 218.9-218.93-98-218.93-218.9 98.03-218.9 218.93-218.9z"
|
||||
fill="#ffffff"
|
||||
stroke="#000000"
|
||||
stroke-opacity=".31"
|
||||
stroke-width="4.904"
|
||||
id="path16" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="opacity:1;fill:#ffffff;stroke-width:34.58610153;stroke:none;fill-opacity:1"
|
||||
class="ColorScheme-Text"
|
||||
d="m 359.84183,117.49355 a 34.586102,34.586102 0 0 0 -24.45341,10.1327 l -79.3049,79.30489 -78.96699,-78.96699 a 34.586102,34.586102 0 0 0 -0.34586,-0.34586 34.586102,34.586102 0 0 0 -24.25074,-9.99746 l -0.34586,0.47383 a 34.586102,34.586102 0 0 0 -34.58609,34.5861 34.586102,34.586102 0 0 0 10.13268,24.45342 l 79.3049,79.30489 -79.3049,79.3049 a 34.586102,34.586102 0 0 0 -9.99746,24.18328 34.586102,34.586102 0 0 0 34.5861,34.58611 34.586102,34.586102 0 0 0 24.45342,-10.13269 l 79.30489,-79.30489 78.96699,78.96698 a 34.586102,34.586102 0 0 0 24.79132,10.4706 34.586102,34.586102 0 0 0 34.5861,-34.58611 34.586102,34.586102 0 0 0 -10.13269,-24.4534 l -79.57501,-79.50756 78.96698,-78.967 a 34.586102,34.586102 0 0 0 10.74072,-24.92655 34.586102,34.586102 0 0 0 -34.5861,-34.5861 z"
|
||||
id="path5" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 10 KiB |
11
arch_check/.config/nlogout/themes/sardi-botticelli/lock.svg
Normal file
|
After Width: | Height: | Size: 11 KiB |