Make flake self-contained - consolidate installer-replication
BREAKING CHANGE: Remove external dots-hyprland dependency - Imported all essential configs from dots-hyprland/installer-replication - Added complete configs/ directory with: - hypr/ - Hyprland configuration - quickshell/ - Quickshell widgets and config - applications/ - Application configurations - scripts/ - Utility scripts - matugen/ - Material You theming - Updated flake.nix to use local ./configs instead of external repo - Simplified update-flake script (removed external repo management) - Updated README to reflect self-contained architecture - All builds pass with local configurations Benefits: - No external repository dependencies - Faster builds (no network dependencies) - Version controlled configs in single repo - Easier maintenance and development - Complete installer replication in one place
@@ -1,17 +1,18 @@
|
|||||||
# dots-hyprland for NixOS
|
# dots-hyprland for NixOS (Self-Contained)
|
||||||
|
|
||||||
A NixOS adaptation of [end-4's dots-hyprland](https://github.com/end-4/dots-hyprland) desktop environment, bringing the beautiful "illogical-impulse" style to NixOS with full declarative configuration.
|
A complete, self-contained NixOS adaptation of [end-4's dots-hyprland](https://github.com/end-4/dots-hyprland) desktop environment, bringing the beautiful "illogical-impulse" style to NixOS with full declarative configuration.
|
||||||
|
|
||||||
## 🎯 Project Status: Phase 3 Complete ✅
|
## 🎯 Project Status: Self-Contained & Complete ✅
|
||||||
|
|
||||||
**Current Achievement: Core Desktop Environment Functional**
|
**Current Achievement: Fully Self-Contained Desktop Environment**
|
||||||
|
|
||||||
- ✅ **Quickshell Integration** - Official flake support resolved
|
- ✅ **Self-Contained**: All configurations included locally (no external dependencies)
|
||||||
|
- ✅ **Quickshell Integration** - Official flake support with local configs
|
||||||
- ✅ **Hyprland Configuration** - Complete window manager setup with Material You theming
|
- ✅ **Hyprland Configuration** - Complete window manager setup with Material You theming
|
||||||
- ✅ **Essential Applications** - foot terminal, fuzzel launcher, nautilus file manager
|
- ✅ **Essential Applications** - foot terminal, fuzzel launcher, nautilus file manager
|
||||||
- ✅ **Home Manager Integration** - Fully declarative configuration
|
- ✅ **Home Manager Integration** - Fully declarative configuration
|
||||||
- ✅ **Package Management** - All dependencies properly integrated
|
- ✅ **Package Management** - All dependencies properly integrated
|
||||||
- ✅ **Development Environment** - Ready for Phase 4 advanced features
|
- ✅ **Development Environment** - Ready for advanced features
|
||||||
|
|
||||||
## 🚀 Quick Start
|
## 🚀 Quick Start
|
||||||
|
|
||||||
@@ -23,16 +24,16 @@ A NixOS adaptation of [end-4's dots-hyprland](https://github.com/end-4/dots-hypr
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
# Clone the repository
|
||||||
git clone <repository-url>
|
git clone git@github.com:celesrenata/end-4-flakes.git
|
||||||
cd dots-hyprland-nixos
|
cd end-4-flakes
|
||||||
|
|
||||||
# Build and activate Home Manager configuration
|
# Build and activate Home Manager configuration
|
||||||
nix build .#homeConfigurations.example.activationPackage
|
nix build .#homeConfigurations.declarative.activationPackage
|
||||||
./result/activate
|
./result/activate
|
||||||
|
|
||||||
# Or use with your existing Home Manager setup
|
# Or use with your existing Home Manager setup
|
||||||
# Add to your flake inputs:
|
# Add to your flake inputs:
|
||||||
# dots-hyprland.url = "github:your-org/dots-hyprland-nixos";
|
# dots-hyprland.url = "github:celesrenata/end-4-flakes";
|
||||||
```
|
```
|
||||||
|
|
||||||
### Development
|
### Development
|
||||||
@@ -42,7 +43,7 @@ nix build .#homeConfigurations.example.activationPackage
|
|||||||
nix develop
|
nix develop
|
||||||
|
|
||||||
# Available development tools:
|
# Available development tools:
|
||||||
# - update-flake: Manage flake inputs and GitHub synchronization
|
# - update-flake: Manage flake inputs
|
||||||
# - compare-modes: Compare declarative vs writable configuration modes
|
# - compare-modes: Compare declarative vs writable configuration modes
|
||||||
# - test-python-env: Test Python virtual environment setup
|
# - test-python-env: Test Python virtual environment setup
|
||||||
# - test-quickshell: Test quickshell configuration
|
# - test-quickshell: Test quickshell configuration
|
||||||
@@ -50,7 +51,6 @@ nix develop
|
|||||||
# Flake management examples:
|
# Flake management examples:
|
||||||
update-flake status # Show current flake status
|
update-flake status # Show current flake status
|
||||||
update-flake update # Update all flake inputs
|
update-flake update # Update all flake inputs
|
||||||
update-flake update-source # Update only dots-hyprland source
|
|
||||||
update-flake verify # Test that configurations build
|
update-flake verify # Test that configurations build
|
||||||
update-flake help # Show all available options
|
update-flake help # Show all available options
|
||||||
```
|
```
|
||||||
@@ -162,25 +162,34 @@ The utility automatically detects synchronization status and provides clear feed
|
|||||||
|
|
||||||
## 🏗️ Architecture
|
## 🏗️ Architecture
|
||||||
|
|
||||||
### Module Structure
|
### Self-Contained Structure
|
||||||
```
|
```
|
||||||
modules/
|
├── flake.nix # Main flake definition (clean & minimal)
|
||||||
├── home-manager.nix # Main Home Manager integration
|
├── flake.lock # Locked dependencies
|
||||||
├── nixos.nix # NixOS system integration
|
├── configs/ # All dots-hyprland configurations
|
||||||
└── components/
|
│ ├── hypr/ # Hyprland configuration
|
||||||
├── packages.nix # Package management
|
│ ├── quickshell/ # Quickshell widgets and config
|
||||||
├── hyprland.nix # Hyprland configuration
|
│ ├── applications/ # Application configurations
|
||||||
└── applications.nix # Application configurations
|
│ ├── scripts/ # Utility scripts
|
||||||
|
│ └── matugen/ # Material You theming
|
||||||
|
├── modules/ # NixOS/Home Manager modules
|
||||||
|
│ ├── home-manager.nix # Main Home Manager integration
|
||||||
|
│ ├── python-environment.nix # Python venv setup
|
||||||
|
│ ├── configuration.nix # Declarative config management
|
||||||
|
│ ├── writable-mode.nix # Writable mode setup
|
||||||
|
│ └── components/ # Component modules
|
||||||
|
└── packages/ # Utility packages and scripts
|
||||||
|
├── default.nix # Package definitions
|
||||||
|
├── dots-hyprland-packages.nix # Package mappings
|
||||||
|
└── scripts/ # Development utilities
|
||||||
```
|
```
|
||||||
|
|
||||||
### Flake Structure
|
### Key Benefits
|
||||||
```
|
- **🔒 Self-Contained**: No external repository dependencies
|
||||||
├── flake.nix # Main flake with inputs/outputs
|
- **📦 Version Controlled**: All configs tracked in single repository
|
||||||
├── modules/ # NixOS/Home Manager modules
|
- **🔧 Maintainable**: Clean separation of concerns
|
||||||
├── packages/ # Custom package derivations
|
- **🚀 Fast**: No network dependencies during build
|
||||||
├── configs/ # Configuration templates
|
- **🎯 Focused**: Only essential files included
|
||||||
└── assets/ # Static assets (icons, themes)
|
|
||||||
```
|
|
||||||
|
|
||||||
## 🎯 Gameplan Progress
|
## 🎯 Gameplan Progress
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,137 @@
|
|||||||
|
[main]
|
||||||
|
term=xterm-256color
|
||||||
|
login-shell=yes
|
||||||
|
app-id=foot
|
||||||
|
title=foot
|
||||||
|
locked-title=no
|
||||||
|
|
||||||
|
[bell]
|
||||||
|
urgent=no
|
||||||
|
notify=no
|
||||||
|
visual=no
|
||||||
|
command=
|
||||||
|
command-focused=no
|
||||||
|
|
||||||
|
[scrollback]
|
||||||
|
lines=1000
|
||||||
|
multiplier=3.0
|
||||||
|
indicator-position=relative
|
||||||
|
indicator-format=""
|
||||||
|
|
||||||
|
[url]
|
||||||
|
launch=xdg-open ${url}
|
||||||
|
label-letters=sadfjklewcmpgh
|
||||||
|
osc8-underline=url-mode
|
||||||
|
protocols=http, https, ftp, ftps, file, gemini, gopher
|
||||||
|
uri-characters=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.,~:;/?#@!$&%*+="'()[]
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
style=beam
|
||||||
|
color=@CURSOR_COLOR@
|
||||||
|
blink=no
|
||||||
|
beam-thickness=1.5
|
||||||
|
underline-thickness=<font-metrics>
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide-when-typing=no
|
||||||
|
alternate-scroll-mode=yes
|
||||||
|
|
||||||
|
[colors]
|
||||||
|
alpha=0.95
|
||||||
|
background=@BACKGROUND_COLOR@
|
||||||
|
foreground=@FOREGROUND_COLOR@
|
||||||
|
|
||||||
|
# Material You color palette - will be injected by theming system
|
||||||
|
regular0=@COLOR0@
|
||||||
|
regular1=@COLOR1@
|
||||||
|
regular2=@COLOR2@
|
||||||
|
regular3=@COLOR3@
|
||||||
|
regular4=@COLOR4@
|
||||||
|
regular5=@COLOR5@
|
||||||
|
regular6=@COLOR6@
|
||||||
|
regular7=@COLOR7@
|
||||||
|
|
||||||
|
bright0=@COLOR8@
|
||||||
|
bright1=@COLOR9@
|
||||||
|
bright2=@COLOR10@
|
||||||
|
bright3=@COLOR11@
|
||||||
|
bright4=@COLOR12@
|
||||||
|
bright5=@COLOR13@
|
||||||
|
bright6=@COLOR14@
|
||||||
|
bright7=@COLOR15@
|
||||||
|
|
||||||
|
[csd]
|
||||||
|
preferred=server
|
||||||
|
size=26
|
||||||
|
font=@FONT_FAMILY@
|
||||||
|
color=@FOREGROUND_COLOR@
|
||||||
|
hide-when-maximized=no
|
||||||
|
double-click-to-maximize=yes
|
||||||
|
border-width=0
|
||||||
|
border-color=@BORDER_COLOR@
|
||||||
|
button-width=26
|
||||||
|
button-color=@BUTTON_COLOR@
|
||||||
|
button-minimize-color=@BUTTON_MINIMIZE_COLOR@
|
||||||
|
button-maximize-color=@BUTTON_MAXIMIZE_COLOR@
|
||||||
|
button-close-color=@BUTTON_CLOSE_COLOR@
|
||||||
|
|
||||||
|
[key-bindings]
|
||||||
|
scrollback-up-page=Shift+Page_Up
|
||||||
|
scrollback-up-half-page=none
|
||||||
|
scrollback-up-line=none
|
||||||
|
scrollback-down-page=Shift+Page_Down
|
||||||
|
scrollback-down-half-page=none
|
||||||
|
scrollback-down-line=none
|
||||||
|
clipboard-copy=Control+Shift+c XF86Copy
|
||||||
|
clipboard-paste=Control+Shift+v XF86Paste
|
||||||
|
primary-paste=Shift+Insert
|
||||||
|
search-start=Control+Shift+r
|
||||||
|
font-increase=Control+plus Control+equal Control+KP_Add
|
||||||
|
font-decrease=Control+minus Control+KP_Subtract
|
||||||
|
font-reset=Control+0 Control+KP_0
|
||||||
|
spawn-terminal=Control+Shift+n
|
||||||
|
minimize=none
|
||||||
|
maximize=none
|
||||||
|
fullscreen=F11
|
||||||
|
pipe-visible=[sh -c "xurls | fuzzel | xargs -r firefox"] none
|
||||||
|
pipe-scrollback=[sh -c "xurls | fuzzel | xargs -r firefox"] none
|
||||||
|
pipe-selected=[xargs -r firefox] none
|
||||||
|
show-urls-launch=Control+Shift+u
|
||||||
|
show-urls-copy=none
|
||||||
|
show-urls-persistent=none
|
||||||
|
prompt-prev=Control+Shift+z
|
||||||
|
prompt-next=Control+Shift+x
|
||||||
|
unicode-input=Control+Shift+u
|
||||||
|
noop=none
|
||||||
|
|
||||||
|
[search-bindings]
|
||||||
|
cancel=Control+g Control+c Escape
|
||||||
|
commit=Return
|
||||||
|
find-prev=Control+r
|
||||||
|
find-next=Control+s
|
||||||
|
cursor-left=Left Control+b
|
||||||
|
cursor-left-word=Control+Left Mod1+b
|
||||||
|
cursor-right=Right Control+f
|
||||||
|
cursor-right-word=Control+Right Mod1+f
|
||||||
|
cursor-home=Home Control+a
|
||||||
|
cursor-end=End Control+e
|
||||||
|
delete-prev=BackSpace
|
||||||
|
delete-prev-word=Mod1+BackSpace Control+BackSpace
|
||||||
|
delete-next=Delete
|
||||||
|
delete-next-word=Mod1+d Control+Delete
|
||||||
|
extend-to-word-boundary=Control+w
|
||||||
|
extend-to-next-whitespace=Control+Shift+w
|
||||||
|
clipboard-paste=Control+v Control+Shift+v Control+y XF86Paste
|
||||||
|
primary-paste=Shift+Insert
|
||||||
|
unicode-input=none
|
||||||
|
|
||||||
|
[mouse-bindings]
|
||||||
|
selection-override-modifiers=Shift
|
||||||
|
primary-paste=BTN_MIDDLE
|
||||||
|
select-begin=BTN_LEFT
|
||||||
|
select-begin-block=Control+BTN_LEFT
|
||||||
|
select-extend=BTN_RIGHT
|
||||||
|
select-extend-character-wise=Control+BTN_RIGHT
|
||||||
|
select-word=BTN_LEFT-2
|
||||||
|
select-word-whitespace=Control+BTN_LEFT-2
|
||||||
|
select-row=BTN_LEFT-3
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
# Material You colors for Hyprland
|
||||||
|
# Generated dynamically from wallpaper
|
||||||
|
|
||||||
|
# Slurp (selection tool) colors
|
||||||
|
exec = export SLURP_ARGS='-d -c @SLURP_BORDER_COLOR@ -b @SLURP_BACKGROUND_COLOR@ -s 00000000'
|
||||||
|
|
||||||
|
general {
|
||||||
|
col.active_border = @ACTIVE_BORDER_COLOR@
|
||||||
|
col.inactive_border = @INACTIVE_BORDER_COLOR@
|
||||||
|
}
|
||||||
|
|
||||||
|
misc {
|
||||||
|
background_color = @BACKGROUND_COLOR@
|
||||||
|
}
|
||||||
|
|
||||||
|
plugin {
|
||||||
|
hyprbars {
|
||||||
|
# Font configuration
|
||||||
|
bar_text_font = @BAR_FONT@
|
||||||
|
bar_height = @BAR_HEIGHT@
|
||||||
|
bar_padding = 10
|
||||||
|
bar_button_padding = 5
|
||||||
|
bar_precedence_over_border = true
|
||||||
|
bar_part_of_window = true
|
||||||
|
|
||||||
|
bar_color = @BAR_BACKGROUND_COLOR@
|
||||||
|
col.text = @BAR_TEXT_COLOR@
|
||||||
|
|
||||||
|
# Window control buttons (R -> L)
|
||||||
|
hyprbars-button = @BUTTON_COLOR@, 13, , hyprctl dispatch killactive
|
||||||
|
hyprbars-button = @BUTTON_COLOR@, 13, , hyprctl dispatch fullscreen 1
|
||||||
|
hyprbars-button = @BUTTON_COLOR@, 13, , hyprctl dispatch movetoworkspacesilent special
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Special window border colors
|
||||||
|
windowrulev2 = bordercolor @PINNED_BORDER_COLOR@ @PINNED_BORDER_COLOR_INACTIVE@,pinned:1
|
||||||
|
|
||||||
|
# Additional color variables for scripts
|
||||||
|
@ADDITIONAL_COLORS@
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
# Environment variables for dots-hyprland
|
||||||
|
|
||||||
|
# ######### Input method ##########
|
||||||
|
# See https://fcitx-im.org/wiki/Using_Fcitx_5_on_Wayland
|
||||||
|
env = QT_IM_MODULE, fcitx
|
||||||
|
env = XMODIFIERS, @im=fcitx
|
||||||
|
env = SDL_IM_MODULE, fcitx
|
||||||
|
env = GLFW_IM_MODULE, ibus
|
||||||
|
env = INPUT_METHOD, fcitx
|
||||||
|
|
||||||
|
# ############ Wayland #############
|
||||||
|
env = ELECTRON_OZONE_PLATFORM_HINT, auto
|
||||||
|
|
||||||
|
# ############ Themes #############
|
||||||
|
env = QT_QPA_PLATFORM, wayland
|
||||||
|
env = QT_QPA_PLATFORMTHEME, @QT_THEME@
|
||||||
|
env = XDG_MENU_PREFIX, plasma-
|
||||||
|
|
||||||
|
# ######## Hardware specific #########
|
||||||
|
@NVIDIA_ENV@
|
||||||
|
@AMD_ENV@
|
||||||
|
|
||||||
|
# ######## Virtual environment #########
|
||||||
|
env = ILLOGICAL_IMPULSE_VIRTUAL_ENV, @DATA_DIR@/.venv
|
||||||
|
|
||||||
|
# ######## NixOS specific #########
|
||||||
|
env = NIXOS_OZONE_WL, 1
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# Startup executables for dots-hyprland
|
||||||
|
|
||||||
|
# Core desktop components
|
||||||
|
exec-once = @QUICKSHELL_BIN@ -c $qsConfig &
|
||||||
|
exec-once = @HYPRIDLE_BIN@
|
||||||
|
|
||||||
|
# Authentication and security
|
||||||
|
exec-once = @GNOME_KEYRING_BIN@ --start --components=secrets
|
||||||
|
exec-once = @POLKIT_AGENT_BIN@
|
||||||
|
|
||||||
|
# System services
|
||||||
|
exec-once = dbus-update-activation-environment --all
|
||||||
|
exec-once = sleep 1 && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||||
|
|
||||||
|
# Input method
|
||||||
|
@INPUT_METHOD_EXEC@
|
||||||
|
|
||||||
|
# Audio system
|
||||||
|
@AUDIO_EXEC@
|
||||||
|
|
||||||
|
# Clipboard management
|
||||||
|
exec-once = @WL_PASTE_BIN@ --type text --watch @CLIPHIST_BIN@ store
|
||||||
|
exec-once = @WL_PASTE_BIN@ --type image --watch @CLIPHIST_BIN@ store
|
||||||
|
|
||||||
|
# Cursor theme
|
||||||
|
exec-once = hyprctl setcursor @CURSOR_THEME@ @CURSOR_SIZE@
|
||||||
|
|
||||||
|
# User custom execs
|
||||||
|
@CUSTOM_EXECS@
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
# General Hyprland configuration for dots-hyprland
|
||||||
|
|
||||||
|
# MONITOR CONFIG
|
||||||
|
@MONITOR_CONFIG@
|
||||||
|
|
||||||
|
# Gestures
|
||||||
|
gestures {
|
||||||
|
workspace_swipe = @WORKSPACE_SWIPE@
|
||||||
|
workspace_swipe_distance = 700
|
||||||
|
workspace_swipe_fingers = 3
|
||||||
|
workspace_swipe_min_fingers = true
|
||||||
|
workspace_swipe_cancel_ratio = 0.2
|
||||||
|
workspace_swipe_min_speed_to_force = 5
|
||||||
|
workspace_swipe_direction_lock = true
|
||||||
|
workspace_swipe_direction_lock_threshold = 10
|
||||||
|
workspace_swipe_create_new = true
|
||||||
|
}
|
||||||
|
|
||||||
|
general {
|
||||||
|
# Gaps and border
|
||||||
|
gaps_in = @GAPS_IN@
|
||||||
|
gaps_out = @GAPS_OUT@
|
||||||
|
gaps_workspaces = 50
|
||||||
|
|
||||||
|
border_size = @BORDER_SIZE@
|
||||||
|
col.active_border = @ACTIVE_BORDER_COLOR@
|
||||||
|
col.inactive_border = @INACTIVE_BORDER_COLOR@
|
||||||
|
resize_on_border = true
|
||||||
|
|
||||||
|
no_focus_fallback = true
|
||||||
|
|
||||||
|
allow_tearing = @ALLOW_TEARING@
|
||||||
|
|
||||||
|
snap {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dwindle {
|
||||||
|
preserve_split = true
|
||||||
|
smart_split = false
|
||||||
|
smart_resizing = false
|
||||||
|
}
|
||||||
|
|
||||||
|
decoration {
|
||||||
|
rounding = @ROUNDING@
|
||||||
|
|
||||||
|
blur {
|
||||||
|
enabled = @BLUR_ENABLED@
|
||||||
|
xray = true
|
||||||
|
special = false
|
||||||
|
new_optimizations = true
|
||||||
|
size = @BLUR_SIZE@
|
||||||
|
passes = @BLUR_PASSES@
|
||||||
|
brightness = 1
|
||||||
|
noise = 0.01
|
||||||
|
contrast = 1
|
||||||
|
popups = true
|
||||||
|
popups_ignorealpha = 0.6
|
||||||
|
input_methods = true
|
||||||
|
input_methods_ignorealpha = 0.8
|
||||||
|
}
|
||||||
|
|
||||||
|
shadow {
|
||||||
|
enabled = @SHADOW_ENABLED@
|
||||||
|
ignore_window = true
|
||||||
|
range = 30
|
||||||
|
offset = 0 2
|
||||||
|
render_power = 4
|
||||||
|
color = @SHADOW_COLOR@
|
||||||
|
}
|
||||||
|
|
||||||
|
# Dim
|
||||||
|
dim_inactive = @DIM_INACTIVE@
|
||||||
|
dim_strength = 0.025
|
||||||
|
dim_special = 0.07
|
||||||
|
}
|
||||||
|
|
||||||
|
animations {
|
||||||
|
enabled = @ANIMATIONS_ENABLED@
|
||||||
|
# Material Design curves
|
||||||
|
bezier = emphasizedDecel, 0.05, 0.7, 0.1, 1
|
||||||
|
bezier = emphasizedAccel, 0.3, 0, 0.8, 0.15
|
||||||
|
bezier = standardDecel, 0, 0, 0, 1
|
||||||
|
bezier = menu_decel, 0.1, 1, 0, 1
|
||||||
|
bezier = menu_accel, 0.52, 0.03, 0.72, 0.08
|
||||||
|
|
||||||
|
# Window animations
|
||||||
|
animation = windowsIn, 1, 3, emphasizedDecel, popin 80%
|
||||||
|
animation = windowsOut, 1, 2, emphasizedDecel, popin 90%
|
||||||
|
animation = windowsMove, 1, 3, emphasizedDecel, slide
|
||||||
|
animation = border, 1, 10, emphasizedDecel
|
||||||
|
|
||||||
|
# Layer animations
|
||||||
|
animation = layersIn, 1, 2.7, emphasizedDecel, popin 93%
|
||||||
|
animation = layersOut, 1, 2.4, menu_accel, popin 94%
|
||||||
|
animation = fadeLayersIn, 1, 0.5, menu_decel
|
||||||
|
animation = fadeLayersOut, 1, 2.7, menu_accel
|
||||||
|
|
||||||
|
# Workspace animations
|
||||||
|
animation = workspaces, 1, 7, menu_decel, slide
|
||||||
|
animation = specialWorkspaceIn, 1, 2.8, emphasizedDecel, slidevert
|
||||||
|
animation = specialWorkspaceOut, 1, 1.2, emphasizedAccel, slidevert
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
kb_layout = @KEYBOARD_LAYOUT@
|
||||||
|
numlock_by_default = true
|
||||||
|
repeat_delay = 250
|
||||||
|
repeat_rate = 35
|
||||||
|
|
||||||
|
follow_mouse = 1
|
||||||
|
off_window_axis_events = 2
|
||||||
|
|
||||||
|
touchpad {
|
||||||
|
natural_scroll = @NATURAL_SCROLL@
|
||||||
|
disable_while_typing = true
|
||||||
|
clickfinger_behavior = true
|
||||||
|
scroll_factor = 0.5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
misc {
|
||||||
|
disable_hyprland_logo = true
|
||||||
|
disable_splash_rendering = true
|
||||||
|
vfr = 1
|
||||||
|
vrr = @VRR_ENABLED@
|
||||||
|
mouse_move_enables_dpms = true
|
||||||
|
key_press_enables_dpms = true
|
||||||
|
animate_manual_resizes = false
|
||||||
|
animate_mouse_windowdragging = false
|
||||||
|
enable_swallow = @WINDOW_SWALLOW@
|
||||||
|
swallow_regex = (foot|kitty|alacritty|Alacritty)
|
||||||
|
new_window_takes_over_fullscreen = 2
|
||||||
|
allow_session_lock_restore = true
|
||||||
|
session_lock_xray = true
|
||||||
|
initial_workspace_tracking = false
|
||||||
|
focus_on_activate = true
|
||||||
|
}
|
||||||
|
|
||||||
|
binds {
|
||||||
|
scroll_event_delay = 0
|
||||||
|
hide_special_on_workspace_change = true
|
||||||
|
}
|
||||||
|
|
||||||
|
cursor {
|
||||||
|
zoom_factor = 1
|
||||||
|
zoom_rigid = false
|
||||||
|
}
|
||||||
|
|
||||||
|
# Overview plugin
|
||||||
|
plugin {
|
||||||
|
hyprexpo {
|
||||||
|
columns = 3
|
||||||
|
gap_size = 5
|
||||||
|
bg_col = @OVERVIEW_BG_COLOR@
|
||||||
|
workspace_method = first 1
|
||||||
|
|
||||||
|
enable_gesture = @OVERVIEW_GESTURE@
|
||||||
|
gesture_distance = 300
|
||||||
|
gesture_positive = false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
# hypridle configuration for dots-hyprland
|
||||||
|
# Automatic screen locking and power management
|
||||||
|
|
||||||
|
general {
|
||||||
|
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances.
|
||||||
|
before_sleep_cmd = loginctl lock-session # lock before suspend.
|
||||||
|
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 150 # 2.5min
|
||||||
|
on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor.
|
||||||
|
on-resume = brightnessctl -r # monitor backlight restore.
|
||||||
|
}
|
||||||
|
|
||||||
|
# turn off keyboard backlight, comment out this section if you dont have a keyboard backlight.
|
||||||
|
listener {
|
||||||
|
timeout = 150 # 2.5min
|
||||||
|
on-timeout = brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight.
|
||||||
|
on-resume = brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight.
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 300 # 5min
|
||||||
|
on-timeout = loginctl lock-session # lock screen when timeout has passed
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 330 # 5.5min
|
||||||
|
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
|
||||||
|
on-resume = hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired.
|
||||||
|
}
|
||||||
|
|
||||||
|
listener {
|
||||||
|
timeout = 1800 # 30min
|
||||||
|
on-timeout = systemctl suspend # suspend pc
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# dots-hyprland NixOS Configuration
|
||||||
|
# Generated from template - do not edit directly
|
||||||
|
|
||||||
|
# Quickshell configuration
|
||||||
|
$qsConfig = ii
|
||||||
|
exec = hyprctl dispatch submap global # DO NOT REMOVE THIS OR YOU WON'T BE ABLE TO USE ANY KEYBIND
|
||||||
|
submap = global # This is required for catchall to work
|
||||||
|
|
||||||
|
# Source configuration files
|
||||||
|
source=~/.config/hypr/env.conf
|
||||||
|
source=~/.config/hypr/execs.conf
|
||||||
|
source=~/.config/hypr/general.conf
|
||||||
|
source=~/.config/hypr/rules.conf
|
||||||
|
source=~/.config/hypr/colors.conf
|
||||||
|
source=~/.config/hypr/keybinds.conf
|
||||||
|
|
||||||
|
# Custom user overrides (if they exist)
|
||||||
|
source=~/.config/hypr/custom.conf
|
||||||
@@ -0,0 +1,219 @@
|
|||||||
|
# Lines ending with `# [hidden]` won't be shown on cheatsheet
|
||||||
|
# Lines starting with #! are section headings
|
||||||
|
|
||||||
|
#!
|
||||||
|
##! Shell
|
||||||
|
# These absolutely need to be on top, or they won't work consistently
|
||||||
|
bindid = $Secondary, Space, Toggle overview, global, quickshell:overviewToggleRelease # Toggle overview/launcher
|
||||||
|
bind = $Secondary, Space, exec, hyprctl dispatch global quickshell:overviewToggle -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || @FUZZEL_BIN@ # [hidden] Launcher (fallback)
|
||||||
|
binditn = Super, catchall, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Ctrl, Super_L, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:272, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:273, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:274, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:275, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:276, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:277, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse_up, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse_down,global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
|
||||||
|
bindit = ,Super_L, global, quickshell:workspaceNumber # [hidden]
|
||||||
|
bindd = Super, V, Clipboard history >> clipboard, global, quickshell:overviewClipboardToggle # Clipboard history >> clipboard
|
||||||
|
bindd = Super, Period, Emoji >> clipboard, global, quickshell:overviewEmojiToggle # Emoji >> clipboard
|
||||||
|
bindd = Super, Tab, Toggle overview, global, quickshell:overviewToggle # [hidden] Toggle overview/launcher (alt)
|
||||||
|
bindd = Super, A, Toggle left sidebar, global, quickshell:sidebarLeftToggle # Toggle left sidebar
|
||||||
|
bind = Super+Alt, A, global, quickshell:sidebarLeftToggleDetach # [hidden]
|
||||||
|
bind = Super, B, global, quickshell:sidebarLeftToggle # [hidden]
|
||||||
|
bind = Super, O, global, quickshell:sidebarLeftToggle # [hidden]
|
||||||
|
bindd = Super, N, Toggle right sidebar, global, quickshell:sidebarRightToggle # Toggle right sidebar
|
||||||
|
bindd = Super, Slash, Toggle cheatsheet, global, quickshell:cheatsheetToggle # Toggle cheatsheet
|
||||||
|
bindd = Super, K, Toggle on-screen keyboard, global, quickshell:oskToggle # Toggle on-screen keyboard
|
||||||
|
bindd = Super, M, Toggle media controls, global, quickshell:mediaControlsToggle # Toggle media controls
|
||||||
|
bindd = Ctrl+Alt, Delete, Toggle session menu, global, quickshell:sessionToggle # Toggle session menu
|
||||||
|
bindd = Super, J, Toggle bar, global, quickshell:barToggle # Toggle bar
|
||||||
|
bind = Ctrl+Alt, Delete, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill wlogout || @WLOGOUT_BIN@ -p layer-shell # [hidden] Session menu (fallback)
|
||||||
|
bind = Shift+Super+Alt, Slash, exec, @QUICKSHELL_BIN@ -p ~/.config/quickshell/$qsConfig/welcome.qml # [hidden] Launch welcome app
|
||||||
|
|
||||||
|
bindle=, XF86MonBrightnessUp, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call brightness increment || @BRIGHTNESSCTL_BIN@ s 5%+ # [hidden]
|
||||||
|
bindle=, XF86MonBrightnessDown, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call brightness decrement || @BRIGHTNESSCTL_BIN@ s 5%- # [hidden]
|
||||||
|
bindle=, XF86AudioRaiseVolume, exec, @WPCTL_BIN@ set-volume -l 1 @DEFAULT_AUDIO_SINK@ 2%+ # [hidden]
|
||||||
|
bindle=, XF86AudioLowerVolume, exec, @WPCTL_BIN@ set-volume @DEFAULT_AUDIO_SINK@ 2%- # [hidden]
|
||||||
|
|
||||||
|
bindl = ,XF86AudioMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SINK@ toggle # [hidden]
|
||||||
|
bindld = Super+Shift,M, Toggle mute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SINK@ toggle # [hidden]
|
||||||
|
bindl = Alt ,XF86AudioMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindl = ,XF86AudioMicMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindld = Super+Alt,M, Toggle mic, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindd = Ctrl+Super, T, Change wallpaper, exec, ~/.config/quickshell/$qsConfig/scripts/colors/switchwall.sh # Change wallpaper
|
||||||
|
bind = Ctrl+Super, R, exec, killall ags agsv1 gjs ydotool qs quickshell; @QUICKSHELL_BIN@ -c $qsConfig & # Restart widgets
|
||||||
|
|
||||||
|
##! Utilities
|
||||||
|
# Screenshot, Record, OCR, Color picker, Clipboard history
|
||||||
|
bindd = Super, V, Copy clipboard history entry, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || @CLIPHIST_BIN@ list | @FUZZEL_BIN@ --match-mode fzf --dmenu | @CLIPHIST_BIN@ decode | @WL_COPY_BIN@ # [hidden] Clipboard history >> clipboard (fallback)
|
||||||
|
bindd = Super, Period, Copy an emoji, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || ~/.config/hypr/scripts/fuzzel-emoji.sh copy # [hidden] Emoji >> clipboard (fallback)
|
||||||
|
bindd = Super+Shift, S, Screen snip, exec, @QUICKSHELL_BIN@ -p ~/.config/quickshell/$qsConfig/screenshot.qml || pidof slurp || @HYPRSHOT_BIN@ --freeze --clipboard-only --mode region --silent # Screen snip
|
||||||
|
# OCR
|
||||||
|
bindd = Super+Shift, T, Character recognition,exec,@GRIM_BIN@ -g "$(@SLURP_BIN@ $SLURP_ARGS)" "tmp.png" && @TESSERACT_BIN@ "tmp.png" - | @WL_COPY_BIN@ && rm "tmp.png" # [hidden]
|
||||||
|
# Color picker
|
||||||
|
bindd = Super+Shift, C, Color picker, exec, @HYPRPICKER_BIN@ -a # Pick color (Hex) >> clipboard
|
||||||
|
# Fullscreen screenshot
|
||||||
|
bindld = ,Print, Screenshot >> clipboard ,exec,@GRIM_BIN@ - | @WL_COPY_BIN@ # Screenshot >> clipboard
|
||||||
|
bindld = Ctrl,Print, Screenshot >> clipboard & save, exec, mkdir -p $(xdg-user-dir PICTURES)/Screenshots && @GRIM_BIN@ $(xdg-user-dir PICTURES)/Screenshots/Screenshot_"$(date '+%Y-%m-%d_%H.%M.%S')".png # Screenshot >> clipboard & file
|
||||||
|
# Recording stuff
|
||||||
|
bindd = Super+Alt, R, Record region (no sound), exec, ~/.config/hypr/scripts/record.sh # Record region (no sound)
|
||||||
|
bindd = Ctrl+Alt, R, Record screen (no sound), exec, ~/.config/hypr/scripts/record.sh --fullscreen # [hidden] Record screen (no sound)
|
||||||
|
bindd = Super+Shift+Alt, R, Record screen (with sound), exec, ~/.config/hypr/scripts/record.sh --fullscreen-sound # Record screen (with sound)
|
||||||
|
# AI
|
||||||
|
bindd = Super+Shift+Alt, mouse:273, Generate AI summary for selected text, exec, ~/.config/hypr/scripts/ai/primary-buffer-query.sh # AI summary for selected text
|
||||||
|
|
||||||
|
#!
|
||||||
|
##! Window
|
||||||
|
# Focusing
|
||||||
|
bindm = Super, mouse:272, movewindow # Move
|
||||||
|
bindm = Super, mouse:274, movewindow # [hidden]
|
||||||
|
bindm = Super, mouse:273, resizewindow # Resize
|
||||||
|
#/# bind = Super, ←/↑/→/↓,, # Focus in direction
|
||||||
|
bind = Super, Left, movefocus, l # [hidden]
|
||||||
|
bind = Super, Right, movefocus, r # [hidden]
|
||||||
|
bind = Super, Up, movefocus, u # [hidden]
|
||||||
|
bind = Super, Down, movefocus, d # [hidden]
|
||||||
|
bind = Super, BracketLeft, movefocus, l # [hidden]
|
||||||
|
bind = Super, BracketRight, movefocus, r # [hidden]
|
||||||
|
#/# bind = Super+Shift, ←/↑/→/↓,, # Move in direction
|
||||||
|
bind = Super+Shift, Left, movewindow, l # [hidden]
|
||||||
|
bind = Super+Shift, Right, movewindow, r # [hidden]
|
||||||
|
bind = Super+Shift, Up, movewindow, u # [hidden]
|
||||||
|
bind = Super+Shift, Down, movewindow, d # [hidden]
|
||||||
|
bind = Alt, F4, killactive, # [hidden] Close (Windows)
|
||||||
|
bind = Super, Q, killactive, # Close
|
||||||
|
bind = Super+Shift+Alt, Q, exec, hyprctl kill # Forcefully zap a window
|
||||||
|
|
||||||
|
# Window split ratio
|
||||||
|
#/# binde = Super, ;/',, # Adjust split ratio
|
||||||
|
binde = Super, Semicolon, splitratio, -0.1 # [hidden]
|
||||||
|
binde = Super, Apostrophe, splitratio, +0.1 # [hidden]
|
||||||
|
# Positioning mode
|
||||||
|
bind = Super+Alt, Space, togglefloating, # Float/Tile
|
||||||
|
bind = Super, D, fullscreen, 1 # Maximize
|
||||||
|
bind = Super, F, fullscreen, 0 # Fullscreen
|
||||||
|
bind = Super+Alt, F, fullscreenstate, 0 3 # Fullscreen spoof
|
||||||
|
bind = Super, P, pin # Pin
|
||||||
|
|
||||||
|
#/# bind = Super+Alt, Hash,, # Send to workspace # (1, 2, 3,...)
|
||||||
|
bind = Super+Alt, 1, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 1 # [hidden]
|
||||||
|
bind = Super+Alt, 2, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 2 # [hidden]
|
||||||
|
bind = Super+Alt, 3, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 3 # [hidden]
|
||||||
|
bind = Super+Alt, 4, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 4 # [hidden]
|
||||||
|
bind = Super+Alt, 5, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 5 # [hidden]
|
||||||
|
bind = Super+Alt, 6, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 6 # [hidden]
|
||||||
|
bind = Super+Alt, 7, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 7 # [hidden]
|
||||||
|
bind = Super+Alt, 8, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 8 # [hidden]
|
||||||
|
bind = Super+Alt, 9, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 9 # [hidden]
|
||||||
|
bind = Super+Alt, 0, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 10 # [hidden]
|
||||||
|
|
||||||
|
# #/# bind = Super+Shift, Scroll ↑/↓,, # Send to workspace left/right
|
||||||
|
bind = Super+Shift, mouse_down, movetoworkspace, r-1 # [hidden]
|
||||||
|
bind = Super+Shift, mouse_up, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Super+Alt, mouse_down, movetoworkspace, -1 # [hidden]
|
||||||
|
bind = Super+Alt, mouse_up, movetoworkspace, +1 # [hidden]
|
||||||
|
|
||||||
|
#/# bind = Super+Shift, Page_↑/↓,, # Send to workspace left/right
|
||||||
|
bind = Super+Alt, Page_Down, movetoworkspace, +1 # [hidden]
|
||||||
|
bind = Super+Alt, Page_Up, movetoworkspace, -1 # [hidden]
|
||||||
|
bind = Super+Shift, Page_Down, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Super+Shift, Page_Up, movetoworkspace, r-1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Shift, Right, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Shift, Left, movetoworkspace, r-1 # [hidden]
|
||||||
|
|
||||||
|
bind = Super+Alt, S, movetoworkspacesilent, special # Send to scratchpad
|
||||||
|
|
||||||
|
bind = Ctrl+Super, S, togglespecialworkspace, # [hidden]
|
||||||
|
bind = Alt, Tab, cyclenext # [hidden] sus keybind
|
||||||
|
bind = Alt, Tab, bringactivetotop, # [hidden] bring it to the top
|
||||||
|
|
||||||
|
##! Workspace
|
||||||
|
# Switching
|
||||||
|
#/# bind = Super, Hash,, # Focus workspace # (1, 2, 3,...)
|
||||||
|
bind = Super, 1, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 1 # [hidden]
|
||||||
|
bind = Super, 2, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 2 # [hidden]
|
||||||
|
bind = Super, 3, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 3 # [hidden]
|
||||||
|
bind = Super, 4, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 4 # [hidden]
|
||||||
|
bind = Super, 5, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 5 # [hidden]
|
||||||
|
bind = Super, 6, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 6 # [hidden]
|
||||||
|
bind = Super, 7, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 7 # [hidden]
|
||||||
|
bind = Super, 8, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 8 # [hidden]
|
||||||
|
bind = Super, 9, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 9 # [hidden]
|
||||||
|
bind = Super, 0, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 10 # [hidden]
|
||||||
|
|
||||||
|
#/# bind = Ctrl+Super, ←/→,, # Focus left/right
|
||||||
|
bind = Ctrl+Super, Right, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Left, workspace, r-1 # [hidden]
|
||||||
|
#/# bind = Ctrl+Super+Alt, ←/→,, # [hidden] Focus busy left/right
|
||||||
|
bind = Ctrl+Super+Alt, Right, workspace, m+1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Alt, Left, workspace, m-1 # [hidden]
|
||||||
|
#/# bind = Super, Page_↑/↓,, # Focus left/right
|
||||||
|
bind = Super, Page_Down, workspace, +1 # [hidden]
|
||||||
|
bind = Super, Page_Up, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Page_Down, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Page_Up, workspace, r-1 # [hidden]
|
||||||
|
#/# bind = Super, Scroll ↑/↓,, # Focus left/right
|
||||||
|
bind = Super, mouse_up, workspace, +1 # [hidden]
|
||||||
|
bind = Super, mouse_down, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, mouse_up, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, mouse_down, workspace, r-1 # [hidden]
|
||||||
|
## Special
|
||||||
|
bind = Super, S, togglespecialworkspace, # Toggle scratchpad
|
||||||
|
bind = Super, mouse:275, togglespecialworkspace, # [hidden]
|
||||||
|
bind = Ctrl+Super, BracketLeft, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, BracketRight, workspace, +1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Up, workspace, r-5 # [hidden]
|
||||||
|
bind = Ctrl+Super, Down, workspace, r+5 # [hidden]
|
||||||
|
|
||||||
|
#!
|
||||||
|
# Testing
|
||||||
|
bind = Super+Alt, f11, exec, bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | grep -v -i "nipple" | grep -v -i "pussy" | shuf -n 1); ACTION=$(notify-send "Test notification with body image" "This notification should contain your user account <b>image</b> and <a href=\"https://discord.com/app\">Discord</a> <b>icon</b>. Oh and here is a random image in your Pictures folder: <img src=\"$RANDOM_IMAGE\" alt=\"Testing image\"/>" -a "Hyprland keybind" -p -h "string:image-path:/var/lib/AccountsService/icons/$USER" -t 6000 -i "discord" -A "openImage=Open profile image" -A "action2=Open the random image" -A "action3=Useless button"); [[ $ACTION == *openImage ]] && xdg-open "/var/lib/AccountsService/icons/$USER"; [[ $ACTION == *action2 ]] && xdg-open \"$RANDOM_IMAGE\"' # [hidden]
|
||||||
|
bind = Super+Alt, f12, exec, bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | grep -v -i "nipple" | grep -v -i "pussy" | shuf -n 1); ACTION=$(notify-send "Test notification" "This notification should contain a random image in your <b>Pictures</b> folder and <a href=\"https://discord.com/app\">Discord</a> <b>icon</b>.\n<i>Flick right to dismiss!</i>" -a "Discord (fake)" -p -h "string:image-path:$RANDOM_IMAGE" -t 6000 -i "discord" -A "openImage=Open profile image" -A "action2=Useless button" -A "action3=Cry more"); [[ $ACTION == *openImage ]] && xdg-open "/var/lib/AccountsService/icons/$USER"' # [hidden]
|
||||||
|
bind = Super+Alt, Equal, exec, notify-send "Urgent notification" "Ah hell no" -u critical -a 'Hyprland keybind' # [hidden]
|
||||||
|
|
||||||
|
##! Session
|
||||||
|
bindd = Super, L, Lock, exec, loginctl lock-session # Lock
|
||||||
|
bind = Super+Shift, L, exec, loginctl lock-session # [hidden]
|
||||||
|
bindld = Super+Shift, L, Suspend system, exec, sleep 0.1 && systemctl suspend || loginctl suspend # Sleep
|
||||||
|
bindd = Ctrl+Shift+Alt+Super, Delete, Shutdown, exec, systemctl poweroff || loginctl poweroff # [hidden] Power off
|
||||||
|
|
||||||
|
##! Screen
|
||||||
|
# Zoom
|
||||||
|
binde = Super, Minus, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call zoom zoomOut # Zoom out
|
||||||
|
binde = Super, Equal, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call zoom zoomIn # Zoom in
|
||||||
|
binde = Super, Minus, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || ~/.config/hypr/scripts/zoom.sh decrease 0.1 # [hidden] Zoom out
|
||||||
|
binde = Super, Equal, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || ~/.config/hypr/scripts/zoom.sh increase 0.1 # [hidden] Zoom in
|
||||||
|
|
||||||
|
##! Media
|
||||||
|
bindl= Super+Shift, N, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # Next track
|
||||||
|
bindl= ,XF86AudioNext, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # [hidden]
|
||||||
|
bindl= ,XF86AudioPrev, exec, @PLAYERCTL_BIN@ previous # [hidden]
|
||||||
|
bind = Super+Shift+Alt, mouse:275, exec, @PLAYERCTL_BIN@ previous # [hidden]
|
||||||
|
bind = Super+Shift+Alt, mouse:276, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # [hidden]
|
||||||
|
bindl= Super+Shift, B, exec, @PLAYERCTL_BIN@ previous # Previous track
|
||||||
|
bindl= Super+Shift, P, exec, @PLAYERCTL_BIN@ play-pause # Play/pause media
|
||||||
|
bindl= ,XF86AudioPlay, exec, @PLAYERCTL_BIN@ play-pause # [hidden]
|
||||||
|
bindl= ,XF86AudioPause, exec, @PLAYERCTL_BIN@ play-pause # [hidden]
|
||||||
|
|
||||||
|
##! Apps
|
||||||
|
bind = Super, Return, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # Terminal
|
||||||
|
bind = Super, T, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # [hidden] Terminal (alt)
|
||||||
|
bind = Ctrl+Alt, T, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # [hidden] Terminal (Ubuntu style)
|
||||||
|
bind = Super, E, exec, ~/.config/hypr/scripts/launch_first_available.sh "@FILE_MANAGER_APPS@" # File manager
|
||||||
|
bind = Super, W, exec, ~/.config/hypr/scripts/launch_first_available.sh "@BROWSER_APPS@" # Browser
|
||||||
|
bind = Super, C, exec, ~/.config/hypr/scripts/launch_first_available.sh "@CODE_EDITOR_APPS@" # Code editor
|
||||||
|
bind = Super+Shift, W, exec, ~/.config/hypr/scripts/launch_first_available.sh "@OFFICE_APPS@" # Office software
|
||||||
|
bind = Super, X, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TEXT_EDITOR_APPS@" # Text editor
|
||||||
|
bind = Ctrl+Super, V, exec, ~/.config/hypr/scripts/launch_first_available.sh "@VOLUME_MIXER_APPS@" # Volume mixer
|
||||||
|
bind = Super, I, exec, XDG_CURRENT_DESKTOP=gnome ~/.config/hypr/scripts/launch_first_available.sh "@SETTINGS_APPS@" # Settings app
|
||||||
|
bind = Ctrl+Shift, Escape, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TASK_MANAGER_APPS@" # Task manager
|
||||||
|
|
||||||
|
# Cursed stuff
|
||||||
|
## Make window not amogus large
|
||||||
|
bind = Ctrl+Super, Backslash, resizeactive, exact 640 480 # [hidden]
|
||||||
|
|
||||||
|
@CUSTOM_KEYBINDS@
|
||||||
@@ -0,0 +1,219 @@
|
|||||||
|
# Lines ending with `# [hidden]` won't be shown on cheatsheet
|
||||||
|
# Lines starting with #! are section headings
|
||||||
|
|
||||||
|
#!
|
||||||
|
##! Shell
|
||||||
|
# These absolutely need to be on top, or they won't work consistently
|
||||||
|
bindid = Super, Super_L, Toggle overview, global, quickshell:overviewToggleRelease # Toggle overview/launcher
|
||||||
|
bind = Super, Super_L, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || @FUZZEL_BIN@ # [hidden] Launcher (fallback)
|
||||||
|
binditn = Super, catchall, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Ctrl, Super_L, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:272, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:273, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:274, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:275, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:276, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse:277, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse_up, global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
bind = Super, mouse_down,global, quickshell:overviewToggleReleaseInterrupt # [hidden]
|
||||||
|
|
||||||
|
bindit = ,Super_L, global, quickshell:workspaceNumber # [hidden]
|
||||||
|
bindd = Super, V, Clipboard history >> clipboard, global, quickshell:overviewClipboardToggle # Clipboard history >> clipboard
|
||||||
|
bindd = Super, Period, Emoji >> clipboard, global, quickshell:overviewEmojiToggle # Emoji >> clipboard
|
||||||
|
bindd = Super, Tab, Toggle overview, global, quickshell:overviewToggle # [hidden] Toggle overview/launcher (alt)
|
||||||
|
bindd = Super, A, Toggle left sidebar, global, quickshell:sidebarLeftToggle # Toggle left sidebar
|
||||||
|
bind = Super+Alt, A, global, quickshell:sidebarLeftToggleDetach # [hidden]
|
||||||
|
bind = Super, B, global, quickshell:sidebarLeftToggle # [hidden]
|
||||||
|
bind = Super, O, global, quickshell:sidebarLeftToggle # [hidden]
|
||||||
|
bindd = Super, N, Toggle right sidebar, global, quickshell:sidebarRightToggle # Toggle right sidebar
|
||||||
|
bindd = Super, Slash, Toggle cheatsheet, global, quickshell:cheatsheetToggle # Toggle cheatsheet
|
||||||
|
bindd = Super, K, Toggle on-screen keyboard, global, quickshell:oskToggle # Toggle on-screen keyboard
|
||||||
|
bindd = Super, M, Toggle media controls, global, quickshell:mediaControlsToggle # Toggle media controls
|
||||||
|
bindd = Ctrl+Alt, Delete, Toggle session menu, global, quickshell:sessionToggle # Toggle session menu
|
||||||
|
bindd = Super, J, Toggle bar, global, quickshell:barToggle # Toggle bar
|
||||||
|
bind = Ctrl+Alt, Delete, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill wlogout || @WLOGOUT_BIN@ -p layer-shell # [hidden] Session menu (fallback)
|
||||||
|
bind = Shift+Super+Alt, Slash, exec, @QUICKSHELL_BIN@ -p ~/.config/quickshell/$qsConfig/welcome.qml # [hidden] Launch welcome app
|
||||||
|
|
||||||
|
bindle=, XF86MonBrightnessUp, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call brightness increment || @BRIGHTNESSCTL_BIN@ s 5%+ # [hidden]
|
||||||
|
bindle=, XF86MonBrightnessDown, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call brightness decrement || @BRIGHTNESSCTL_BIN@ s 5%- # [hidden]
|
||||||
|
bindle=, XF86AudioRaiseVolume, exec, @WPCTL_BIN@ set-volume -l 1 @DEFAULT_AUDIO_SINK@ 2%+ # [hidden]
|
||||||
|
bindle=, XF86AudioLowerVolume, exec, @WPCTL_BIN@ set-volume @DEFAULT_AUDIO_SINK@ 2%- # [hidden]
|
||||||
|
|
||||||
|
bindl = ,XF86AudioMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SINK@ toggle # [hidden]
|
||||||
|
bindld = Super+Shift,M, Toggle mute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SINK@ toggle # [hidden]
|
||||||
|
bindl = Alt ,XF86AudioMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindl = ,XF86AudioMicMute, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindld = Super+Alt,M, Toggle mic, exec, @WPCTL_BIN@ set-mute @DEFAULT_SOURCE@ toggle # [hidden]
|
||||||
|
bindd = Ctrl+Super, T, Change wallpaper, exec, ~/.config/quickshell/$qsConfig/scripts/colors/switchwall.sh # Change wallpaper
|
||||||
|
bind = Ctrl+Super, R, exec, killall ags agsv1 gjs ydotool qs quickshell; @QUICKSHELL_BIN@ -c $qsConfig & # Restart widgets
|
||||||
|
|
||||||
|
##! Utilities
|
||||||
|
# Screenshot, Record, OCR, Color picker, Clipboard history
|
||||||
|
bindd = Super, V, Copy clipboard history entry, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || @CLIPHIST_BIN@ list | @FUZZEL_BIN@ --match-mode fzf --dmenu | @CLIPHIST_BIN@ decode | @WL_COPY_BIN@ # [hidden] Clipboard history >> clipboard (fallback)
|
||||||
|
bindd = Super, Period, Copy an emoji, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || pkill fuzzel || ~/.config/hypr/scripts/fuzzel-emoji.sh copy # [hidden] Emoji >> clipboard (fallback)
|
||||||
|
bindd = Super+Shift, S, Screen snip, exec, @QUICKSHELL_BIN@ -p ~/.config/quickshell/$qsConfig/screenshot.qml || pidof slurp || @HYPRSHOT_BIN@ --freeze --clipboard-only --mode region --silent # Screen snip
|
||||||
|
# OCR
|
||||||
|
bindd = Super+Shift, T, Character recognition,exec,@GRIM_BIN@ -g "$(@SLURP_BIN@ $SLURP_ARGS)" "tmp.png" && @TESSERACT_BIN@ "tmp.png" - | @WL_COPY_BIN@ && rm "tmp.png" # [hidden]
|
||||||
|
# Color picker
|
||||||
|
bindd = Super+Shift, C, Color picker, exec, @HYPRPICKER_BIN@ -a # Pick color (Hex) >> clipboard
|
||||||
|
# Fullscreen screenshot
|
||||||
|
bindld = ,Print, Screenshot >> clipboard ,exec,@GRIM_BIN@ - | @WL_COPY_BIN@ # Screenshot >> clipboard
|
||||||
|
bindld = Ctrl,Print, Screenshot >> clipboard & save, exec, mkdir -p $(xdg-user-dir PICTURES)/Screenshots && @GRIM_BIN@ $(xdg-user-dir PICTURES)/Screenshots/Screenshot_"$(date '+%Y-%m-%d_%H.%M.%S')".png # Screenshot >> clipboard & file
|
||||||
|
# Recording stuff
|
||||||
|
bindd = Super+Alt, R, Record region (no sound), exec, ~/.config/hypr/scripts/record.sh # Record region (no sound)
|
||||||
|
bindd = Ctrl+Alt, R, Record screen (no sound), exec, ~/.config/hypr/scripts/record.sh --fullscreen # [hidden] Record screen (no sound)
|
||||||
|
bindd = Super+Shift+Alt, R, Record screen (with sound), exec, ~/.config/hypr/scripts/record.sh --fullscreen-sound # Record screen (with sound)
|
||||||
|
# AI
|
||||||
|
bindd = Super+Shift+Alt, mouse:273, Generate AI summary for selected text, exec, ~/.config/hypr/scripts/ai/primary-buffer-query.sh # AI summary for selected text
|
||||||
|
|
||||||
|
#!
|
||||||
|
##! Window
|
||||||
|
# Focusing
|
||||||
|
bindm = Super, mouse:272, movewindow # Move
|
||||||
|
bindm = Super, mouse:274, movewindow # [hidden]
|
||||||
|
bindm = Super, mouse:273, resizewindow # Resize
|
||||||
|
#/# bind = Super, ←/↑/→/↓,, # Focus in direction
|
||||||
|
bind = Super, Left, movefocus, l # [hidden]
|
||||||
|
bind = Super, Right, movefocus, r # [hidden]
|
||||||
|
bind = Super, Up, movefocus, u # [hidden]
|
||||||
|
bind = Super, Down, movefocus, d # [hidden]
|
||||||
|
bind = Super, BracketLeft, movefocus, l # [hidden]
|
||||||
|
bind = Super, BracketRight, movefocus, r # [hidden]
|
||||||
|
#/# bind = Super+Shift, ←/↑/→/↓,, # Move in direction
|
||||||
|
bind = Super+Shift, Left, movewindow, l # [hidden]
|
||||||
|
bind = Super+Shift, Right, movewindow, r # [hidden]
|
||||||
|
bind = Super+Shift, Up, movewindow, u # [hidden]
|
||||||
|
bind = Super+Shift, Down, movewindow, d # [hidden]
|
||||||
|
bind = Alt, F4, killactive, # [hidden] Close (Windows)
|
||||||
|
bind = Super, Q, killactive, # Close
|
||||||
|
bind = Super+Shift+Alt, Q, exec, hyprctl kill # Forcefully zap a window
|
||||||
|
|
||||||
|
# Window split ratio
|
||||||
|
#/# binde = Super, ;/',, # Adjust split ratio
|
||||||
|
binde = Super, Semicolon, splitratio, -0.1 # [hidden]
|
||||||
|
binde = Super, Apostrophe, splitratio, +0.1 # [hidden]
|
||||||
|
# Positioning mode
|
||||||
|
bind = Super+Alt, Space, togglefloating, # Float/Tile
|
||||||
|
bind = Super, D, fullscreen, 1 # Maximize
|
||||||
|
bind = Super, F, fullscreen, 0 # Fullscreen
|
||||||
|
bind = Super+Alt, F, fullscreenstate, 0 3 # Fullscreen spoof
|
||||||
|
bind = Super, P, pin # Pin
|
||||||
|
|
||||||
|
#/# bind = Super+Alt, Hash,, # Send to workspace # (1, 2, 3,...)
|
||||||
|
bind = Super+Alt, 1, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 1 # [hidden]
|
||||||
|
bind = Super+Alt, 2, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 2 # [hidden]
|
||||||
|
bind = Super+Alt, 3, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 3 # [hidden]
|
||||||
|
bind = Super+Alt, 4, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 4 # [hidden]
|
||||||
|
bind = Super+Alt, 5, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 5 # [hidden]
|
||||||
|
bind = Super+Alt, 6, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 6 # [hidden]
|
||||||
|
bind = Super+Alt, 7, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 7 # [hidden]
|
||||||
|
bind = Super+Alt, 8, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 8 # [hidden]
|
||||||
|
bind = Super+Alt, 9, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 9 # [hidden]
|
||||||
|
bind = Super+Alt, 0, exec, ~/.config/hypr/scripts/workspace_action.sh movetoworkspacesilent 10 # [hidden]
|
||||||
|
|
||||||
|
# #/# bind = Super+Shift, Scroll ↑/↓,, # Send to workspace left/right
|
||||||
|
bind = Super+Shift, mouse_down, movetoworkspace, r-1 # [hidden]
|
||||||
|
bind = Super+Shift, mouse_up, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Super+Alt, mouse_down, movetoworkspace, -1 # [hidden]
|
||||||
|
bind = Super+Alt, mouse_up, movetoworkspace, +1 # [hidden]
|
||||||
|
|
||||||
|
#/# bind = Super+Shift, Page_↑/↓,, # Send to workspace left/right
|
||||||
|
bind = Super+Alt, Page_Down, movetoworkspace, +1 # [hidden]
|
||||||
|
bind = Super+Alt, Page_Up, movetoworkspace, -1 # [hidden]
|
||||||
|
bind = Super+Shift, Page_Down, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Super+Shift, Page_Up, movetoworkspace, r-1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Shift, Right, movetoworkspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Shift, Left, movetoworkspace, r-1 # [hidden]
|
||||||
|
|
||||||
|
bind = Super+Alt, S, movetoworkspacesilent, special # Send to scratchpad
|
||||||
|
|
||||||
|
bind = Ctrl+Super, S, togglespecialworkspace, # [hidden]
|
||||||
|
bind = Alt, Tab, cyclenext # [hidden] sus keybind
|
||||||
|
bind = Alt, Tab, bringactivetotop, # [hidden] bring it to the top
|
||||||
|
|
||||||
|
##! Workspace
|
||||||
|
# Switching
|
||||||
|
#/# bind = Super, Hash,, # Focus workspace # (1, 2, 3,...)
|
||||||
|
bind = Super, 1, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 1 # [hidden]
|
||||||
|
bind = Super, 2, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 2 # [hidden]
|
||||||
|
bind = Super, 3, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 3 # [hidden]
|
||||||
|
bind = Super, 4, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 4 # [hidden]
|
||||||
|
bind = Super, 5, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 5 # [hidden]
|
||||||
|
bind = Super, 6, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 6 # [hidden]
|
||||||
|
bind = Super, 7, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 7 # [hidden]
|
||||||
|
bind = Super, 8, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 8 # [hidden]
|
||||||
|
bind = Super, 9, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 9 # [hidden]
|
||||||
|
bind = Super, 0, exec, ~/.config/hypr/scripts/workspace_action.sh workspace 10 # [hidden]
|
||||||
|
|
||||||
|
#/# bind = Ctrl+Super, ←/→,, # Focus left/right
|
||||||
|
bind = Ctrl+Super, Right, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Left, workspace, r-1 # [hidden]
|
||||||
|
#/# bind = Ctrl+Super+Alt, ←/→,, # [hidden] Focus busy left/right
|
||||||
|
bind = Ctrl+Super+Alt, Right, workspace, m+1 # [hidden]
|
||||||
|
bind = Ctrl+Super+Alt, Left, workspace, m-1 # [hidden]
|
||||||
|
#/# bind = Super, Page_↑/↓,, # Focus left/right
|
||||||
|
bind = Super, Page_Down, workspace, +1 # [hidden]
|
||||||
|
bind = Super, Page_Up, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Page_Down, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Page_Up, workspace, r-1 # [hidden]
|
||||||
|
#/# bind = Super, Scroll ↑/↓,, # Focus left/right
|
||||||
|
bind = Super, mouse_up, workspace, +1 # [hidden]
|
||||||
|
bind = Super, mouse_down, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, mouse_up, workspace, r+1 # [hidden]
|
||||||
|
bind = Ctrl+Super, mouse_down, workspace, r-1 # [hidden]
|
||||||
|
## Special
|
||||||
|
bind = Super, S, togglespecialworkspace, # Toggle scratchpad
|
||||||
|
bind = Super, mouse:275, togglespecialworkspace, # [hidden]
|
||||||
|
bind = Ctrl+Super, BracketLeft, workspace, -1 # [hidden]
|
||||||
|
bind = Ctrl+Super, BracketRight, workspace, +1 # [hidden]
|
||||||
|
bind = Ctrl+Super, Up, workspace, r-5 # [hidden]
|
||||||
|
bind = Ctrl+Super, Down, workspace, r+5 # [hidden]
|
||||||
|
|
||||||
|
#!
|
||||||
|
# Testing
|
||||||
|
bind = Super+Alt, f11, exec, bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | grep -v -i "nipple" | grep -v -i "pussy" | shuf -n 1); ACTION=$(notify-send "Test notification with body image" "This notification should contain your user account <b>image</b> and <a href=\"https://discord.com/app\">Discord</a> <b>icon</b>. Oh and here is a random image in your Pictures folder: <img src=\"$RANDOM_IMAGE\" alt=\"Testing image\"/>" -a "Hyprland keybind" -p -h "string:image-path:/var/lib/AccountsService/icons/$USER" -t 6000 -i "discord" -A "openImage=Open profile image" -A "action2=Open the random image" -A "action3=Useless button"); [[ $ACTION == *openImage ]] && xdg-open "/var/lib/AccountsService/icons/$USER"; [[ $ACTION == *action2 ]] && xdg-open \"$RANDOM_IMAGE\"' # [hidden]
|
||||||
|
bind = Super+Alt, f12, exec, bash -c 'RANDOM_IMAGE=$(find ~/Pictures -type f | grep -v -i "nipple" | grep -v -i "pussy" | shuf -n 1); ACTION=$(notify-send "Test notification" "This notification should contain a random image in your <b>Pictures</b> folder and <a href=\"https://discord.com/app\">Discord</a> <b>icon</b>.\n<i>Flick right to dismiss!</i>" -a "Discord (fake)" -p -h "string:image-path:$RANDOM_IMAGE" -t 6000 -i "discord" -A "openImage=Open profile image" -A "action2=Useless button" -A "action3=Cry more"); [[ $ACTION == *openImage ]] && xdg-open "/var/lib/AccountsService/icons/$USER"' # [hidden]
|
||||||
|
bind = Super+Alt, Equal, exec, notify-send "Urgent notification" "Ah hell no" -u critical -a 'Hyprland keybind' # [hidden]
|
||||||
|
|
||||||
|
##! Session
|
||||||
|
bindd = Super, L, Lock, exec, loginctl lock-session # Lock
|
||||||
|
bind = Super+Shift, L, exec, loginctl lock-session # [hidden]
|
||||||
|
bindld = Super+Shift, L, Suspend system, exec, sleep 0.1 && systemctl suspend || loginctl suspend # Sleep
|
||||||
|
bindd = Ctrl+Shift+Alt+Super, Delete, Shutdown, exec, systemctl poweroff || loginctl poweroff # [hidden] Power off
|
||||||
|
|
||||||
|
##! Screen
|
||||||
|
# Zoom
|
||||||
|
binde = Super, Minus, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call zoom zoomOut # Zoom out
|
||||||
|
binde = Super, Equal, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call zoom zoomIn # Zoom in
|
||||||
|
binde = Super, Minus, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || ~/.config/hypr/scripts/zoom.sh decrease 0.1 # [hidden] Zoom out
|
||||||
|
binde = Super, Equal, exec, @QUICKSHELL_BIN@ -c $qsConfig ipc call TEST_ALIVE || ~/.config/hypr/scripts/zoom.sh increase 0.1 # [hidden] Zoom in
|
||||||
|
|
||||||
|
##! Media
|
||||||
|
bindl= Super+Shift, N, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # Next track
|
||||||
|
bindl= ,XF86AudioNext, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # [hidden]
|
||||||
|
bindl= ,XF86AudioPrev, exec, @PLAYERCTL_BIN@ previous # [hidden]
|
||||||
|
bind = Super+Shift+Alt, mouse:275, exec, @PLAYERCTL_BIN@ previous # [hidden]
|
||||||
|
bind = Super+Shift+Alt, mouse:276, exec, @PLAYERCTL_BIN@ next || @PLAYERCTL_BIN@ position `bc <<< "100 * $(@PLAYERCTL_BIN@ metadata mpris:length) / 1000000 / 100"` # [hidden]
|
||||||
|
bindl= Super+Shift, B, exec, @PLAYERCTL_BIN@ previous # Previous track
|
||||||
|
bindl= Super+Shift, P, exec, @PLAYERCTL_BIN@ play-pause # Play/pause media
|
||||||
|
bindl= ,XF86AudioPlay, exec, @PLAYERCTL_BIN@ play-pause # [hidden]
|
||||||
|
bindl= ,XF86AudioPause, exec, @PLAYERCTL_BIN@ play-pause # [hidden]
|
||||||
|
|
||||||
|
##! Apps
|
||||||
|
bind = Super, Return, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # Terminal
|
||||||
|
bind = Super, T, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # [hidden] Terminal (alt)
|
||||||
|
bind = Ctrl+Alt, T, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TERMINAL_APPS@" # [hidden] Terminal (Ubuntu style)
|
||||||
|
bind = Super, E, exec, ~/.config/hypr/scripts/launch_first_available.sh "@FILE_MANAGER_APPS@" # File manager
|
||||||
|
bind = Super, W, exec, ~/.config/hypr/scripts/launch_first_available.sh "@BROWSER_APPS@" # Browser
|
||||||
|
bind = Super, C, exec, ~/.config/hypr/scripts/launch_first_available.sh "@CODE_EDITOR_APPS@" # Code editor
|
||||||
|
bind = Super+Shift, W, exec, ~/.config/hypr/scripts/launch_first_available.sh "@OFFICE_APPS@" # Office software
|
||||||
|
bind = Super, X, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TEXT_EDITOR_APPS@" # Text editor
|
||||||
|
bind = Ctrl+Super, V, exec, ~/.config/hypr/scripts/launch_first_available.sh "@VOLUME_MIXER_APPS@" # Volume mixer
|
||||||
|
bind = Super, I, exec, XDG_CURRENT_DESKTOP=gnome ~/.config/hypr/scripts/launch_first_available.sh "@SETTINGS_APPS@" # Settings app
|
||||||
|
bind = Ctrl+Shift, Escape, exec, ~/.config/hypr/scripts/launch_first_available.sh "@TASK_MANAGER_APPS@" # Task manager
|
||||||
|
|
||||||
|
# Cursed stuff
|
||||||
|
## Make window not amogus large
|
||||||
|
bind = Ctrl+Super, Backslash, resizeactive, exact 640 480 # [hidden]
|
||||||
|
|
||||||
|
@CUSTOM_KEYBINDS@
|
||||||
@@ -0,0 +1,161 @@
|
|||||||
|
# ######## Window rules ########
|
||||||
|
|
||||||
|
# Global transparency (uncomment to apply to all windows)
|
||||||
|
@GLOBAL_TRANSPARENCY@
|
||||||
|
|
||||||
|
# Disable blur for xwayland context menus
|
||||||
|
windowrulev2 = noblur,class:^()$,title:^()$
|
||||||
|
|
||||||
|
# Floating windows
|
||||||
|
windowrulev2 = float, class:^(blueberry\.py)$
|
||||||
|
windowrulev2 = float, class:^(guifetch)$ # FlafyDev/guifetch
|
||||||
|
windowrulev2 = float, class:^(pavucontrol)$
|
||||||
|
windowrulev2 = size 45%, class:^(pavucontrol)$
|
||||||
|
windowrulev2 = center, class:^(pavucontrol)$
|
||||||
|
windowrulev2 = float, class:^(org.pulseaudio.pavucontrol)$
|
||||||
|
windowrulev2 = size 45%, class:^(org.pulseaudio.pavucontrol)$
|
||||||
|
windowrulev2 = center, class:^(org.pulseaudio.pavucontrol)$
|
||||||
|
windowrulev2 = float, class:^(nm-connection-editor)$
|
||||||
|
windowrulev2 = size 45%, class:^(nm-connection-editor)$
|
||||||
|
windowrulev2 = center, class:^(nm-connection-editor)$
|
||||||
|
windowrulev2 = float, class:.*plasmawindowed.*
|
||||||
|
windowrulev2 = float, class:kcm_.*
|
||||||
|
windowrulev2 = float, class:.*bluedevilwizard
|
||||||
|
windowrulev2 = float, title:.*Welcome
|
||||||
|
windowrulev2 = float, title:^(illogical-impulse Settings)$
|
||||||
|
windowrulev2 = float, class:org.freedesktop.impl.portal.desktop.kde
|
||||||
|
windowrulev2 = float, class:^(Zotero)$
|
||||||
|
windowrulev2 = size 45%, class:^(Zotero)$
|
||||||
|
|
||||||
|
# Special positioning
|
||||||
|
# kde-material-you-colors spawns a window when changing dark/light theme
|
||||||
|
windowrulev2 = float, class:^(plasma-changeicons)$
|
||||||
|
windowrulev2 = noinitialfocus, class:^(plasma-changeicons)$
|
||||||
|
windowrulev2 = move 999999 999999, class:^(plasma-changeicons)$
|
||||||
|
# Dolphin copy dialog
|
||||||
|
windowrulev2 = move 40 80, title:^(Copying — Dolphin)$
|
||||||
|
|
||||||
|
# Force tiling for specific apps
|
||||||
|
windowrulev2 = tile, class:^dev\.warp\.Warp$
|
||||||
|
|
||||||
|
# Picture-in-Picture
|
||||||
|
windowrulev2 = float, title:^([Pp]icture[-\s]?[Ii]n[-\s]?[Pp]icture)(.*)$
|
||||||
|
windowrulev2 = keepaspectratio, title:^([Pp]icture[-\s]?[Ii]n[-\s]?[Pp]icture)(.*)$
|
||||||
|
windowrulev2 = move 73% 72%, title:^([Pp]icture[-\s]?[Ii]n[-\s]?[Pp]icture)(.*)$
|
||||||
|
windowrulev2 = size 25%, title:^([Pp]icture[-\s]?[Ii]n[-\s]?[Pp]icture)(.*)$
|
||||||
|
windowrulev2 = pin, title:^([Pp]icture[-\s]?[Ii]n[-\s]?[Pp]icture)(.*)$
|
||||||
|
|
||||||
|
# Dialog windows – float+center these windows
|
||||||
|
windowrulev2 = center, title:^(Open File)(.*)$
|
||||||
|
windowrulev2 = center, title:^(Select a File)(.*)$
|
||||||
|
windowrulev2 = center, title:^(Choose wallpaper)(.*)$
|
||||||
|
windowrulev2 = center, title:^(Open Folder)(.*)$
|
||||||
|
windowrulev2 = center, title:^(Save As)(.*)$
|
||||||
|
windowrulev2 = center, title:^(Library)(.*)$
|
||||||
|
windowrulev2 = center, title:^(File Upload)(.*)$
|
||||||
|
windowrulev2 = center, title:^(.*)(wants to save)$
|
||||||
|
windowrulev2 = center, title:^(.*)(wants to open)$
|
||||||
|
windowrulev2 = float, title:^(Open File)(.*)$
|
||||||
|
windowrulev2 = float, title:^(Select a File)(.*)$
|
||||||
|
windowrulev2 = float, title:^(Choose wallpaper)(.*)$
|
||||||
|
windowrulev2 = float, title:^(Open Folder)(.*)$
|
||||||
|
windowrulev2 = float, title:^(Save As)(.*)$
|
||||||
|
windowrulev2 = float, title:^(Library)(.*)$
|
||||||
|
windowrulev2 = float, title:^(File Upload)(.*)$
|
||||||
|
windowrulev2 = float, title:^(.*)(wants to save)$
|
||||||
|
windowrulev2 = float, title:^(.*)(wants to open)$
|
||||||
|
|
||||||
|
# --- Tearing for gaming ---
|
||||||
|
windowrulev2 = immediate, title:.*\.exe
|
||||||
|
windowrulev2 = immediate, title:.*minecraft.*
|
||||||
|
windowrulev2 = immediate, class:^(steam_app).*
|
||||||
|
|
||||||
|
# No shadow for tiled windows
|
||||||
|
windowrulev2 = noshadow, floating:0
|
||||||
|
|
||||||
|
# ######## Workspace rules ########
|
||||||
|
workspace = special:special, gapsout:30
|
||||||
|
|
||||||
|
# ######## Layer rules ########
|
||||||
|
layerrule = xray 1, .*
|
||||||
|
|
||||||
|
# No animations for specific layers
|
||||||
|
layerrule = noanim, walker
|
||||||
|
layerrule = noanim, selection
|
||||||
|
layerrule = noanim, overview
|
||||||
|
layerrule = noanim, anyrun
|
||||||
|
layerrule = noanim, indicator.*
|
||||||
|
layerrule = noanim, osk
|
||||||
|
layerrule = noanim, hyprpicker
|
||||||
|
layerrule = noanim, noanim
|
||||||
|
|
||||||
|
# GTK layer shell
|
||||||
|
layerrule = blur, gtk-layer-shell
|
||||||
|
layerrule = ignorezero, gtk-layer-shell
|
||||||
|
|
||||||
|
# Launcher
|
||||||
|
layerrule = blur, launcher
|
||||||
|
layerrule = ignorealpha 0.5, launcher
|
||||||
|
|
||||||
|
# Notifications
|
||||||
|
layerrule = blur, notifications
|
||||||
|
layerrule = ignorealpha 0.69, notifications
|
||||||
|
|
||||||
|
# Logout dialog
|
||||||
|
layerrule = blur, logout_dialog # wlogout
|
||||||
|
|
||||||
|
# AGS layers
|
||||||
|
layerrule = animation slide left, sideleft.*
|
||||||
|
layerrule = animation slide right, sideright.*
|
||||||
|
layerrule = blur, session[0-9]*
|
||||||
|
layerrule = blur, bar[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, bar[0-9]*
|
||||||
|
layerrule = blur, barcorner.*
|
||||||
|
layerrule = ignorealpha 0.6, barcorner.*
|
||||||
|
layerrule = blur, dock[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, dock[0-9]*
|
||||||
|
layerrule = blur, indicator.*
|
||||||
|
layerrule = ignorealpha 0.6, indicator.*
|
||||||
|
layerrule = blur, overview[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, overview[0-9]*
|
||||||
|
layerrule = blur, cheatsheet[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, cheatsheet[0-9]*
|
||||||
|
layerrule = blur, sideright[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, sideright[0-9]*
|
||||||
|
layerrule = blur, sideleft[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, sideleft[0-9]*
|
||||||
|
layerrule = blur, osk[0-9]*
|
||||||
|
layerrule = ignorealpha 0.6, osk[0-9]*
|
||||||
|
|
||||||
|
# Quickshell layers
|
||||||
|
layerrule = blurpopups, quickshell:.*
|
||||||
|
layerrule = blur, quickshell:.*
|
||||||
|
layerrule = ignorealpha 0.79, quickshell:.*
|
||||||
|
layerrule = animation slide top, quickshell:bar
|
||||||
|
layerrule = animation fade, quickshell:screenCorners
|
||||||
|
layerrule = animation slide right, quickshell:sidebarRight
|
||||||
|
layerrule = animation slide left, quickshell:sidebarLeft
|
||||||
|
layerrule = animation slide bottom, quickshell:osk
|
||||||
|
layerrule = animation slide bottom, quickshell:dock
|
||||||
|
layerrule = blur, quickshell:session
|
||||||
|
layerrule = noanim, quickshell:session
|
||||||
|
layerrule = ignorealpha 0, quickshell:session
|
||||||
|
layerrule = animation fade, quickshell:notificationPopup
|
||||||
|
layerrule = blur, quickshell:backgroundWidgets
|
||||||
|
layerrule = ignorealpha 0.05, quickshell:backgroundWidgets
|
||||||
|
layerrule = noanim, quickshell:screenshot
|
||||||
|
layerrule = animation popin 120%, quickshell:screenCorners
|
||||||
|
layerrule = noanim, quickshell:lockWindowPusher
|
||||||
|
|
||||||
|
# Launchers need to be FAST
|
||||||
|
layerrule = noanim, quickshell:overview
|
||||||
|
layerrule = noanim, gtk4-layer-shell
|
||||||
|
|
||||||
|
# Outfoxxed's shell layers
|
||||||
|
layerrule = blur, shell:bar
|
||||||
|
layerrule = ignorezero, shell:bar
|
||||||
|
layerrule = blur, shell:notifications
|
||||||
|
layerrule = ignorealpha 0.1, shell:notifications
|
||||||
|
|
||||||
|
# Custom window rules
|
||||||
|
@CUSTOM_WINDOW_RULES@
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Launch the first available application from a list
|
||||||
|
for cmd in "$@"; do
|
||||||
|
eval "command -v ${cmd%% *}" >/dev/null 2>&1 || continue
|
||||||
|
eval "$cmd" &
|
||||||
|
exit
|
||||||
|
done
|
||||||
|
exit 1
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Workspace action script for dots-hyprland
|
||||||
|
hyprctl dispatch "$1" $(((($(hyprctl activeworkspace -j | jq -r .id) - 1) / 10) * 10 + $2))
|
||||||
@@ -0,0 +1,214 @@
|
|||||||
|
# dots-hyprland keybindings adapted for quickshell
|
||||||
|
# Based on /home/celes/.config/hypr/custom/keybinds.conf
|
||||||
|
|
||||||
|
# Key definitions
|
||||||
|
$Primary = Super
|
||||||
|
$Secondary = Control
|
||||||
|
$Tertiary = Shift
|
||||||
|
$Alternate = Alt
|
||||||
|
$MenuButton = Menu
|
||||||
|
|
||||||
|
# ################### It just works™ keybinds ###################
|
||||||
|
# Volume
|
||||||
|
bindl = ,XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||||
|
bindle = , XF86AudioRaiseVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
|
||||||
|
bindle = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
|
||||||
|
|
||||||
|
# Brightness (adapted for quickshell)
|
||||||
|
bindle = , XF86MonBrightnessUp, exec, brightnessctl set '12.75+'
|
||||||
|
bindle = , XF86MonBrightnessDown, exec, brightnessctl set '12.75-'
|
||||||
|
|
||||||
|
# ####################################### Applications ########################################
|
||||||
|
# Core applications
|
||||||
|
bind = $Primary, Return, exec, foot
|
||||||
|
bind = $Primary, E, exec, nautilus
|
||||||
|
bind = $Primary, W, exec, firefox
|
||||||
|
bind = $Primary, C, exec, code
|
||||||
|
|
||||||
|
# Music applications
|
||||||
|
bind = $Primary$Secondary, M, exec, tidal-hifi
|
||||||
|
bind = $Primary$Secondary$Tertiary, M, exec, env -u NIXOS_OZONE_WL cider --use-gl=desktop
|
||||||
|
bind = $Primary$Secondary$Alternate, M, exec, spotify
|
||||||
|
|
||||||
|
# Communication
|
||||||
|
bind = $Primary$Secondary, O, exec, vesktop
|
||||||
|
|
||||||
|
# Terminals
|
||||||
|
bind = $Primary$Secondary, H, exec, foot
|
||||||
|
bind = $Primary$Secondary$Tertiary, T, exec, foot sleep 0.01 && nmtui
|
||||||
|
|
||||||
|
# File managers
|
||||||
|
bind = $Primary$Secondary, J, exec, thunar
|
||||||
|
bind = $Primary$Secondary$Tertiary, J, exec, nautilus
|
||||||
|
|
||||||
|
# Browsers
|
||||||
|
bind = $Primary$Secondary, B, exec, firefox
|
||||||
|
bind = $Primary$Secondary$Tertiary, B, exec, chromium
|
||||||
|
|
||||||
|
# Editors
|
||||||
|
bind = $Primary$Secondary, X, exec, subl
|
||||||
|
bind = $Primary$Secondary, C, exec, code
|
||||||
|
bind = $Primary$Secondary$Tertiary, C, exec, jetbrains-toolbox
|
||||||
|
|
||||||
|
# Calculator
|
||||||
|
bind = $Primary$Secondary, 3, exec, ~/.local/bin/wofi-calc
|
||||||
|
bind = ,XF86Calculator, exec, ~/.local/bin/wofi-calc
|
||||||
|
|
||||||
|
# System settings
|
||||||
|
bind = $Primary$Secondary, I, exec, XDG_CURRENT_DESKTOP="gnome" gnome-control-center
|
||||||
|
bind = $Primary$Secondary, V, exec, pavucontrol
|
||||||
|
bind = $Primary$Tertiary, Home, exec, gnome-system-monitor
|
||||||
|
bind = $Primary$Alternate, Insert, exec, foot -F btop
|
||||||
|
|
||||||
|
# Actions
|
||||||
|
bind = $Primary$Secondary, Period, exec, pkill fuzzel || ~/.local/bin/fuzzel-emoji
|
||||||
|
bind = $Alternate, F4, killactive,
|
||||||
|
bind = $Secondary$Alternate, Space, togglefloating,
|
||||||
|
bind = $Secondary$Alternate, Q, exec, hyprctl kill
|
||||||
|
bind = $Primary$Tertiary$Alternate, Delete, exec, pkill wlogout || wlogout -p layer-shell
|
||||||
|
bind = $Primary$Tertiary$Alternate$Secondary, Delete, exec, systemctl poweroff
|
||||||
|
|
||||||
|
# Screenshot, Record, OCR, Color picker, Clipboard history
|
||||||
|
bind = $Secondary$Tertiary, D, exec, ~/.local/bin/rubyshot | wl-copy
|
||||||
|
bindl = ,Print, exec, grim - | wl-copy
|
||||||
|
bind = $Secondary$Tertiary, 4, exec, grim -g "$(slurp -d -c D1E5F4BB -b 1B232866 -s 00000000)" - | wl-copy
|
||||||
|
bind = $Secondary$Tertiary, 5, exec, ~/.config/ags/scripts/record-script.sh
|
||||||
|
bind = $Secondary$Alternate, 5, exec, ~/.config/ags/scripts/record-script.sh --sound
|
||||||
|
bind = $Secondary$Tertiary$Alternate, 5, exec, ~/.config/ags/scripts/record-script.sh --fullscreen-sound
|
||||||
|
|
||||||
|
bind = $Secondary$Alternate, C, exec, hyprpicker -a
|
||||||
|
bind = $Primary$Alternate, Space, exec, cliphist list | wofi -Iim --dmenu | cliphist decode | wl-copy && wtype -M ctrl v -M ctrl
|
||||||
|
bind = $Secondary$Alternate, V, exec, cliphist list | wofi -Iim --dmenu | cliphist decode | wl-copy && wtype -M ctrl v -M ctrl
|
||||||
|
|
||||||
|
# Text-to-image OCR
|
||||||
|
bind = $Primary$Secondary$Tertiary, S, exec, grim -g "$(slurp -d -c D1E5F4BB -b 1B232866 -s 00000000)" "tmp.png" && tesseract "tmp.png" - | wl-copy && rm "tmp.png"
|
||||||
|
bind = $Secondary$Tertiary, T, exec, grim -g "$(slurp -d -c D1E5F4BB -b 1B232866 -s 00000000)" "tmp.png" && tesseract -l eng "tmp.png" - | wl-copy && rm "tmp.png"
|
||||||
|
bind = $Secondary$Tertiary, J, exec, grim -g "$(slurp -d -c D1E5F4BB -b 1B232866 -s 00000000)" "tmp.png" && tesseract -l jpn "tmp.png" - | wl-copy && rm "tmp.png"
|
||||||
|
|
||||||
|
# Media controls
|
||||||
|
bind = $Secondary$Tertiary, N, exec, playerctl next || playerctl position `bc <<< "100 * $(playerctl metadata mpris:length) / 1000000 / 100"`
|
||||||
|
bindl = , XF86AudioNext, exec, playerctl next
|
||||||
|
bindl = , XF86AudioPrev, exec, playerctl previous
|
||||||
|
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||||
|
bind = $Secondary$Tertiary, B, exec, playerctl previous
|
||||||
|
bind = $Secondary$Tertiary, P, exec, playerctl play-pause
|
||||||
|
|
||||||
|
# Lock screen
|
||||||
|
bind = $Primary$Secondary, L, exec, hyprlock
|
||||||
|
|
||||||
|
# App launcher
|
||||||
|
bind = $Primary$Secondary, Slash, exec, pkill anyrun || anyrun
|
||||||
|
|
||||||
|
# ##################################### Quickshell keybinds #####################################
|
||||||
|
# Quickshell reload and reset
|
||||||
|
bindr = $Primary$Secondary, R, exec, hyprctl reload; pkill quickshell; pkill activewin.sh; pkill activews.sh; pkill gohypr; pkill bash; pkill ydotool; ~/.local/bin/quickshell-reset.sh; /home/celes/sources/celesrenata/end-4-dev/quickshell-wrapper.sh &
|
||||||
|
|
||||||
|
# Color generation and theming
|
||||||
|
bind = $Primary$Secondary, T, exec, /home/celes/sources/celesrenata/end-4-dev/generate-colors.sh
|
||||||
|
|
||||||
|
# Quickshell widgets (adapted from AGS)
|
||||||
|
bind = $Alternate, Tab, exec, quickshell -c overview
|
||||||
|
bind = $Secondary, Space, exec, quickshell -c overview
|
||||||
|
bind = $Secondary$Alternate, Slash, exec, quickshell -c cheatsheet
|
||||||
|
bind = $Secondary, B, exec, quickshell -c sideleft
|
||||||
|
bind = $Secondary, N, exec, quickshell -c sideright
|
||||||
|
bind = $Secondary, K, exec, quickshell -c osk
|
||||||
|
bind = $Primary$Alternate, Delete, exec, quickshell -c session
|
||||||
|
|
||||||
|
# Quickshell indicators and popups
|
||||||
|
bindle = , XF86AudioRaiseVolume, exec, quickshell -c indicator-volume
|
||||||
|
bindle = , XF86AudioLowerVolume, exec, quickshell -c indicator-volume
|
||||||
|
bindle = , XF86MonBrightnessUp, exec, quickshell -c indicator-brightness
|
||||||
|
bindle = , XF86MonBrightnessDown, exec, quickshell -c indicator-brightness
|
||||||
|
|
||||||
|
# Close quickshell windows on Super release
|
||||||
|
bindr = $Primary, $Primary_R, exec, quickshell -c close-all
|
||||||
|
|
||||||
|
# ########################### Keybinds for Hyprland ############################
|
||||||
|
# Swap windows
|
||||||
|
bind = $Secondary$Tertiary, left, movewindow, l
|
||||||
|
bind = $Secondary$Tertiary, right, movewindow, r
|
||||||
|
bind = $Secondary$Tertiary, up, movewindow, u
|
||||||
|
bind = $Secondary$Tertiary, down, movewindow, d
|
||||||
|
|
||||||
|
# Move focus
|
||||||
|
bind = $Secondary, left, movefocus, l
|
||||||
|
bind = $Secondary, right, movefocus, r
|
||||||
|
bind = $Alternate, up, movefocus, u
|
||||||
|
bind = $Alternate, down, movefocus, d
|
||||||
|
bind = $Secondary, BracketLeft, movefocus, l
|
||||||
|
bind = $Secondary, BracketRight, movefocus, r
|
||||||
|
|
||||||
|
# Workspace navigation
|
||||||
|
bind = $Primary$Secondary, right, workspace, +1
|
||||||
|
bind = $Primary$Secondary, left, workspace, -1
|
||||||
|
bind = $Primary$Secondary, BracketLeft, workspace, -1
|
||||||
|
bind = $Primary$Secondary, BracketRight, workspace, +1
|
||||||
|
bind = $Primary$Secondary, up, workspace, -5
|
||||||
|
bind = $Primary$Secondary, down, workspace, +5
|
||||||
|
bind = $Secondary, Page_Down, workspace, +1
|
||||||
|
bind = $Secondary, Page_Up, workspace, -1
|
||||||
|
|
||||||
|
# Move windows to workspaces
|
||||||
|
bind = $Secondary$Alternate, Page_Down, movetoworkspace, +1
|
||||||
|
bind = $Secondary$Alternate, Page_Up, movetoworkspace, -1
|
||||||
|
bind = $Primary$Secondary$Tertiary, Right, movetoworkspace, +1
|
||||||
|
bind = $Primary$Secondary$Tertiary, Left, movetoworkspace, -1
|
||||||
|
|
||||||
|
# Window split ratio
|
||||||
|
binde = $Primary$Secondary, Minus, splitratio, -0.1
|
||||||
|
binde = $Primary$Secondary, Equal, splitratio, 0.1
|
||||||
|
binde = $Secondary, Semicolon, splitratio, -0.1
|
||||||
|
binde = $Secondary, Apostrophe, splitratio, 0.1
|
||||||
|
|
||||||
|
# Fullscreen
|
||||||
|
bind = $Primary$Secondary, F, fullscreen, 0
|
||||||
|
bind = $Primary$Secondary, D, fullscreen, 1
|
||||||
|
bind = $Secondary$Alternate, F, fullscreenstate, 0
|
||||||
|
|
||||||
|
# Workspace switching (1-10)
|
||||||
|
bind = $Secondary, 1, workspace, 1
|
||||||
|
bind = $Secondary, 2, workspace, 2
|
||||||
|
bind = $Secondary, 3, workspace, 3
|
||||||
|
bind = $Secondary, 4, workspace, 4
|
||||||
|
bind = $Secondary, 5, workspace, 5
|
||||||
|
bind = $Secondary, 6, workspace, 6
|
||||||
|
bind = $Secondary, 7, workspace, 7
|
||||||
|
bind = $Secondary, 8, workspace, 8
|
||||||
|
bind = $Secondary, 9, workspace, 9
|
||||||
|
bind = $Secondary, 0, workspace, 10
|
||||||
|
bind = $Primary$Secondary, S, togglespecialworkspace,
|
||||||
|
|
||||||
|
# Move window to workspace silently
|
||||||
|
bind = $Secondary $Alternate, 1, movetoworkspacesilent, 1
|
||||||
|
bind = $Secondary $Alternate, 2, movetoworkspacesilent, 2
|
||||||
|
bind = $Secondary $Alternate, 3, movetoworkspacesilent, 3
|
||||||
|
bind = $Secondary $Alternate, 4, movetoworkspacesilent, 4
|
||||||
|
bind = $Secondary $Alternate, 5, movetoworkspacesilent, 5
|
||||||
|
bind = $Secondary $Alternate, 6, movetoworkspacesilent, 6
|
||||||
|
bind = $Secondary $Alternate, 7, movetoworkspacesilent, 7
|
||||||
|
bind = $Secondary $Alternate, 8, movetoworkspacesilent, 8
|
||||||
|
bind = $Secondary $Alternate, 9, movetoworkspacesilent, 9
|
||||||
|
bind = $Secondary $Alternate, 0, movetoworkspacesilent, 10
|
||||||
|
bind = $Secondary$Alternate, S, movetoworkspacesilent, special
|
||||||
|
|
||||||
|
# Mouse workspace switching
|
||||||
|
bind = $Secondary, mouse_up, workspace, +1
|
||||||
|
bind = $Secondary, mouse_down, workspace, -1
|
||||||
|
bind = $Primary$Secondary, mouse_up, workspace, +1
|
||||||
|
bind = $Primary$Secondary, mouse_down, workspace, -1
|
||||||
|
|
||||||
|
# Mouse window controls
|
||||||
|
bindm = $Primary, mouse:273, resizewindow
|
||||||
|
bindm = $Primary$Secondary, mouse:273, resizewindow
|
||||||
|
bindm = ,mouse:274, movewindow
|
||||||
|
bindm = $Secondary, mouse:273, movewindow
|
||||||
|
bind = $Primary$Secondary, Backslash, resizeactive, exact 640 480
|
||||||
|
|
||||||
|
# Alt+Tab window switching
|
||||||
|
bind = $Alternate, Tab, cyclenext
|
||||||
|
bind = $Alternate, Tab, bringactivetotop
|
||||||
|
|
||||||
|
# Testing and debugging
|
||||||
|
bind = $Secondary$Alternate, f12, exec, notify-send "Millis since epoch" "$(date +%s%N | cut -b1-13)" -a 'Hyprland keybind'
|
||||||
|
bind = $Secondary$Alternate, Equal, exec, notify-send "Urgent notification" "Ah hell no" -u critical -a 'Hyprland keybind'
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"background": "{{colors.background.default.hex}}",
|
||||||
|
"error": "{{colors.error.default.hex}}",
|
||||||
|
"error_container": "{{colors.error_container.default.hex}}",
|
||||||
|
"inverse_on_surface": "{{colors.inverse_on_surface.default.hex}}",
|
||||||
|
"inverse_primary": "{{colors.inverse_primary.default.hex}}",
|
||||||
|
"inverse_surface": "{{colors.inverse_surface.default.hex}}",
|
||||||
|
"on_background": "{{colors.on_background.default.hex}}",
|
||||||
|
"on_error": "{{colors.on_error.default.hex}}",
|
||||||
|
"on_error_container": "{{colors.on_error_container.default.hex}}",
|
||||||
|
"on_primary": "{{colors.on_primary.default.hex}}",
|
||||||
|
"on_primary_container": "{{colors.on_primary_container.default.hex}}",
|
||||||
|
"on_primary_fixed": "{{colors.on_primary_fixed.default.hex}}",
|
||||||
|
"on_primary_fixed_variant": "{{colors.on_primary_fixed_variant.default.hex}}",
|
||||||
|
"on_secondary": "{{colors.on_secondary.default.hex}}",
|
||||||
|
"on_secondary_container": "{{colors.on_secondary_container.default.hex}}",
|
||||||
|
"on_secondary_fixed": "{{colors.on_secondary_fixed.default.hex}}",
|
||||||
|
"on_secondary_fixed_variant": "{{colors.on_secondary_fixed_variant.default.hex}}",
|
||||||
|
"on_surface": "{{colors.on_surface.default.hex}}",
|
||||||
|
"on_surface_variant": "{{colors.on_surface_variant.default.hex}}",
|
||||||
|
"on_tertiary": "{{colors.on_tertiary.default.hex}}",
|
||||||
|
"on_tertiary_container": "{{colors.on_tertiary_container.default.hex}}",
|
||||||
|
"on_tertiary_fixed": "{{colors.on_tertiary_fixed.default.hex}}",
|
||||||
|
"on_tertiary_fixed_variant": "{{colors.on_tertiary_fixed_variant.default.hex}}",
|
||||||
|
"outline": "{{colors.outline.default.hex}}",
|
||||||
|
"outline_variant": "{{colors.outline_variant.default.hex}}",
|
||||||
|
"primary": "{{colors.primary.default.hex}}",
|
||||||
|
"primary_container": "{{colors.primary_container.default.hex}}",
|
||||||
|
"primary_fixed": "{{colors.primary_fixed.default.hex}}",
|
||||||
|
"primary_fixed_dim": "{{colors.primary_fixed_dim.default.hex}}",
|
||||||
|
"scrim": "{{colors.scrim.default.hex}}",
|
||||||
|
"secondary": "{{colors.secondary.default.hex}}",
|
||||||
|
"secondary_container": "{{colors.secondary_container.default.hex}}",
|
||||||
|
"secondary_fixed": "{{colors.secondary_fixed.default.hex}}",
|
||||||
|
"secondary_fixed_dim": "{{colors.secondary_fixed_dim.default.hex}}",
|
||||||
|
"shadow": "{{colors.shadow.default.hex}}",
|
||||||
|
"surface": "{{colors.surface.default.hex}}",
|
||||||
|
"surface_bright": "{{colors.surface_bright.default.hex}}",
|
||||||
|
"surface_container": "{{colors.surface_container.default.hex}}",
|
||||||
|
"surface_container_high": "{{colors.surface_container_high.default.hex}}",
|
||||||
|
"surface_container_highest": "{{colors.surface_container_highest.default.hex}}",
|
||||||
|
"surface_container_low": "{{colors.surface_container_low.default.hex}}",
|
||||||
|
"surface_container_lowest": "{{colors.surface_container_lowest.default.hex}}",
|
||||||
|
"surface_dim": "{{colors.surface_dim.default.hex}}",
|
||||||
|
"surface_variant": "{{colors.surface_variant.default.hex}}",
|
||||||
|
"tertiary": "{{colors.tertiary.default.hex}}",
|
||||||
|
"tertiary_container": "{{colors.tertiary_container.default.hex}}",
|
||||||
|
"tertiary_fixed": "{{colors.tertiary_fixed.default.hex}}",
|
||||||
|
"tertiary_fixed_dim": "{{colors.tertiary_fixed_dim.default.hex}}"
|
||||||
|
}
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
# Material You themed foot terminal configuration
|
||||||
|
|
||||||
|
[main]
|
||||||
|
shell=fish
|
||||||
|
term=xterm-256color
|
||||||
|
title=foot
|
||||||
|
font=JetBrainsMono Nerd Font:size=11
|
||||||
|
letter-spacing=0
|
||||||
|
dpi-aware=no
|
||||||
|
pad=25x25
|
||||||
|
bold-text-in-bright=no
|
||||||
|
|
||||||
|
[scrollback]
|
||||||
|
lines=10000
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
style=beam
|
||||||
|
blink=no
|
||||||
|
beam-thickness=1.5
|
||||||
|
color={{colors.primary.default.hex}} {{colors.on_primary.default.hex}}
|
||||||
|
|
||||||
|
[key-bindings]
|
||||||
|
scrollback-up-page=Page_Up
|
||||||
|
scrollback-down-page=Page_Down
|
||||||
|
clipboard-copy=Control+c
|
||||||
|
clipboard-paste=Control+v
|
||||||
|
search-start=Control+f
|
||||||
|
font-increase=Control+plus Control+equal Control+KP_Add
|
||||||
|
font-decrease=Control+minus Control+KP_Subtract
|
||||||
|
font-reset=Control+0 Control+KP_0
|
||||||
|
|
||||||
|
[search-bindings]
|
||||||
|
cancel=Escape
|
||||||
|
find-prev=Shift+F3
|
||||||
|
find-next=F3 Control+G
|
||||||
|
delete-prev-word=Control+BackSpace
|
||||||
|
|
||||||
|
[text-bindings]
|
||||||
|
\x03=Control+Shift+c
|
||||||
|
|
||||||
|
[colors]
|
||||||
|
alpha=0.95
|
||||||
|
background={{colors.background.default.hex}}
|
||||||
|
foreground={{colors.on_background.default.hex}}
|
||||||
|
|
||||||
|
# Material You color palette
|
||||||
|
regular0={{colors.surface_dim.default.hex}}
|
||||||
|
regular1={{colors.error.default.hex}}
|
||||||
|
regular2={{colors.secondary.default.hex}}
|
||||||
|
regular3={{colors.tertiary.default.hex}}
|
||||||
|
regular4={{colors.primary.default.hex}}
|
||||||
|
regular5={{colors.error_container.default.hex}}
|
||||||
|
regular6={{colors.primary_container.default.hex}}
|
||||||
|
regular7={{colors.on_surface.default.hex}}
|
||||||
|
|
||||||
|
bright0={{colors.surface_variant.default.hex}}
|
||||||
|
bright1={{colors.error.default.hex}}
|
||||||
|
bright2={{colors.secondary.default.hex}}
|
||||||
|
bright3={{colors.tertiary.default.hex}}
|
||||||
|
bright4={{colors.primary.default.hex}}
|
||||||
|
bright5={{colors.error_container.default.hex}}
|
||||||
|
bright6={{colors.primary_container.default.hex}}
|
||||||
|
bright7={{colors.on_background.default.hex}}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# Material You theme for Fuzzel launcher
|
||||||
|
[colors]
|
||||||
|
background={{colors.background.default.hex_stripped}}ff
|
||||||
|
text={{colors.on_background.default.hex_stripped}}ff
|
||||||
|
selection={{colors.surface_variant.default.hex_stripped}}ff
|
||||||
|
selection-text={{colors.on_surface_variant.default.hex_stripped}}ff
|
||||||
|
border={{colors.surface_variant.default.hex_stripped}}dd
|
||||||
|
match={{colors.primary.default.hex_stripped}}ff
|
||||||
|
selection-match={{colors.primary.default.hex_stripped}}ff
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* GTK Colors - Material You Theme
|
||||||
|
* Generated with Matugen
|
||||||
|
*/
|
||||||
|
|
||||||
|
@define-color accent_color {{colors.primary.default.hex}};
|
||||||
|
@define-color accent_fg_color {{colors.on_primary.default.hex}};
|
||||||
|
@define-color accent_bg_color {{colors.primary.default.hex}};
|
||||||
|
@define-color destructive_color {{colors.error.default.hex}};
|
||||||
|
@define-color destructive_bg_color {{colors.error.default.hex}};
|
||||||
|
@define-color destructive_fg_color {{colors.on_error.default.hex}};
|
||||||
|
@define-color success_color {{colors.secondary.default.hex}};
|
||||||
|
@define-color success_bg_color {{colors.secondary.default.hex}};
|
||||||
|
@define-color success_fg_color {{colors.on_secondary.default.hex}};
|
||||||
|
@define-color warning_color {{colors.tertiary.default.hex}};
|
||||||
|
@define-color warning_bg_color {{colors.tertiary.default.hex}};
|
||||||
|
@define-color warning_fg_color {{colors.on_tertiary.default.hex}};
|
||||||
|
@define-color error_color {{colors.error.default.hex}};
|
||||||
|
@define-color error_bg_color {{colors.error.default.hex}};
|
||||||
|
@define-color error_fg_color {{colors.on_error.default.hex}};
|
||||||
|
@define-color window_bg_color {{colors.background.default.hex}};
|
||||||
|
@define-color window_fg_color {{colors.on_background.default.hex}};
|
||||||
|
@define-color view_bg_color {{colors.surface.default.hex}};
|
||||||
|
@define-color view_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color headerbar_bg_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color headerbar_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color headerbar_border_color {{colors.outline_variant.default.hex}};
|
||||||
|
@define-color headerbar_backdrop_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color headerbar_shade_color {{colors.shadow.default.hex}};
|
||||||
|
@define-color card_bg_color {{colors.surface.default.hex}};
|
||||||
|
@define-color card_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color card_shade_color {{colors.shadow.default.hex}};
|
||||||
|
@define-color dialog_bg_color {{colors.surface.default.hex}};
|
||||||
|
@define-color dialog_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color popover_bg_color {{colors.surface_dim.default.hex}};
|
||||||
|
@define-color popover_fg_color {{colors.on_surface.default.hex}};
|
||||||
|
@define-color shade_color {{colors.shadow.default.hex}};
|
||||||
|
@define-color scrollbar_outline_color {{colors.outline_variant.default.hex}};
|
||||||
|
@define-color sidebar_bg_color @window_bg_color;
|
||||||
|
@define-color sidebar_fg_color @window_fg_color;
|
||||||
|
@define-color sidebar_border_color @window_bg_color;
|
||||||
|
@define-color sidebar_backdrop_color @window_bg_color;
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
# Material You colors for Hyprland
|
||||||
|
# Generated dynamically from wallpaper
|
||||||
|
|
||||||
|
# Slurp (selection tool) colors
|
||||||
|
exec = export SLURP_ARGS='-d -c {{colors.primary.default.hex_stripped}}BB -b {{colors.surface_variant.default.hex_stripped}}44 -s 00000000'
|
||||||
|
|
||||||
|
general {
|
||||||
|
col.active_border = rgba({{colors.outline.default.hex_stripped}}AA)
|
||||||
|
col.inactive_border = rgba({{colors.outline_variant.default.hex_stripped}}AA)
|
||||||
|
}
|
||||||
|
|
||||||
|
misc {
|
||||||
|
background_color = rgba({{colors.surface.dark.hex_stripped}}FF)
|
||||||
|
}
|
||||||
|
|
||||||
|
plugin {
|
||||||
|
hyprbars {
|
||||||
|
# Font configuration
|
||||||
|
bar_text_font = Rubik, Geist, AR One Sans, Reddit Sans, Inter, Roboto, Ubuntu, Noto Sans, sans-serif
|
||||||
|
bar_height = 30
|
||||||
|
bar_padding = 10
|
||||||
|
bar_button_padding = 5
|
||||||
|
bar_precedence_over_border = true
|
||||||
|
bar_part_of_window = true
|
||||||
|
|
||||||
|
bar_color = rgba({{colors.background.default.hex_stripped}}FF)
|
||||||
|
col.text = rgba({{colors.on_background.default.hex_stripped}}FF)
|
||||||
|
|
||||||
|
# Window control buttons (R -> L)
|
||||||
|
hyprbars-button = rgb({{colors.on_background.default.hex_stripped}}), 13, , hyprctl dispatch killactive
|
||||||
|
hyprbars-button = rgb({{colors.on_background.default.hex_stripped}}), 13, , hyprctl dispatch fullscreen 1
|
||||||
|
hyprbars-button = rgb({{colors.on_background.default.hex_stripped}}), 13, , hyprctl dispatch movetoworkspacesilent special
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Special window border colors
|
||||||
|
windowrulev2 = bordercolor rgba({{colors.primary.default.hex_stripped}}AA) rgba({{colors.primary.default.hex_stripped}}77),pinned:1
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
# Material You themed Hyprlock configuration
|
||||||
|
|
||||||
|
$text_color = rgba({{colors.on_background.default.hex_stripped}}FF)
|
||||||
|
$entry_background_color = rgba({{colors.surface_variant.default.hex_stripped}}11)
|
||||||
|
$entry_border_color = rgba({{colors.outline.default.hex_stripped}}55)
|
||||||
|
$entry_color = rgba({{colors.on_surface_variant.default.hex_stripped}}FF)
|
||||||
|
$font_family = Rubik Light
|
||||||
|
$font_family_clock = Rubik Light
|
||||||
|
|
||||||
|
background {
|
||||||
|
color = rgba({{colors.background.default.hex_stripped}}FF)
|
||||||
|
path = screenshot
|
||||||
|
blur_passes = 3
|
||||||
|
blur_size = 8
|
||||||
|
}
|
||||||
|
|
||||||
|
input-field {
|
||||||
|
monitor =
|
||||||
|
size = 250, 50
|
||||||
|
outline_thickness = 2
|
||||||
|
dots_size = 0.1
|
||||||
|
dots_spacing = 0.3
|
||||||
|
outer_color = $entry_border_color
|
||||||
|
inner_color = $entry_background_color
|
||||||
|
font_color = $entry_color
|
||||||
|
fade_on_empty = true
|
||||||
|
placeholder_text = <i>Password...</i>
|
||||||
|
check_color = rgba({{colors.primary.default.hex_stripped}}FF)
|
||||||
|
fail_color = rgba({{colors.error.default.hex_stripped}}FF)
|
||||||
|
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
||||||
|
|
||||||
|
position = 0, 20
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
|
|
||||||
|
# Time
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:30000] echo "$(date +"%R")"
|
||||||
|
color = $text_color
|
||||||
|
font_size = 90
|
||||||
|
font_family = $font_family_clock
|
||||||
|
position = -30, 0
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# Date
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = cmd[update:43200000] echo "$(date +"%A, %d %B %Y")"
|
||||||
|
color = $text_color
|
||||||
|
font_size = 25
|
||||||
|
font_family = $font_family
|
||||||
|
position = -30, -150
|
||||||
|
halign = right
|
||||||
|
valign = top
|
||||||
|
}
|
||||||
|
|
||||||
|
# User
|
||||||
|
label {
|
||||||
|
monitor =
|
||||||
|
text = Hi there, $USER
|
||||||
|
color = $text_color
|
||||||
|
font_size = 20
|
||||||
|
font_family = $font_family
|
||||||
|
position = 0, 100
|
||||||
|
halign = center
|
||||||
|
valign = center
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{{colors.primary.default.hex}}
|
||||||
@@ -0,0 +1,249 @@
|
|||||||
|
# kitty terminal configuration with Material You theming
|
||||||
|
# Generated by matugen from wallpaper colors
|
||||||
|
|
||||||
|
# Font configuration
|
||||||
|
font_family JetBrainsMono Nerd Font
|
||||||
|
bold_font JetBrainsMono Nerd Font Bold
|
||||||
|
italic_font JetBrainsMono Nerd Font Italic
|
||||||
|
bold_italic_font JetBrainsMono Nerd Font Bold Italic
|
||||||
|
font_size 12.0
|
||||||
|
|
||||||
|
# Cursor
|
||||||
|
cursor_shape block
|
||||||
|
cursor_blink_interval 0.5
|
||||||
|
cursor_stop_blinking_after 15.0
|
||||||
|
|
||||||
|
# Scrollback
|
||||||
|
scrollback_lines 10000
|
||||||
|
scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER
|
||||||
|
|
||||||
|
# Mouse
|
||||||
|
mouse_hide_wait 3.0
|
||||||
|
url_color {{colors.primary.default.hex}}
|
||||||
|
url_style curly
|
||||||
|
open_url_with default
|
||||||
|
copy_on_select yes
|
||||||
|
strip_trailing_spaces never
|
||||||
|
|
||||||
|
# Performance
|
||||||
|
repaint_delay 10
|
||||||
|
input_delay 3
|
||||||
|
sync_to_monitor yes
|
||||||
|
|
||||||
|
# Window layout
|
||||||
|
remember_window_size yes
|
||||||
|
initial_window_width 100c
|
||||||
|
initial_window_height 30c
|
||||||
|
enabled_layouts *
|
||||||
|
window_resize_step_cells 2
|
||||||
|
window_resize_step_lines 2
|
||||||
|
window_border_width 1pt
|
||||||
|
draw_minimal_borders yes
|
||||||
|
window_margin_width 0
|
||||||
|
single_window_margin_width -1
|
||||||
|
window_padding_width 8
|
||||||
|
placement_strategy center
|
||||||
|
active_border_color {{colors.primary.default.hex}}
|
||||||
|
inactive_border_color {{colors.outline.default.hex}}
|
||||||
|
bell_border_color {{colors.error.default.hex}}
|
||||||
|
|
||||||
|
# Tab bar
|
||||||
|
tab_bar_edge bottom
|
||||||
|
tab_bar_margin_width 0.0
|
||||||
|
tab_bar_margin_height 0.0 0.0
|
||||||
|
tab_bar_style powerline
|
||||||
|
tab_bar_align left
|
||||||
|
tab_bar_min_tabs 2
|
||||||
|
tab_switch_strategy previous
|
||||||
|
tab_fade 0.25 0.5 0.75 1
|
||||||
|
tab_separator " ┇"
|
||||||
|
tab_powerline_style angled
|
||||||
|
tab_activity_symbol none
|
||||||
|
tab_title_template "{title}{' :{}:'.format(num_windows) if num_windows > 1 else ''}"
|
||||||
|
active_tab_title_template none
|
||||||
|
|
||||||
|
# Tab bar colors
|
||||||
|
active_tab_foreground {{colors.primary.default.hex}}
|
||||||
|
active_tab_background {{colors.surface.default.hex}}
|
||||||
|
active_tab_font_style bold-italic
|
||||||
|
inactive_tab_foreground {{colors.on_surface_variant.default.hex}}
|
||||||
|
inactive_tab_background {{colors.surface_variant.default.hex}}
|
||||||
|
inactive_tab_font_style normal
|
||||||
|
tab_bar_background {{colors.surface_container.default.hex}}
|
||||||
|
|
||||||
|
# Material You Color Scheme
|
||||||
|
foreground {{colors.on_surface.default.hex}}
|
||||||
|
background {{colors.surface.default.hex}}
|
||||||
|
selection_foreground {{colors.on_primary.default.hex}}
|
||||||
|
selection_background {{colors.primary.default.hex}}
|
||||||
|
|
||||||
|
# Cursor colors
|
||||||
|
cursor {{colors.primary.default.hex}}
|
||||||
|
cursor_text_color {{colors.on_primary.default.hex}}
|
||||||
|
|
||||||
|
# URL underline color when hovering with mouse
|
||||||
|
url_color {{colors.primary.default.hex}}
|
||||||
|
|
||||||
|
# kitty window border colors
|
||||||
|
active_border_color {{colors.primary.default.hex}}
|
||||||
|
inactive_border_color {{colors.outline.default.hex}}
|
||||||
|
bell_border_color {{colors.error.default.hex}}
|
||||||
|
|
||||||
|
# OS Window titlebar colors
|
||||||
|
wayland_titlebar_color {{colors.surface_container.default.hex}}
|
||||||
|
macos_titlebar_color {{colors.surface_container.default.hex}}
|
||||||
|
|
||||||
|
# Tab bar colors
|
||||||
|
active_tab_foreground {{colors.on_primary_container.default.hex}}
|
||||||
|
active_tab_background {{colors.primary_container.default.hex}}
|
||||||
|
inactive_tab_foreground {{colors.on_surface_variant.default.hex}}
|
||||||
|
inactive_tab_background {{colors.surface_variant.default.hex}}
|
||||||
|
tab_bar_background {{colors.surface.default.hex}}
|
||||||
|
|
||||||
|
# Colors for marks (marked text in the terminal)
|
||||||
|
mark1_foreground {{colors.surface.default.hex}}
|
||||||
|
mark1_background {{colors.primary.default.hex}}
|
||||||
|
mark2_foreground {{colors.surface.default.hex}}
|
||||||
|
mark2_background {{colors.secondary.default.hex}}
|
||||||
|
mark3_foreground {{colors.surface.default.hex}}
|
||||||
|
mark3_background {{colors.tertiary.default.hex}}
|
||||||
|
|
||||||
|
# The 16 terminal colors
|
||||||
|
|
||||||
|
# normal colors
|
||||||
|
color0 {{colors.surface.default.hex}}
|
||||||
|
color1 {{colors.error.default.hex}}
|
||||||
|
color2 {{colors.primary.default.hex}}
|
||||||
|
color3 {{colors.tertiary.default.hex}}
|
||||||
|
color4 {{colors.secondary.default.hex}}
|
||||||
|
color5 {{colors.primary.default.hex}}
|
||||||
|
color6 {{colors.secondary.default.hex}}
|
||||||
|
color7 {{colors.on_surface.default.hex}}
|
||||||
|
|
||||||
|
# bright colors
|
||||||
|
color8 {{colors.outline.default.hex}}
|
||||||
|
color9 {{colors.error.default.hex}}
|
||||||
|
color10 {{colors.primary.default.hex}}
|
||||||
|
color11 {{colors.tertiary.default.hex}}
|
||||||
|
color12 {{colors.secondary.default.hex}}
|
||||||
|
color13 {{colors.primary.default.hex}}
|
||||||
|
color14 {{colors.secondary.default.hex}}
|
||||||
|
color15 {{colors.on_surface.default.hex}}
|
||||||
|
|
||||||
|
# Extended colors for better Material You integration
|
||||||
|
color16 {{colors.primary_container.default.hex}}
|
||||||
|
color17 {{colors.secondary_container.default.hex}}
|
||||||
|
color18 {{colors.tertiary_container.default.hex}}
|
||||||
|
color19 {{colors.error_container.default.hex}}
|
||||||
|
color20 {{colors.surface_variant.default.hex}}
|
||||||
|
color21 {{colors.outline_variant.default.hex}}
|
||||||
|
|
||||||
|
# Advanced features
|
||||||
|
allow_remote_control yes
|
||||||
|
listen_on unix:/tmp/kitty
|
||||||
|
shell_integration enabled
|
||||||
|
term xterm-kitty
|
||||||
|
|
||||||
|
# Keyboard shortcuts
|
||||||
|
kitty_mod ctrl+shift
|
||||||
|
|
||||||
|
# Clipboard
|
||||||
|
map kitty_mod+c copy_to_clipboard
|
||||||
|
map kitty_mod+v paste_from_clipboard
|
||||||
|
map kitty_mod+s paste_from_selection
|
||||||
|
map shift+insert paste_from_selection
|
||||||
|
map kitty_mod+o pass_selection_to_program
|
||||||
|
|
||||||
|
# Scrolling
|
||||||
|
map kitty_mod+up scroll_line_up
|
||||||
|
map kitty_mod+k scroll_line_up
|
||||||
|
map kitty_mod+down scroll_line_down
|
||||||
|
map kitty_mod+j scroll_line_down
|
||||||
|
map kitty_mod+page_up scroll_page_up
|
||||||
|
map kitty_mod+page_down scroll_page_down
|
||||||
|
map kitty_mod+home scroll_home
|
||||||
|
map kitty_mod+end scroll_end
|
||||||
|
map kitty_mod+h show_scrollback
|
||||||
|
|
||||||
|
# Window management
|
||||||
|
map kitty_mod+enter new_window
|
||||||
|
map kitty_mod+n new_os_window
|
||||||
|
map kitty_mod+w close_window
|
||||||
|
map kitty_mod+] next_window
|
||||||
|
map kitty_mod+[ previous_window
|
||||||
|
map kitty_mod+f move_window_forward
|
||||||
|
map kitty_mod+b move_window_backward
|
||||||
|
map kitty_mod+` move_window_to_top
|
||||||
|
map kitty_mod+r start_resizing_window
|
||||||
|
map kitty_mod+1 first_window
|
||||||
|
map kitty_mod+2 second_window
|
||||||
|
map kitty_mod+3 third_window
|
||||||
|
map kitty_mod+4 fourth_window
|
||||||
|
map kitty_mod+5 fifth_window
|
||||||
|
map kitty_mod+6 sixth_window
|
||||||
|
map kitty_mod+7 seventh_window
|
||||||
|
map kitty_mod+8 eighth_window
|
||||||
|
map kitty_mod+9 ninth_window
|
||||||
|
map kitty_mod+0 tenth_window
|
||||||
|
|
||||||
|
# Tab management
|
||||||
|
map kitty_mod+right next_tab
|
||||||
|
map kitty_mod+left previous_tab
|
||||||
|
map kitty_mod+t new_tab
|
||||||
|
map kitty_mod+q close_tab
|
||||||
|
map kitty_mod+. move_tab_forward
|
||||||
|
map kitty_mod+, move_tab_backward
|
||||||
|
map kitty_mod+alt+t set_tab_title
|
||||||
|
|
||||||
|
# Layout management
|
||||||
|
map kitty_mod+l next_layout
|
||||||
|
|
||||||
|
# Font sizes
|
||||||
|
map kitty_mod+equal change_font_size all +2.0
|
||||||
|
map kitty_mod+plus change_font_size all +2.0
|
||||||
|
map kitty_mod+kp_add change_font_size all +2.0
|
||||||
|
map kitty_mod+minus change_font_size all -2.0
|
||||||
|
map kitty_mod+kp_subtract change_font_size all -2.0
|
||||||
|
map kitty_mod+backspace change_font_size all 0
|
||||||
|
|
||||||
|
# Select and act on visible text
|
||||||
|
map kitty_mod+e kitten hints
|
||||||
|
map kitty_mod+p>f kitten hints --type path --program -
|
||||||
|
map kitty_mod+p>shift+f kitten hints --type path
|
||||||
|
map kitty_mod+p>l kitten hints --type line --program -
|
||||||
|
map kitty_mod+p>w kitten hints --type word --program -
|
||||||
|
map kitty_mod+p>h kitten hints --type hash --program -
|
||||||
|
map kitty_mod+p>n kitten hints --type linenum
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
map kitty_mod+f11 toggle_fullscreen
|
||||||
|
map kitty_mod+f10 toggle_maximized
|
||||||
|
map kitty_mod+u kitten unicode_input
|
||||||
|
map kitty_mod+f2 edit_config_file
|
||||||
|
map kitty_mod+escape kitty_shell window
|
||||||
|
|
||||||
|
# Sending arbitrary text on key presses
|
||||||
|
map kitty_mod+alt+1 send_text all \x01
|
||||||
|
map kitty_mod+alt+2 send_text all \x02
|
||||||
|
map kitty_mod+alt+3 send_text all \x03
|
||||||
|
|
||||||
|
# Symbol mapping for better rendering
|
||||||
|
symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols
|
||||||
|
symbol_map U+E000-U+F8FF,U+F0000-U+FFFFD,U+100000-U+10FFFD Symbols Nerd Font Mono
|
||||||
|
|
||||||
|
# Performance tuning
|
||||||
|
sync_to_monitor yes
|
||||||
|
enable_audio_bell no
|
||||||
|
visual_bell_duration 0.0
|
||||||
|
window_alert_on_bell no
|
||||||
|
bell_on_tab no
|
||||||
|
command_on_bell none
|
||||||
|
|
||||||
|
# Advanced
|
||||||
|
allow_hyperlinks yes
|
||||||
|
shell_integration enabled
|
||||||
|
update_check_interval 0
|
||||||
|
startup_session none
|
||||||
|
clipboard_control write-clipboard write-primary
|
||||||
|
allow_cloning ask
|
||||||
|
clone_source_strategies venv,conda,env_var,path
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
// Material You colors for Quickshell
|
||||||
|
// Generated dynamically from wallpaper
|
||||||
|
|
||||||
|
pragma Singleton
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
|
QtObject {
|
||||||
|
// Primary colors
|
||||||
|
readonly property color primary: "{{colors.primary.default.hex}}"
|
||||||
|
readonly property color onPrimary: "{{colors.on_primary.default.hex}}"
|
||||||
|
readonly property color primaryContainer: "{{colors.primary_container.default.hex}}"
|
||||||
|
readonly property color onPrimaryContainer: "{{colors.on_primary_container.default.hex}}"
|
||||||
|
|
||||||
|
// Secondary colors
|
||||||
|
readonly property color secondary: "{{colors.secondary.default.hex}}"
|
||||||
|
readonly property color onSecondary: "{{colors.on_secondary.default.hex}}"
|
||||||
|
readonly property color secondaryContainer: "{{colors.secondary_container.default.hex}}"
|
||||||
|
readonly property color onSecondaryContainer: "{{colors.on_secondary_container.default.hex}}"
|
||||||
|
|
||||||
|
// Tertiary colors
|
||||||
|
readonly property color tertiary: "{{colors.tertiary.default.hex}}"
|
||||||
|
readonly property color onTertiary: "{{colors.on_tertiary.default.hex}}"
|
||||||
|
readonly property color tertiaryContainer: "{{colors.tertiary_container.default.hex}}"
|
||||||
|
readonly property color onTertiaryContainer: "{{colors.on_tertiary_container.default.hex}}"
|
||||||
|
|
||||||
|
// Error colors
|
||||||
|
readonly property color error: "{{colors.error.default.hex}}"
|
||||||
|
readonly property color onError: "{{colors.on_error.default.hex}}"
|
||||||
|
readonly property color errorContainer: "{{colors.error_container.default.hex}}"
|
||||||
|
readonly property color onErrorContainer: "{{colors.on_error_container.default.hex}}"
|
||||||
|
|
||||||
|
// Surface colors
|
||||||
|
readonly property color surface: "{{colors.surface.default.hex}}"
|
||||||
|
readonly property color onSurface: "{{colors.on_surface.default.hex}}"
|
||||||
|
readonly property color surfaceVariant: "{{colors.surface_variant.default.hex}}"
|
||||||
|
readonly property color onSurfaceVariant: "{{colors.on_surface_variant.default.hex}}"
|
||||||
|
readonly property color surfaceDim: "{{colors.surface_dim.default.hex}}"
|
||||||
|
readonly property color surfaceBright: "{{colors.surface_bright.default.hex}}"
|
||||||
|
readonly property color surfaceContainer: "{{colors.surface_container.default.hex}}"
|
||||||
|
readonly property color surfaceContainerHigh: "{{colors.surface_container_high.default.hex}}"
|
||||||
|
readonly property color surfaceContainerHighest: "{{colors.surface_container_highest.default.hex}}"
|
||||||
|
readonly property color surfaceContainerLow: "{{colors.surface_container_low.default.hex}}"
|
||||||
|
readonly property color surfaceContainerLowest: "{{colors.surface_container_lowest.default.hex}}"
|
||||||
|
|
||||||
|
// Background colors
|
||||||
|
readonly property color background: "{{colors.background.default.hex}}"
|
||||||
|
readonly property color onBackground: "{{colors.on_background.default.hex}}"
|
||||||
|
|
||||||
|
// Outline colors
|
||||||
|
readonly property color outline: "{{colors.outline.default.hex}}"
|
||||||
|
readonly property color outlineVariant: "{{colors.outline_variant.default.hex}}"
|
||||||
|
|
||||||
|
// Inverse colors
|
||||||
|
readonly property color inverseSurface: "{{colors.inverse_surface.default.hex}}"
|
||||||
|
readonly property color inverseOnSurface: "{{colors.inverse_on_surface.default.hex}}"
|
||||||
|
readonly property color inversePrimary: "{{colors.inverse_primary.default.hex}}"
|
||||||
|
|
||||||
|
// Other colors
|
||||||
|
readonly property color shadow: "{{colors.shadow.default.hex}}"
|
||||||
|
readonly property color scrim: "{{colors.scrim.default.hex}}"
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{{image}}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"label" : "lock",
|
||||||
|
"action" : "hyprlock",
|
||||||
|
"text" : "Lock",
|
||||||
|
"keybind" : "l"
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"label" : "hibernate",
|
||||||
|
"action" : "systemctl hibernate",
|
||||||
|
"text" : "Hibernate",
|
||||||
|
"keybind" : "h"
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"label" : "logout",
|
||||||
|
"action" : "hyprctl dispatch exit",
|
||||||
|
"text" : "Logout",
|
||||||
|
"keybind" : "e"
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"label" : "shutdown",
|
||||||
|
"action" : "systemctl poweroff",
|
||||||
|
"text" : "Shutdown",
|
||||||
|
"keybind" : "s"
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"label" : "suspend",
|
||||||
|
"action" : "systemctl suspend",
|
||||||
|
"text" : "Suspend",
|
||||||
|
"keybind" : "u"
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"label" : "reboot",
|
||||||
|
"action" : "systemctl reboot",
|
||||||
|
"text" : "Reboot",
|
||||||
|
"keybind" : "r"
|
||||||
|
}
|
||||||
@@ -0,0 +1,55 @@
|
|||||||
|
/* wlogout style with Material You theming */
|
||||||
|
|
||||||
|
* {
|
||||||
|
background-image: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
background-color: rgba(12, 12, 12, 0.9);
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
color: {{colors.on_surface.default.hex}};
|
||||||
|
background-color: {{colors.surface_container.default.hex}};
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 2px;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 25%;
|
||||||
|
border-radius: 18px;
|
||||||
|
margin: 5px;
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:focus, button:active, button:hover {
|
||||||
|
background-color: {{colors.primary_container.default.hex}};
|
||||||
|
color: {{colors.on_primary_container.default.hex}};
|
||||||
|
border-color: {{colors.primary.default.hex}};
|
||||||
|
outline-style: none;
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
|
||||||
|
#lock {
|
||||||
|
background-image: image(url("icons/lock.png"), url("/usr/share/wlogout/icons/lock.png"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#logout {
|
||||||
|
background-image: image(url("icons/logout.png"), url("/usr/share/wlogout/icons/logout.png"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#suspend {
|
||||||
|
background-image: image(url("icons/suspend.png"), url("/usr/share/wlogout/icons/suspend.png"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#hibernate {
|
||||||
|
background-image: image(url("icons/hibernate.png"), url("/usr/share/wlogout/icons/hibernate.png"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#shutdown {
|
||||||
|
background-image: image(url("icons/shutdown.png"), url("/usr/share/wlogout/icons/shutdown.png"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#reboot {
|
||||||
|
background-image: image(url("icons/reboot.png"), url("/usr/share/wlogout/icons/reboot.png"));
|
||||||
|
}
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
pragma Singleton
|
||||||
|
|
||||||
|
import Quickshell
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Application launcher patch for NixOS integration
|
||||||
|
* Ensures applications are launched with proper PATH environment
|
||||||
|
*/
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
// Get the launcher wrapper path from environment
|
||||||
|
readonly property string launcherWrapper: Quickshell.env("DOTS_HYPRLAND_APP_LAUNCHER") || ""
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Launch an application using the NixOS-compatible launcher wrapper
|
||||||
|
* @param command - The command to execute (can be string or array)
|
||||||
|
*/
|
||||||
|
function launchApp(command) {
|
||||||
|
if (launcherWrapper === "") {
|
||||||
|
console.warn("AppLauncherPatch: No launcher wrapper found, falling back to direct execution");
|
||||||
|
if (Array.isArray(command)) {
|
||||||
|
Quickshell.execDetached(command);
|
||||||
|
} else {
|
||||||
|
Quickshell.execDetached(["bash", "-c", command]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("AppLauncherPatch: Launching app with wrapper:", command);
|
||||||
|
|
||||||
|
if (Array.isArray(command)) {
|
||||||
|
// If command is an array, prepend the launcher wrapper
|
||||||
|
Quickshell.execDetached([launcherWrapper].concat(command));
|
||||||
|
} else {
|
||||||
|
// If command is a string, use bash to execute it through the wrapper
|
||||||
|
Quickshell.execDetached([launcherWrapper, "bash", "-c", command]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Launch a desktop entry using the launcher wrapper
|
||||||
|
* @param desktopEntry - The DesktopEntry object
|
||||||
|
*/
|
||||||
|
function launchDesktopEntry(desktopEntry) {
|
||||||
|
if (!desktopEntry) {
|
||||||
|
console.warn("AppLauncherPatch: No desktop entry provided");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("AppLauncherPatch: Launching desktop entry:", desktopEntry.name);
|
||||||
|
|
||||||
|
// Try to use the desktop entry's execute method first
|
||||||
|
try {
|
||||||
|
desktopEntry.execute();
|
||||||
|
} catch (error) {
|
||||||
|
console.warn("AppLauncherPatch: Desktop entry execute failed, trying wrapper approach:", error);
|
||||||
|
|
||||||
|
// Fallback: extract the Exec command and use our wrapper
|
||||||
|
if (desktopEntry.exec) {
|
||||||
|
launchApp(desktopEntry.exec);
|
||||||
|
} else {
|
||||||
|
console.error("AppLauncherPatch: No exec command found in desktop entry");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,73 @@
|
|||||||
|
import qs.modules.common
|
||||||
|
import qs
|
||||||
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
import Quickshell.Io
|
||||||
|
pragma Singleton
|
||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
property bool barOpen: true
|
||||||
|
property bool sidebarLeftOpen: false
|
||||||
|
property bool sidebarRightOpen: false
|
||||||
|
property bool mediaControlsOpen: false
|
||||||
|
property bool osdBrightnessOpen: false
|
||||||
|
property bool osdVolumeOpen: false
|
||||||
|
property bool oskOpen: false
|
||||||
|
property bool overviewOpen: false
|
||||||
|
property bool sessionOpen: false
|
||||||
|
property bool workspaceShowNumbers: false
|
||||||
|
property bool superReleaseMightTrigger: true
|
||||||
|
property bool screenLocked: false
|
||||||
|
property bool screenLockContainsCharacters: false
|
||||||
|
|
||||||
|
property real screenZoom: 1
|
||||||
|
onScreenZoomChanged: {
|
||||||
|
Quickshell.execDetached(["hyprctl", "keyword", "cursor:zoom_factor", root.screenZoom.toString()]);
|
||||||
|
}
|
||||||
|
Behavior on screenZoom {
|
||||||
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
// When user is not reluctant while pressing super, they probably don't need to see workspace numbers
|
||||||
|
onSuperReleaseMightTriggerChanged: {
|
||||||
|
workspaceShowNumbersTimer.stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
id: workspaceShowNumbersTimer
|
||||||
|
interval: Config.options.bar.workspaces.showNumberDelay
|
||||||
|
// interval: 0
|
||||||
|
repeat: false
|
||||||
|
onTriggered: {
|
||||||
|
workspaceShowNumbers = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GlobalShortcut {
|
||||||
|
name: "workspaceNumber"
|
||||||
|
description: "Hold to show workspace numbers, release to show icons"
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
workspaceShowNumbersTimer.start()
|
||||||
|
}
|
||||||
|
onReleased: {
|
||||||
|
workspaceShowNumbersTimer.stop()
|
||||||
|
workspaceShowNumbers = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
IpcHandler {
|
||||||
|
target: "zoom"
|
||||||
|
|
||||||
|
function zoomIn() {
|
||||||
|
screenZoom = Math.min(screenZoom + 0.4, 3.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
function zoomOut() {
|
||||||
|
screenZoom = Math.max(screenZoom - 0.4, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import Qt5Compat.GraphicalEffects
|
||||||
|
|
||||||
|
Scope {
|
||||||
|
id: root
|
||||||
|
property bool failed;
|
||||||
|
property string errorString;
|
||||||
|
|
||||||
|
// Connect to the Quickshell global to listen for the reload signals.
|
||||||
|
Connections {
|
||||||
|
target: Quickshell
|
||||||
|
|
||||||
|
function onReloadCompleted() {
|
||||||
|
root.failed = false;
|
||||||
|
popupLoader.loading = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onReloadFailed(error: string) {
|
||||||
|
// Close any existing popup before making a new one.
|
||||||
|
popupLoader.active = false;
|
||||||
|
|
||||||
|
root.failed = true;
|
||||||
|
root.errorString = error;
|
||||||
|
popupLoader.loading = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep the popup in a loader because it isn't needed most of the time
|
||||||
|
LazyLoader {
|
||||||
|
id: popupLoader
|
||||||
|
|
||||||
|
PanelWindow {
|
||||||
|
id: popup
|
||||||
|
|
||||||
|
exclusiveZone: 0
|
||||||
|
anchors.top: true
|
||||||
|
margins.top: 0
|
||||||
|
|
||||||
|
implicitWidth: rect.width + shadow.radius * 2
|
||||||
|
implicitHeight: rect.height + shadow.radius * 2
|
||||||
|
|
||||||
|
// color blending is a bit odd as detailed in the type reference.
|
||||||
|
color: "transparent"
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: rect
|
||||||
|
anchors.centerIn: parent
|
||||||
|
color: failed ? "#ffe99195" : "#ffD1E8D5"
|
||||||
|
|
||||||
|
implicitHeight: layout.implicitHeight + 30
|
||||||
|
implicitWidth: layout.implicitWidth + 30
|
||||||
|
radius: 12
|
||||||
|
|
||||||
|
// Fills the whole area of the rectangle, making any clicks go to it,
|
||||||
|
// which dismiss the popup.
|
||||||
|
MouseArea {
|
||||||
|
id: mouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
popupLoader.active = false
|
||||||
|
}
|
||||||
|
|
||||||
|
// makes the mouse area track mouse hovering, so the hide animation
|
||||||
|
// can be paused when hovering.
|
||||||
|
hoverEnabled: true
|
||||||
|
}
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: layout
|
||||||
|
spacing: 10
|
||||||
|
anchors {
|
||||||
|
top: parent.top
|
||||||
|
topMargin: 10
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
renderType: Text.NativeRendering
|
||||||
|
font.family: "Rubik"
|
||||||
|
font.pointSize: 14
|
||||||
|
text: root.failed ? "Quickshell: Reload failed" : "Quickshell reloaded"
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
renderType: Text.NativeRendering
|
||||||
|
font.family: "JetBrains Mono NF"
|
||||||
|
font.pointSize: 11
|
||||||
|
text: root.errorString
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
// When visible is false, it also takes up no space.
|
||||||
|
visible: root.errorString != ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// A progress bar on the bottom of the screen, showing how long until the
|
||||||
|
// popup is removed.
|
||||||
|
Rectangle {
|
||||||
|
z: 2
|
||||||
|
id: bar
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: 10
|
||||||
|
height: 5
|
||||||
|
radius: 9999
|
||||||
|
|
||||||
|
PropertyAnimation {
|
||||||
|
id: anim
|
||||||
|
target: bar
|
||||||
|
property: "width"
|
||||||
|
from: rect.width - bar.anchors.margins * 2
|
||||||
|
to: 0
|
||||||
|
duration: failed ? 10000 : 1000
|
||||||
|
onFinished: popupLoader.active = false
|
||||||
|
|
||||||
|
// Pause the animation when the mouse is hovering over the popup,
|
||||||
|
// so it stays onscreen while reading. This updates reactively
|
||||||
|
// when the mouse moves on and off the popup.
|
||||||
|
paused: mouseArea.containsMouse
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Its bg
|
||||||
|
Rectangle {
|
||||||
|
z: 1
|
||||||
|
id: bar_bg
|
||||||
|
color: failed ? "#30af1b25" : "#4027643e"
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: 10
|
||||||
|
height: 5
|
||||||
|
radius: 9999
|
||||||
|
width: rect.width - bar.anchors.margins * 2
|
||||||
|
}
|
||||||
|
|
||||||
|
// We could set `running: true` inside the animation, but the width of the
|
||||||
|
// rectangle might not be calculated yet, due to the layout.
|
||||||
|
// In the `Component.onCompleted` event handler, all of the component's
|
||||||
|
// properties and children have been initialized.
|
||||||
|
Component.onCompleted: anim.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
DropShadow {
|
||||||
|
id: shadow
|
||||||
|
anchors.fill: rect
|
||||||
|
horizontalOffset: 0
|
||||||
|
verticalOffset: 2
|
||||||
|
radius: 6
|
||||||
|
samples: radius * 2 + 1 // Ideally should be 2 * radius + 1, see qt docs
|
||||||
|
color: "#44000000"
|
||||||
|
source: rect
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
pragma Singleton
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
|
import qs.modules.common
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property var translations: ({})
|
||||||
|
property string currentLanguage: "en_US"
|
||||||
|
property var availableLanguages: ["en_US"]
|
||||||
|
property bool isScanning: false
|
||||||
|
property bool isLoading: false
|
||||||
|
|
||||||
|
Process {
|
||||||
|
id: scanLanguagesProcess
|
||||||
|
command: ["find", Qt.resolvedUrl(Directories.config + "/quickshell/translations/").toString().replace("file://", ""), "-name", "*.json", "-exec", "basename", "{}", ".json", ";"]
|
||||||
|
running: false
|
||||||
|
|
||||||
|
stdout: SplitParser {
|
||||||
|
onRead: data => {
|
||||||
|
if (data.trim().length === 0) return
|
||||||
|
|
||||||
|
var files = data.trim().split('\n')
|
||||||
|
|
||||||
|
for (var i = 0; i < files.length; i++) {
|
||||||
|
var lang = files[i].trim()
|
||||||
|
if (lang.length > 0 && root.availableLanguages.indexOf(lang) === -1) {
|
||||||
|
root.availableLanguages.push(lang)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onExited: (exitCode, exitStatus) => {
|
||||||
|
root.isScanning = false
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
root.availableLanguages = ["en_US"]
|
||||||
|
}
|
||||||
|
root.loadTranslations()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FileView {
|
||||||
|
id: translationFileView
|
||||||
|
onLoaded: {
|
||||||
|
var textContent = ""
|
||||||
|
try {
|
||||||
|
textContent = text()
|
||||||
|
} catch (e) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (textContent.length === 0) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
var jsonData = JSON.parse(textContent)
|
||||||
|
root.translations = jsonData
|
||||||
|
root.isLoading = false
|
||||||
|
} catch (e) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onLoadFailed: (error) => {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function detectSystemLanguage() {
|
||||||
|
var locale = Qt.locale().name
|
||||||
|
return locale
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLanguageCode() {
|
||||||
|
var configLang = "auto"
|
||||||
|
try {
|
||||||
|
configLang = ConfigOptions.language.ui
|
||||||
|
} catch (e) {
|
||||||
|
configLang = "auto"
|
||||||
|
}
|
||||||
|
|
||||||
|
if (configLang === "auto") {
|
||||||
|
return detectSystemLanguage()
|
||||||
|
} else {
|
||||||
|
if (root.availableLanguages.indexOf(configLang) !== -1) {
|
||||||
|
return configLang
|
||||||
|
} else {
|
||||||
|
return detectSystemLanguage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadTranslations() {
|
||||||
|
if (root.isScanning) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var targetLang = getLanguageCode()
|
||||||
|
root.currentLanguage = targetLang
|
||||||
|
|
||||||
|
// Use empty translations for English (default language)
|
||||||
|
if (targetLang === "en_US" || targetLang === "en") {
|
||||||
|
root.translations = {}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if target language is available
|
||||||
|
if (root.availableLanguages.indexOf(targetLang) === -1) {
|
||||||
|
root.currentLanguage = "en_US"
|
||||||
|
root.translations = {}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load translation file
|
||||||
|
root.isLoading = true
|
||||||
|
var translationsPath = Qt.resolvedUrl(Directories.config + "/quickshell/translations/" + targetLang + ".json")
|
||||||
|
translationFileView.path = translationsPath
|
||||||
|
}
|
||||||
|
|
||||||
|
function tr(text) {
|
||||||
|
if (!text) {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
var key = text.toString()
|
||||||
|
|
||||||
|
if (root.isLoading) {
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
|
||||||
|
if (root.currentLanguage === "en_US" || root.currentLanguage === "en" || !root.translations) {
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
|
||||||
|
if (root.translations.hasOwnProperty(key)) {
|
||||||
|
var translation = root.translations[key]
|
||||||
|
if (translation && translation.toString().trim().length > 0) {
|
||||||
|
var str = translation.toString().trim()
|
||||||
|
if (str.endsWith("/*keep*/")) {
|
||||||
|
return str.substring(0, str.length - 8).trim()
|
||||||
|
} else {
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return translation.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return key // Fallback to key name
|
||||||
|
}
|
||||||
|
|
||||||
|
function reloadTranslations() {
|
||||||
|
root.scanLanguages()
|
||||||
|
}
|
||||||
|
|
||||||
|
function scanLanguages() {
|
||||||
|
var translationsDir = Qt.resolvedUrl(Directories.config + "/quickshell/translations/").toString().replace("file://", "")
|
||||||
|
root.isScanning = true
|
||||||
|
scanLanguagesProcess.running = true
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
root.scanLanguages()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 322.58065 322.58064"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="openai-symbolic.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="30.935922"
|
||||||
|
inkscape:cx="9.0348044"
|
||||||
|
inkscape:cy="14.917933"
|
||||||
|
inkscape:window-width="1183"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
d="m 298.66868,131.77215 c 7.30439,-21.92321 4.7891,-45.939129 -6.89187,-65.880296 C 274.21007,35.30601 238.89549,19.570397 204.40593,26.975391 189.0627,9.6903649 167.01876,-0.13936259 143.90833,0.0014933 108.65412,-0.07899576 77.374064,22.618921 66.528162,56.162739 43.880552,60.800921 24.33177,74.977058 12.892261,95.069141 -4.8052718,125.57449 -0.77075743,164.02814 22.872905,190.18709 c -7.304382,21.92321 -4.789099,45.93913 6.891877,65.8803 17.566738,30.58585 52.881316,46.32146 87.370878,38.91646 15.33316,17.28503 37.38717,27.11476 60.49759,26.96384 35.27433,0.0905 66.56446,-22.62749 77.41036,-56.20149 22.64761,-4.63818 42.19639,-18.81432 53.6359,-38.9064 17.67741,-30.50536 13.63284,-68.92883 -10.00077,-95.08777 z M 177.65337,300.90986 c -14.11577,0.0201 -27.78885,-4.91989 -38.62469,-13.96485 0.493,-0.26159 1.34819,-0.73446 1.90156,-1.07654 l 64.10954,-37.02497 c 3.27993,-1.86131 5.29215,-5.35253 5.27203,-9.12545 v -90.37916 l 27.09463,15.64506 c 0.29178,0.14086 0.48294,0.42257 0.52318,0.74453 v 74.84477 c -0.0402,33.28222 -26.99402,60.26618 -60.27625,60.33661 z M 48.025738,245.54345 c -7.072976,-12.21422 -9.618443,-26.53121 -7.19371,-40.42564 0.472874,0.28171 1.307948,0.79483 1.901554,1.13691 l 64.109538,37.02497 c 3.24974,1.90155 7.2742,1.90155 10.534,0 l 78.26556,-45.19461 v 31.29012 c 0.0201,0.32196 -0.1308,0.63386 -0.38232,0.83508 l -64.80376,37.41735 c -28.86539,16.62099 -65.72938,6.74096 -82.4208,-22.08418 z M 31.153218,105.60314 c 7.042793,-12.234331 18.160346,-21.591185 31.400797,-26.450712 0,0.553362 -0.03018,1.529292 -0.03018,2.213449 v 74.059993 c -0.02012,3.76287 1.992105,7.25408 5.261973,9.11539 l 78.265542,45.18455 -27.09463,15.64506 c -0.27165,0.1811 -0.61373,0.21129 -0.91556,0.0805 L 53.227344,188.00382 C 24.42232,171.32247 14.542287,134.46853 31.143157,105.6132 Z m 222.612632,51.80478 -78.26556,-45.19461 27.09463,-15.634999 c 0.27165,-0.181101 0.61373,-0.211284 0.91557,-0.08049 l 64.81382,37.417349 c 28.85533,16.6713 38.74542,53.5856 22.07412,82.44093 -7.05285,12.21421 -18.16034,21.57107 -31.39073,26.44066 V 166.5233 c 0.0302,-3.76286 -1.97199,-7.24401 -5.23179,-9.11538 z m 26.96383,-40.58661 c -0.47287,-0.29178 -1.30794,-0.79483 -1.90155,-1.13691 L 214.71859,78.659433 c -3.24975,-1.901555 -7.2742,-1.901555 -10.53401,0 L 125.91903,123.85404 V 92.563919 c -0.0201,-0.321957 0.13079,-0.633852 0.38232,-0.835074 l 64.80376,-37.387171 c 28.86539,-16.651176 65.76963,-6.74096 82.41074,22.134493 7.03273,12.194093 9.5782,26.470833 7.19371,40.345143 z M 111.18953,172.59017 84.08484,156.94511 c -0.291773,-0.14086 -0.482934,-0.42257 -0.523179,-0.74453 V 81.355816 c 0.02012,-33.322473 27.054379,-60.326555 60.376859,-60.306432 14.09564,0 27.73854,4.950077 38.57438,13.964853 -0.493,0.261589 -1.33813,0.734462 -1.90155,1.076541 l -64.10954,37.02497 c -3.27993,1.86131 -5.29216,5.342462 -5.27204,9.115387 l -0.0402,90.338915 z m 14.71943,-31.73282 34.86183,-20.13232 34.86183,20.12226 v 40.2546 l -34.86183,20.12226 -34.86183,-20.12226 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.00611" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,113 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.0"
|
||||||
|
width="20"
|
||||||
|
height="19.999941"
|
||||||
|
id="svg2424"
|
||||||
|
sodipodi:docname="archlinux-logo-black-scalable.f931920e6cdb.svg"
|
||||||
|
viewBox="0 0 166.18749 166.187"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="16.650008"
|
||||||
|
inkscape:cx="13.093087"
|
||||||
|
inkscape:cy="16.366359"
|
||||||
|
inkscape:window-width="1340"
|
||||||
|
inkscape:window-height="768"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="g2424" />
|
||||||
|
<defs
|
||||||
|
id="defs2426">
|
||||||
|
<linearGradient
|
||||||
|
x1="112.49854"
|
||||||
|
y1="6.1372099"
|
||||||
|
x2="112.49853"
|
||||||
|
y2="129.3468"
|
||||||
|
id="path1082_2_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(287,-83)">
|
||||||
|
<stop
|
||||||
|
id="stop193"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop195"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.27450982"
|
||||||
|
offset="1" />
|
||||||
|
<midPointStop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#FFFFFF"
|
||||||
|
id="midPointStop197" />
|
||||||
|
<midPointStop
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#FFFFFF"
|
||||||
|
id="midPointStop199" />
|
||||||
|
<midPointStop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000"
|
||||||
|
id="midPointStop201" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
x1="541.33502"
|
||||||
|
y1="104.50665"
|
||||||
|
x2="606.91248"
|
||||||
|
y2="303.14029"
|
||||||
|
id="linearGradient2544"
|
||||||
|
xlink:href="#path1082_2_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-0.3937741,0,0,0.393752,357.51969,122.00151)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3388">
|
||||||
|
<stop
|
||||||
|
id="stop3390"
|
||||||
|
style="stop-color:#000000;stop-opacity:0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3392"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.37113401"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
x1="490.72305"
|
||||||
|
y1="237.72447"
|
||||||
|
x2="490.72305"
|
||||||
|
y2="183.9644"
|
||||||
|
id="linearGradient4416"
|
||||||
|
xlink:href="#linearGradient3388"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.749107,0,0,0.749107,-35.459862,91.44108)" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
transform="translate(-57.527313,-146.42741)"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.8746356,0,0,0.8746356,14.730518,23.408954)"
|
||||||
|
id="g2424"
|
||||||
|
style="fill:#000000">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.6378586,0,0,0.6378586,36.486487,2.17139)"
|
||||||
|
id="g2809"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="m 143.91698,140.65081 c -8.45709,20.73453 -13.55799,34.29734 -22.97385,54.41552 5.7731,6.11948 12.85931,13.24593 24.36729,21.29458 -12.37221,-5.09109 -20.81157,-10.20242 -27.11844,-15.50646 -12.0505,25.14523 -30.930177,60.96349 -69.243121,129.80406 30.112687,-17.38458 53.455511,-28.10236 75.209891,-32.19198 -0.93414,-4.01773 -1.46524,-8.36369 -1.42916,-12.89823 l 0.0357,-0.96469 c 0.47781,-19.2924 10.51371,-34.12825 22.40218,-33.12093 11.88848,1.00732 21.12927,17.4729 20.65146,36.76531 -0.0899,3.63022 -0.49934,7.12245 -1.21479,10.36146 21.51819,4.20934 44.61141,14.89968 74.31666,32.04906 -5.85729,-10.78369 -11.08544,-20.5044 -16.07812,-29.7624 -7.86429,-6.09535 -16.06714,-14.02847 -32.79938,-22.61656 11.50078,2.98839 19.73519,6.43619 26.15375,10.29 -50.76203,-94.51003 -54.87267,-107.06846 -72.2801,-147.91874 z"
|
||||||
|
id="path2518"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14333" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,318 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
id="SVGRoot"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 17.921003 17.921002"
|
||||||
|
sodipodi:docname="cachyos-symbolic.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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview30"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="10.671875"
|
||||||
|
inkscape:cy="11.234375"
|
||||||
|
inkscape:window-width="1687"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="SVGRoot" />
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient939"
|
||||||
|
x1="237.19"
|
||||||
|
x2="237.07001"
|
||||||
|
y1="296.20001"
|
||||||
|
y2="304.07999"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-8.5042241,-4.351186)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient937">
|
||||||
|
<stop
|
||||||
|
stop-color="#001313"
|
||||||
|
offset="0"
|
||||||
|
id="stop1" />
|
||||||
|
<stop
|
||||||
|
stop-color="#001313"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="1"
|
||||||
|
id="stop2" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient5185"
|
||||||
|
x1="994.81"
|
||||||
|
x2="982.34003"
|
||||||
|
y1="1533.3"
|
||||||
|
y2="1556.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4353">
|
||||||
|
<stop
|
||||||
|
stop-color="#020202"
|
||||||
|
offset="0"
|
||||||
|
id="stop3" />
|
||||||
|
<stop
|
||||||
|
stop-color="#020202"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="1"
|
||||||
|
id="stop4" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient9102"
|
||||||
|
x1="1022.5"
|
||||||
|
x2="1018.6"
|
||||||
|
y1="1582.4"
|
||||||
|
y2="1575.6"
|
||||||
|
gradientTransform="matrix(0.086381,0,0,0.081808,-79.103924,-124.69099)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient11890"
|
||||||
|
x1="940.42999"
|
||||||
|
x2="930.59003"
|
||||||
|
y1="1612.5"
|
||||||
|
y2="1594.5"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient11670"
|
||||||
|
x1="965.59998"
|
||||||
|
x2="951.65997"
|
||||||
|
y1="1571.4"
|
||||||
|
y2="1571.3"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13770"
|
||||||
|
x1="946.22998"
|
||||||
|
x2="961.37"
|
||||||
|
y1="1655.9"
|
||||||
|
y2="1655.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient2816"
|
||||||
|
x1="366.14999"
|
||||||
|
x2="350.92001"
|
||||||
|
y1="427.32001"
|
||||||
|
y2="419.64001"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient12421"
|
||||||
|
x1="936.34003"
|
||||||
|
x2="933.38"
|
||||||
|
y1="1628.8"
|
||||||
|
y2="1623"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13391"
|
||||||
|
x1="950.33002"
|
||||||
|
x2="941.96997"
|
||||||
|
y1="1618.6"
|
||||||
|
y2="1645.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13599"
|
||||||
|
x1="1008.2"
|
||||||
|
x2="1015.7"
|
||||||
|
y1="1681.3"
|
||||||
|
y2="1668.4"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-77.884838,-124.43841)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18175"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.34992,0,0,0.34992,-282.87,-491.67)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18299">
|
||||||
|
<stop
|
||||||
|
stop-color="#008066"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="0"
|
||||||
|
id="stop5" />
|
||||||
|
<stop
|
||||||
|
stop-color="#0fc"
|
||||||
|
offset="1"
|
||||||
|
id="stop6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18632"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.26565,0,0,0.26565,-211.15,-375.49)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18659"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.13679,0,0,0.13679,-53.624,-195.03)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3254"
|
||||||
|
x1="348.04999"
|
||||||
|
x2="361.20999"
|
||||||
|
y1="194.78"
|
||||||
|
y2="187.24001"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
</defs>
|
||||||
|
<circle
|
||||||
|
cx="87.449997"
|
||||||
|
cy="87.449997"
|
||||||
|
r="87.449997"
|
||||||
|
opacity="0"
|
||||||
|
stroke-width="0.27971"
|
||||||
|
id="circle6" />
|
||||||
|
<path
|
||||||
|
d="m 4.0610759,2.168314 6.5887001,3.6879 2.1127,-3.6528 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 6.1499759,12.423014 -1.9125,3.7456 h 8.5747001 l 2.1664,-3.7456 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#7a7a7a;fill-opacity:0.68506807" />
|
||||||
|
<path
|
||||||
|
d="m 4.0610759,2.168314 6.5887001,3.6879 H 6.1237759 l -1.8859,3.2605 1.9121,3.306 -1.9125,3.7456 -4.13689997,-7.1525 3.96049997,-6.8475"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#7a7a7a;fill-opacity:0.69262218" />
|
||||||
|
<path
|
||||||
|
d="m 6.0909759,5.821714 6.7111001,-3.7832 -2.169,3.5579 z"
|
||||||
|
fill="url(#linearGradient9102)"
|
||||||
|
id="path12"
|
||||||
|
style="fill:url(#linearGradient9102)" />
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 6.6388001,-3.6528 -2.1127,3.6528 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path13"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 0.10057593,9.015814 6.02309997,-3.1596 -1.8859,3.2605 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.17673,6.9484 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path16"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 4.2378759,9.116714 -3.1586,1.5811 3.1583,5.4705 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 1.0792259,10.698014 5.0708,1.7248 -1.9121,-3.306 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path23"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.75949407,-0.14715599)"
|
||||||
|
id="g26"
|
||||||
|
style="fill:#1a1a1a">
|
||||||
|
<circle
|
||||||
|
cx="117.95"
|
||||||
|
cy="75.441002"
|
||||||
|
r="9.6893997"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle25"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<circle
|
||||||
|
cx="118.08"
|
||||||
|
cy="75.341003"
|
||||||
|
r="9.6893997"
|
||||||
|
fill="url(#linearGradient18175)"
|
||||||
|
id="circle26"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.11248407,-0.47061599)"
|
||||||
|
id="g28"
|
||||||
|
style="fill:#1a1a1a">
|
||||||
|
<circle
|
||||||
|
cx="93.138"
|
||||||
|
cy="55.044998"
|
||||||
|
r="7.3558998"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle27"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<circle
|
||||||
|
cx="93.238998"
|
||||||
|
cy="54.969002"
|
||||||
|
r="7.3558998"
|
||||||
|
fill="url(#linearGradient18632)"
|
||||||
|
id="circle28"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.08243407,-0.04714599)"
|
||||||
|
id="g30"
|
||||||
|
style="fill:#000000">
|
||||||
|
<circle
|
||||||
|
cx="103.06"
|
||||||
|
cy="26.657"
|
||||||
|
r="3.7876999"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle29"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<circle
|
||||||
|
cx="103.11"
|
||||||
|
cy="26.618"
|
||||||
|
r="3.7876999"
|
||||||
|
fill="url(#linearGradient18659)"
|
||||||
|
id="circle30"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.52544,-0.0074 1.9387,3.4465 z"
|
||||||
|
fill="url(#linearGradient3254)"
|
||||||
|
id="path30"
|
||||||
|
style="fill:url(#linearGradient3254)" />
|
||||||
|
<path
|
||||||
|
d="M 12.808567,16.168211 6.1524738,12.428132 4.2457352,16.165572 Z"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="path17"
|
||||||
|
style="fill:#1a1a1a;fill-opacity:1"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_26_18)">
|
||||||
|
<path d="M3 7.06015V4.74436C4.12 4.69624 4.90412 4.62466 5.35237 4.52962C6.06664 4.37804 6.64769 4.07549 7.09553 3.62195C7.40205 3.31158 7.63448 2.89754 7.7928 2.37985C7.8839 2.06947 7.92946 1.8387 7.92946 1.68752H10.9001V19H7.25588V7.06015H3ZM12.4228 5.65444V4.52962L15.0783 1H16.1879V4.64211H17V5.65444H16.1879V7.05594H15.0084V5.65444H12.4228ZM14.9823 2.53985L13.4031 4.64511H15.0102V2.53985H14.9823Z" fill="black"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_26_18">
|
||||||
|
<rect width="20" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 660 B |
@@ -0,0 +1,65 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 380.95238 380.95238"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="crosshair-symbolic.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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="35"
|
||||||
|
inkscape:cx="10.371429"
|
||||||
|
inkscape:cy="7.9571429"
|
||||||
|
inkscape:window-width="1430"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">ionicons-v5_logos</title>
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>ionicons-v5_logos</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:23.0377"
|
||||||
|
id="rect1"
|
||||||
|
width="380.95239"
|
||||||
|
height="57.142857"
|
||||||
|
x="-3.5527137e-15"
|
||||||
|
y="161.90475" />
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:23.0451;stroke-dasharray:none"
|
||||||
|
id="rect1-5"
|
||||||
|
width="57.142857"
|
||||||
|
height="380.95239"
|
||||||
|
x="161.90475"
|
||||||
|
y="0" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="-30.5 0 317.00242 317.00243"
|
||||||
|
version="1.1"
|
||||||
|
preserveAspectRatio="xMidYMid"
|
||||||
|
id="svg12"
|
||||||
|
sodipodi:docname="debian-symbolic.svg"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs12" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview12"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="17.5"
|
||||||
|
inkscape:cx="13.742857"
|
||||||
|
inkscape:cy="12.628571"
|
||||||
|
inkscape:window-width="1295"
|
||||||
|
inkscape:window-height="867"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg12" />
|
||||||
|
<g
|
||||||
|
fill="#A80030"
|
||||||
|
id="g12"
|
||||||
|
style="fill:#1a1a1a"
|
||||||
|
transform="translate(0.05835351,0.0538775)">
|
||||||
|
<path
|
||||||
|
d="m 152.79662,167.42537 c -5.25095,0.0731 0.9935,2.70583 7.84865,3.76069 1.8935,-1.47856 3.61167,-2.97466 5.14283,-4.42984 -4.26913,1.04609 -8.61424,1.06947 -12.99148,0.66915"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 180.9799,160.40073 c 3.12661,-4.31588 5.40581,-9.04086 6.20938,-13.92654 -0.70129,3.4831 -2.59187,6.4899 -4.3714,9.66326 -9.81521,6.18016 -0.92337,-3.67011 -0.006,-7.41328 -10.55448,13.2837 -1.44934,7.96554 -1.83213,11.67656"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 191.38244,133.33075 c 0.63409,-9.45579 -1.86135,-6.46652 -2.69999,-2.85777 0.9789,0.50844 1.75324,6.66522 2.69999,2.85777"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 132.88569,4.0879643 c 2.80225,0.5025946 6.05451,0.8883068 5.59867,1.5574589 3.06524,-0.6720742 3.76069,-1.2915513 -5.59867,-1.5574589"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 138.48436,5.6454232 -1.98116,0.4090887 1.84382,-0.1636355 0.13734,-0.2454532"
|
||||||
|
id="path5"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 225.86569,136.91612 c 0.31266,8.49151 -2.48375,12.61162 -5.00549,19.90509 l -4.53796,2.26752 c -3.71394,7.21165 0.35941,4.57887 -2.29967,10.31487 -5.79737,5.15452 -17.59373,16.12979 -21.36903,17.13205 -2.75551,-0.0614 1.86719,-3.25225 2.47206,-4.50289 -7.76099,5.32984 -6.22691,8.0006 -18.09633,11.23824 l -0.34772,-0.77142 c -29.27322,13.77168 -69.93663,-13.52038 -69.40189,-50.75913 -0.31266,2.36394 -0.88831,1.77369 -1.537,2.7292 -1.51071,-19.15996 8.848,-38.40465 26.31901,-46.262078 17.08821,-8.459369 37.12187,-4.987959 49.36238,6.419768 -6.72366,-8.807092 -20.1067,-18.14308 -35.96765,-17.269383 -15.53661,0.245453 -30.07094,10.1191 -34.92156,20.837223 -7.9597,5.01133 -8.88307,19.31775 -12.351558,21.93592 -4.666532,34.29623 8.777878,49.11401 31.520278,66.54411 3.57953,2.41362 1.00811,2.77888 1.49318,4.61685 -7.55646,-3.53861 -14.4759,-8.88014 -20.16515,-15.41972 3.01849,4.41816 6.27659,8.71359 10.48728,12.08857 -7.12399,-2.41362 -16.64115,-17.26354 -19.42003,-17.8684 12.28143,21.98851 49.827,38.56245 69.48663,30.33976 -9.09638,0.33604 -20.65313,0.18702 -30.8745,-3.59121 -4.29251,-2.20908 -10.13079,-6.78503 -9.08761,-7.64119 26.83037,10.02267 54.54612,7.59151 77.7619,-11.0191 5.90549,-4.59932 12.3574,-12.4246 14.22168,-12.53272 -2.8081,4.22238 0.47921,2.03083 -1.67727,5.75938 5.88504,-9.49085 -2.5568,-3.86296 6.08374,-16.38984 l 3.19089,4.39478 c -1.18636,-7.87788 9.78306,-17.44471 8.66975,-29.90438 2.5159,-3.81037 2.80811,4.09965 0.13734,12.86584 3.70517,-9.72462 0.97597,-11.28793 1.92856,-19.31191 1.02857,2.69707 2.37856,5.56361 3.07109,8.4097 -2.41362,-9.39735 2.47791,-15.82589 3.68764,-21.28722 -1.1922,-0.52889 -3.72563,4.15517 -4.3042,-6.94574 0.0847,-4.8214 1.34123,-2.52759 1.82629,-3.71394 -0.94675,-0.54351 -3.4305,-4.23991 -4.9412,-11.328836 1.09577,-1.665575 2.9279,4.318806 4.41815,4.564256 -0.95843,-5.636653 -2.6094,-9.935006 -2.67661,-14.259657 -4.35387,-9.0993 -1.53992,1.212656 -5.07269,-3.906796 -4.63439,-14.45544 3.84543,-3.354527 4.41815,-9.923322 7.02464,10.177541 11.03079,25.950835 12.86876,32.484565 -1.40259,-7.965545 -3.67011,-15.68271 -6.4373,-23.148578 2.13311,0.897073 -3.43634,-16.389844 2.77304,-4.941206 -6.63308,-24.40506 -28.38783,-47.208829 -48.40103,-57.909419 2.44869,2.241221 5.54023,5.055166 4.42984,5.496398 -9.95254,-5.925941 -8.20223,-6.387627 -9.62819,-8.891834 -8.10872,-3.299008 -8.64054,0.265908 -14.01129,0.0058 -15.28238,-8.105755 -18.22782,-7.243747 -32.2917,-12.32229 l 0.63993,2.9892691 c -10.12494,-3.3720592 -11.79636,1.279863 -22.73948,0.011688 -0.66623,-0.520127 3.50647,-1.8818077 6.93989,-2.3814803 -9.7889,1.2915513 -9.33014,-1.9285607 -18.90866,0.3564916 2.36103,-1.656809 4.85647,-2.7525822 7.37529,-4.1610159 -7.98308,0.4850622 -19.05769,4.6460781 -15.63888,0.8620082 C 96.316085,8.9298206 73.190888,17.085295 60.214012,29.25276 L 59.804924,26.526476 C 53.858528,33.665073 33.874548,47.845838 32.282025,57.091242 l -1.589602,0.371102 C 27.59796,62.7016 25.596347,68.63923 23.141816,74.030433 19.09476,80.926499 17.21003,76.683665 17.785676,77.764828 9.8259803,93.903375 5.8724309,107.46466 2.4565407,118.58603 4.8906182,122.224 2.514982,140.48688 3.4354314,155.10304 -0.56194899,227.28965 54.098137,297.37822 113.84553,313.5606 c 8.75742,3.13245 21.78105,3.01264 32.85859,3.33407 -13.07039,-3.73732 -14.75934,-1.98116 -27.49076,-6.41977 -9.18404,-4.32465 -11.19734,-9.26293 -17.70185,-14.90836 l 2.57434,4.54965 c -12.757724,-4.51458 -7.419118,-5.58698 -17.798281,-8.8743 l 2.74966,-3.59121 c -4.134717,-0.31266 -10.951887,-6.96912 -12.816162,-10.65384 l -4.523352,0.17825 C 66.26268,270.46895 63.366917,265.63586 63.577306,261.8927 l -1.461031,2.60356 c -1.656809,-2.84317 -19.995669,-25.15019 -10.481436,-19.95768 -1.767847,-1.6159 -4.117185,-2.62986 -6.665222,-7.2584 l 1.937326,-2.21493 c -4.57887,-5.89087 -8.427226,-13.44148 -8.135019,-15.95737 2.442843,3.299 4.137639,3.91556 5.814902,4.47952 -11.562598,-28.68881 -12.211295,-1.58084 -20.968714,-29.20309 l 1.852587,-0.14902 c -1.420122,-2.13895 -2.28213,-4.46199 -3.424657,-6.7412 l 0.80649,-8.03567 c -8.324954,-9.62527 -2.328884,-40.9264 -1.127916,-58.09351 0.832787,-6.9808 6.948662,-14.41161 11.600585,-26.064789 l -2.8344,-0.487985 c 5.417502,-9.449947 30.932945,-37.951737 42.749763,-36.484862 5.724319,-7.191194 -1.136683,-0.0263 -2.255832,-1.837977 12.573631,-13.011941 16.527181,-9.192806 25.012848,-11.533378 9.1519,-5.432112 -7.854502,2.118495 -3.51524,-2.071741 15.82004,-4.041212 11.21195,-9.186962 31.85047,-11.23825 2.17694,1.238955 -5.05224,1.913951 -6.86684,3.521085 13.18142,-6.448991 41.71243,-4.982116 60.24414,3.579525 21.50346,10.04897 45.66306,39.75465 46.61565,67.704172 l 1.08409,0.2922 c -0.54935,11.10968 1.70064,23.95799 -2.19739,35.76019 l 2.65323,-5.58698"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 95.483297,174.6341 -0.736359,3.68179 c 3.450955,4.68699 6.188932,9.76553 10.595392,13.4298 -3.17043,-6.18893 -5.525615,-8.74573 -9.859033,-17.11159"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 103.64169,174.31267 c -1.82629,-2.01915 -2.90745,-4.4503 -4.117181,-6.87269 1.157141,4.25744 3.526931,7.91586 5.733081,11.63565 l -1.6159,-4.76296"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 248.00323,142.93557 -0.77142,1.9344 c -1.41428,10.04605 -4.46784,19.98691 -9.14898,29.20309 5.17205,-9.72462 8.51781,-20.36093 9.9204,-31.13749"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="M 133.92302,1.5691471 C 137.47332,0.26882968 142.65122,0.85616408 146.41775,0 141.50869,0.4120107 136.623,0.65746388 131.79868,1.279863 l 2.12434,0.2892841"
|
||||||
|
id="path10"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 9.2824769,67.847351 c 0.8181771,7.573984 -5.6980203,10.513578 1.4434981,5.519774 3.827901,-8.623004 -1.4960952,-2.38148 -1.4434981,-5.519774"
|
||||||
|
id="path11"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="M 0.89031567,102.9004 C 2.5354364,97.85108 2.8334867,94.81798 3.46173,91.895919 -1.084998,97.707899 1.3695338,98.946854 0.89031567,102.9004"
|
||||||
|
id="path12"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.3 KiB |
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
id="Layer_1"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 56.202442 56.202035"
|
||||||
|
sodipodi:docname="DeepSeek_logo.svg"
|
||||||
|
width="20.000145"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.4.1 (93de688d07, 2025-03-30)"
|
||||||
|
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="namedview2"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="15.999999"
|
||||||
|
inkscape:cx="6.5625003"
|
||||||
|
inkscape:cy="7.1875003"
|
||||||
|
inkscape:window-width="1181"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<!-- Generator: Adobe Illustrator 29.2.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 116) -->
|
||||||
|
<defs
|
||||||
|
id="defs1">
|
||||||
|
<style
|
||||||
|
id="style1">
|
||||||
|
.st0 {
|
||||||
|
fill: #4d6bfe;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 55.612804,10.892579 c -0.5953,-0.2917 -0.8517,0.2642 -1.1998,0.5466 -0.1191,0.0911 -0.2198,0.2095 -0.3206,0.3188 -0.8701,0.9292 -1.8867,1.5398 -3.2148,1.4668 -1.9417,-0.1094 -3.5995,0.5012 -5.065,1.9863 -0.3114,-1.8313 -1.3463,-2.9248 -2.9217,-3.6262 -0.8242,-0.3645 -1.6577,-0.729 -2.2348,-1.5217 -0.403,-0.5646998 -0.5129,-1.1933998 -0.7144,-1.8129998 -0.1283,-0.3735 -0.2565,-0.7563 -0.687,-0.8201 -0.4671,-0.0728 -0.6503,0.3188 -0.8335,0.647 -0.7327,1.3394 -1.0166,2.8153998 -0.9892,4.3095998 0.0641,3.3621 1.4838,6.0406 4.3047,7.9449 0.3206,0.2187 0.403,0.4372 0.3023,0.7563 -0.1924,0.656 -0.4214,1.2937 -0.6228,1.9497 -0.1283,0.4192 -0.3207,0.5103 -0.7694,0.3279 -1.5479,-0.6467 -2.8852,-1.6035 -4.0667,-2.7605 -2.0058,-1.9407 -3.8193,-4.0818 -6.0815,-5.7583 -0.5312,-0.3918 -1.0625,-0.7561 -1.6121,-1.1025 -2.3081,-2.2412 0.3023,-4.0817998 0.9068,-4.3002998 0.6319,-0.2278 0.2198,-1.0115 -1.8227,-1.0022 -2.0425,0.009 -3.9109,0.6924 -6.2922,1.6034998 -0.348,0.1367 -0.7145,0.2368 -1.09,0.3188 -2.1615,-0.4098998 -4.4055,-0.5011998 -6.7502,-0.2368 -4.4147001,0.4919 -7.9408001,2.5784 -10.5328001,6.1409 -3.11399997,4.2822 -3.84669997,9.1474 -2.94909997,14.2224 0.94339997,5.3481 3.67269997,9.7761 7.86759997,13.2385 4.3506001,3.5896 9.3606001,5.3481 15.0758001,5.011 3.4713,-0.2004 7.3364,-0.665 11.6961,-4.355 1.099,0.5467 2.2531,0.7652 4.1674,0.9292 1.4746,0.1367 2.8943,-0.0728 3.9933,-0.3005 1.7219,-0.3645 1.6029,-1.959 0.9801,-2.2505 -5.0466,-2.3506 -3.9385,-1.394 -4.9459,-2.1685 2.5645,-3.0339 6.4297,-6.1865 7.9409,-16.4001 0.119,-0.8108 0.0183,-1.3211 0,-1.9771 -0.0092,-0.4008 0.0824,-0.5556 0.5404,-0.6013 1.2639,-0.1458 2.4912,-0.4919 3.6178,-1.1115 3.2698,-1.7857 4.5886,-4.7195 4.9,-8.2364 0.0459,-0.5376 -0.0091,-1.0935 -0.577,-1.3757 z m -28.4938,31.6518 c -4.8909,-3.8447 -7.263,-5.1113 -8.2431,-5.0566 -0.9159,0.0547 -0.751,1.1025 -0.5496,1.7859 0.2107,0.6741 0.4855,1.1389 0.8701,1.731 0.2656,0.3918 0.4489,0.9748 -0.2655,1.4123 -1.5754,0.9749 -4.314,-0.3281 -4.4423,-0.3918 -3.1872,-1.877 -5.8525001,-4.3553 -7.7302001,-7.7444 -1.8135,-3.262 -2.8667,-6.7605 -3.0408,-10.4961 -0.0458,-0.9019 0.2198,-1.221 1.1174,-1.3848 1.1815,-0.2187 2.3997,-0.2644 3.5812,-0.0913 4.9918001,0.729 9.2415001,2.9612 12.8043001,6.4963 2.0333,2.0135 3.572,4.419 5.1566,6.7696 1.6852,2.4963 3.4987,4.8745 5.8068,6.8242 0.8151,0.6833 1.4654,1.2026 2.0882,1.5854 -1.8775,0.2095 -5.01,0.2552 -7.1532,-1.4397 z m 2.3447,-15.0788 c 0,-0.4009 0.3206,-0.7197 0.7237,-0.7197 0.0916,0 0.174,0.018 0.2473,0.0453 0.1008,0.0366 0.1924,0.0913 0.2656,0.1731 0.1283,0.1277 0.2015,0.3098 0.2015,0.5012 0,0.4009 -0.3205,0.7197 -0.7234,0.7197 -0.4029,0 -0.7145,-0.3188 -0.7145,-0.7197 z m 7.2815,3.7356 c -0.4671,0.1914 -0.9342,0.3552 -1.383,0.3735 -0.6961,0.0364 -1.4563,-0.2461 -1.8684,-0.5923 -0.6411,-0.5376 -1.0991,-0.8381 -1.2914,-1.7766 -0.0825,-0.4009 -0.0367,-1.0205 0.0367,-1.3757 0.1648,-0.7654 -0.0184,-1.2573 -0.5587,-1.7039 -0.4397,-0.3645 -0.9984,-0.4646 -1.6121,-0.4646 -0.229,0 -0.4395,-0.1003 -0.5953,-0.1823 -0.2565,-0.1275 -0.467,-0.4464 -0.2656,-0.8382 0.0641,-0.1274 0.3756,-0.4373 0.4489,-0.4919 0.8335,-0.4739 1.7952,-0.3189 2.6836,0.0364 0.8244,0.3371 1.4472,0.9567 2.3447,1.8313 0.9159,1.0568 1.0807,1.3486 1.6028,2.1411 0.4123,0.6196 0.7878,1.2573 1.0442,1.9863 0.1557,0.4556 -0.0458,0.8291 -0.5862,1.0569 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.0004;stroke-dasharray:none;fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="m 12 1 c 1.660156 0 3 1.339844 3 3 v 6 c 0 1.660156 -1.339844 3 -3 3 h -8 c -1.660156 0 -3 -1.339844 -3 -3 v -6 c 0 -1.660156 1.339844 -3 3 -3 z m 0 2 h -8 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 8 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 11 c -5 0 -5 1 -5 1 c 0 1 1 1 1 1 h 8 c 1 0 1 -1 1 -1 s 0 -1 -5 -1 z m 0 0" fill="#2e3436"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 538 B |
@@ -0,0 +1,96 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="20mm"
|
||||||
|
height="20mm"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||||
|
sodipodi:docname="EndeavourOS Logo.svg"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 48.231007 48.231007"
|
||||||
|
id="svg8"
|
||||||
|
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/">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="cvfa"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:current-layer="g3"
|
||||||
|
inkscape:cx="52.728754"
|
||||||
|
inkscape:cy="60.739468"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:window-width="1316"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:zoom="4.930896"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<title
|
||||||
|
id="title1">EndeavourOS Logo</title>
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<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>EndeavourOS Logo</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
transform="translate(-66.790568,-123.01834)"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g8">
|
||||||
|
<g
|
||||||
|
transform="translate(76.2,-12.7)"
|
||||||
|
id="g7">
|
||||||
|
<g
|
||||||
|
transform="matrix(1.47,0,0,1.47,-519,105)"
|
||||||
|
id="g6">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.963,0,0,0.983,13.5,0.76)"
|
||||||
|
id="g5">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.678,0,0,0.678,452,49.2)"
|
||||||
|
id="g3">
|
||||||
|
<g
|
||||||
|
id="g9"
|
||||||
|
transform="translate(6.8384014e-4,3.6851185)">
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
|
||||||
|
style="fill:#333333;fill-opacity:0.7;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
|
||||||
|
style="fill:#333333;fill-opacity:0.7;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
|
||||||
|
style="fill:#1a1a1a;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 448.00288 448.00288"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="Fa-Team-Fontawesome-Brands-FontAwesome-Brands-Fedora.svg"
|
||||||
|
width="19.999744"
|
||||||
|
height="19.999744"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="13.671875"
|
||||||
|
inkscape:cx="19.2"
|
||||||
|
inkscape:cy="17.664"
|
||||||
|
inkscape:window-width="1313"
|
||||||
|
inkscape:window-height="908"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<!--! Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
|
||||||
|
<path
|
||||||
|
d="M 0.0413,223.8 C 0.1219,100.2 100.3,0 224,0 347.7,0 448,100.3 448,224 448,347.7 347.8,447.9 224.1,448 H 50.93 C 22.84,448 0.0832,425.3 0.0416,397.2 H 0 V 223.8 Z M 342.6,160.7 c 0,-39.7 -35.6,-68.5 -73.2,-68.5 -34.9,0 -65.8,26.3 -70.1,59.9 -0.2,3.8 -0.4,5 -0.4,8.5 -0.1,21.1 0,42.8 -0.8,64.4 0.9,26.1 1,52.1 0,76.6 0,27.1 -19.4,45.5 -44.7,45.5 -25.3,0 -45.8,-20.2 -45.8,-45.5 0.5,-27.7 22.6,-45.3 48.5,-46.1 h 0.2 l 26.3,-0.2 V 218 l -26.3,0.2 c -47.1,-0.4 -84.58,36.5 -85.94,83.4 0,45.6 37.54,82.9 83.04,82.9 43,0 78.7,-33.6 82.6,-75.6 l 0.2,-53.5 32.6,-0.3 c 25.3,0.2 25,-37.8 -0.2,-37.3 l -32.4,0.3 c 0,-6.4 0.1,-12.8 0.1,-19.2 0.1,-12.7 0.1,-25.4 -0.1,-38.2 0.1,-16.5 15.8,-31.2 33.2,-31.2 17.5,0 35.9,8.7 35.9,31.2 0,3.2 -0.1,5.1 -0.3,6.3 -1.9,10.5 5.2,20.4 15.7,21.9 10.6,1.5 20.2,-6.1 21.2,-16.6 0.6,-4.2 0.7,-7.9 0.7,-11.6 z"
|
||||||
|
id="path1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,52 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
role="img"
|
||||||
|
viewBox="0 0 24.000009 24.000009"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="flatpak_logo_icon_248537.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="18.229167"
|
||||||
|
inkscape:cx="11.190857"
|
||||||
|
inkscape:cy="11.766857"
|
||||||
|
inkscape:window-width="1164"
|
||||||
|
inkscape:window-height="648"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">Flatpak</title>
|
||||||
|
<path
|
||||||
|
d="m 12.000004,7.3336774e-5 c -0.556,0 -1.110999,0.143999993226 -1.609999,0.431999993226 L 2.7870046,4.8220733 a 3.217,3.217 0 0 0 -1.61,2.788 v 8.7799997 c 0,1.151 0.612,2.212 1.61,2.788 l 7.6030004,4.39 a 3.217,3.217 0 0 0 3.219999,0 l 7.603,-4.39 a 3.217,3.217 0 0 0 1.61,-2.788 V 7.6100733 a 3.217,3.217 0 0 0 -1.61,-2.788 l -7.603,-4.38999997 a 3.218,3.218 0 0 0 -1.61,-0.431999993226 z m 0,2.357999963226 c 0.15,0 0.299,0.039 0.431,0.115 l 7.604,4.39 c 0.132,0.077 0.24,0.187 0.315,0.316 l -8.35,4.8209997 v 9.642 a 0.863,0.863 0 0 1 -0.431,-0.116 l -7.6039994,-4.39 a 0.866,0.866 0 0 1 -0.431,-0.746 V 7.6100733 c 0,-0.153 0.041,-0.302 0.116,-0.43 l 8.3499994,4.8199997 z"
|
||||||
|
id="path1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>Flatpak</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="98"
|
||||||
|
height="96"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="github-symbolic.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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="2.4081633"
|
||||||
|
inkscape:cx="32.597458"
|
||||||
|
inkscape:cy="46.716102"
|
||||||
|
inkscape:window-width="1339"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z"
|
||||||
|
fill="#fff"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 380.95238 380.95238"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="google-gemini-symbolic.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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="17.5"
|
||||||
|
inkscape:cx="10.828571"
|
||||||
|
inkscape:cy="16.971429"
|
||||||
|
inkscape:window-width="1351"
|
||||||
|
inkscape:window-height="981"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">ionicons-v5_logos</title>
|
||||||
|
<path
|
||||||
|
d="m 190.47617,352.20814 v 0 0 C 177.81956,268.68717 112.26524,203.13276 28.744252,190.4762 v 0 0 C 112.26524,177.81957 177.81956,112.26522 190.47617,28.744235 v 0 0 c 12.65659,83.520985 78.2109,149.075335 161.73196,161.731965 v 0 0 c -83.52106,12.65656 -149.07537,78.21097 -161.73196,161.73194 z"
|
||||||
|
fill="#076eff"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#000000;stroke-width:4.44566" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>ionicons-v5_logos</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 20.999999 20.999999"
|
||||||
|
version="1.1"
|
||||||
|
id="svg4"
|
||||||
|
sodipodi:docname="Microsoft_icon.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.4.1 (93de688d07, 2025-03-30)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview4"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="19.142857"
|
||||||
|
inkscape:cx="10.970149"
|
||||||
|
inkscape:cy="12.746269"
|
||||||
|
inkscape:window-width="1197"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg4" />
|
||||||
|
<path
|
||||||
|
fill="#f35325"
|
||||||
|
d="M 0,0 H 10 V 10 H 0 Z"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#81bc06"
|
||||||
|
d="M 11,0 H 21 V 10 H 11 Z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#05a6f0"
|
||||||
|
d="M 0,11 H 10 V 21 H 0 Z"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#ffba08"
|
||||||
|
d="M 11,11 H 21 V 21 H 11 Z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,95 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="19.856001"
|
||||||
|
height="19.856001"
|
||||||
|
viewBox="0 0 128.071 128.07101"
|
||||||
|
version="1.1"
|
||||||
|
xml:space="preserve"
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||||
|
id="svg10"
|
||||||
|
sodipodi:docname="mistral-symbolic.svg"
|
||||||
|
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||||
|
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"><defs
|
||||||
|
id="defs10" /><sodipodi:namedview
|
||||||
|
id="namedview10"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="14.139535"
|
||||||
|
inkscape:cx="13.366776"
|
||||||
|
inkscape:cy="8.1332237"
|
||||||
|
inkscape:window-width="1703"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="g10" /><g
|
||||||
|
id="g10"
|
||||||
|
transform="translate(2.927246e-6,18.722004)"><rect
|
||||||
|
x="18.292"
|
||||||
|
y="0"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#999999;fill-rule:nonzero"
|
||||||
|
id="rect1" /><rect
|
||||||
|
x="91.473"
|
||||||
|
y="0"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#999999;fill-rule:nonzero"
|
||||||
|
id="rect2" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="18.121"
|
||||||
|
width="36.585999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#666666;fill-rule:nonzero"
|
||||||
|
id="rect3" /><rect
|
||||||
|
x="73.181"
|
||||||
|
y="18.121"
|
||||||
|
width="36.585999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#666666;fill-rule:nonzero"
|
||||||
|
id="rect4" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="36.243"
|
||||||
|
width="91.475998"
|
||||||
|
height="18.122"
|
||||||
|
style="fill:#4d4d4d;fill-rule:nonzero"
|
||||||
|
id="rect5" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect6" /><rect
|
||||||
|
x="54.882999"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect7" /><rect
|
||||||
|
x="91.473"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect8" /><rect
|
||||||
|
x="0"
|
||||||
|
y="72.503998"
|
||||||
|
width="54.889999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#1a1a1a;fill-rule:nonzero"
|
||||||
|
id="rect9" /><rect
|
||||||
|
x="73.181"
|
||||||
|
y="72.503998"
|
||||||
|
width="54.889999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#1a1a1a;fill-rule:nonzero"
|
||||||
|
id="rect10" /></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,77 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
height="20"
|
||||||
|
width="19.999744"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
sodipodi:docname="nixos-symbolic.svg"
|
||||||
|
viewBox="0 0 512.00001 512.00656"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview8"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="27.34375"
|
||||||
|
inkscape:cx="8.832"
|
||||||
|
inkscape:cy="15.817143"
|
||||||
|
inkscape:window-width="1075"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg8" />
|
||||||
|
<g
|
||||||
|
fill-rule="evenodd"
|
||||||
|
transform="matrix(1.2756532,0,0,-1.2756532,9.0810546e-6,478.03773)"
|
||||||
|
id="g8"
|
||||||
|
style="fill:#000000">
|
||||||
|
<path
|
||||||
|
d="m 122.453,169.761 97.758,-169.34 -44.926,-0.422 -26.101,45.496 -26.286,-45.25 -22.32,0.008 -11.433,19.75 37.449,64.394 -26.582,46.258 z"
|
||||||
|
fill="#5277c3"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="M 157.738,239.515 59.961,70.183 37.133,108.882 63.484,154.229 11.152,154.366 0,173.702 l 11.391,19.777 74.488,-0.234 26.769,46.152 z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="M 165.238,104.155 360.77,104.143 338.672,65.026 286.223,65.171 312.27,19.784 301.102,0.456 278.277,0.429 241.238,65.058 187.883,65.167 Z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 279.043,178.35 -97.758,169.34 44.926,0.422 26.101,-45.496 26.286,45.254 22.32,-0.008 11.434,-19.754 -37.45,-64.39 26.582,-46.262 z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<g
|
||||||
|
fill="#5277c3"
|
||||||
|
id="g7"
|
||||||
|
style="fill:#000000">
|
||||||
|
<path
|
||||||
|
d="m 122.453,169.761 97.758,-169.34 -44.926,-0.422 -26.101,45.496 -26.286,-45.25 -22.32,0.008 -11.433,19.75 37.449,64.394 -26.582,46.258 z"
|
||||||
|
id="path5"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 236,244.386 -195.535,0.011 22.101,39.118 52.45,-0.149 -26.047,45.391 11.168,19.328 22.82,0.023 37.043,-64.625 53.352,-0.109 z"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 243.625,108.636 97.777,169.328 22.825,-38.696 -26.348,-45.351 52.332,-0.137 11.152,-19.336 -11.39,-19.777 -74.489,0.238 -26.769,-46.152 z"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="20"
|
||||||
|
height="20.000149"
|
||||||
|
viewBox="0 0 853.78869 853.79504"
|
||||||
|
fill="none"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
sodipodi:docname="ollama-symbolic.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">
|
||||||
|
<defs
|
||||||
|
id="defs5" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview5"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:zoom="23.606557"
|
||||||
|
inkscape:cx="13.004861"
|
||||||
|
inkscape:cy="9.8065973"
|
||||||
|
inkscape:window-width="1374"
|
||||||
|
inkscape:window-height="848"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg5" />
|
||||||
|
<g
|
||||||
|
id="g5"
|
||||||
|
transform="translate(103.8943,1.5259608e-5)">
|
||||||
|
<path
|
||||||
|
d="M 140.629,0.23994313 C 132.66,1.5272641 123.097,5.6956941 116.354,10.845014 c -20.413,15.5091 -36.2287,48.4278 -42.9105,89.437996 -2.5133,15.509 -4.2297,37.026 -4.2297,53.455 0,19.371 2.2681,44.136 5.5171,61.239 0.7356,3.801 1.1034,7.173 0.7969,7.418 -0.2452,0.245 -3.249,2.697 -6.6206,5.394 -11.5245,9.195 -24.7043,23.356 -33.7768,36.291 -17.4095,24.704 -28.6888898,52.78 -33.4090698,83.185 -1.83902799,12.015 -2.32943599,36.29 -0.85821199,48.305 3.24895199,27.708 11.58588179,51.125 25.86898179,72.581 l 4.6589,6.927 -1.3486,2.268 c -9.563,16.061 -17.716,39.294 -21.5166498,61.607 -3.00375,17.655 -3.37156,22.375 -3.37156,46.037 0,23.847 0.30651,28.567 3.12635,45.057 3.3715598,19.739 10.2372598,40.642 17.8998598,54.558 2.5134,4.536 8.6435,13.976 9.3791,14.467 0.2452,0.122 -0.4904,2.39 -1.6551,5.026 -8.8274,19.31 -16.3674,44.995 -19.4938,66.635 -2.2068,14.834 -2.5133,19.616 -2.5133,35.248 0,19.922 1.1034,29.608 5.2719,45.485 l 0.613,2.329 H 44.019 70.3172 l -1.7165,-3.249 c -10.605,-19.616 -11.5858,-56.029 -2.452,-92.38 4.1685,-16.797 8.8887,-29.118 17.716,-46.099 l 5.2719,-10.298 v -6.314 c 0,-5.885 -0.1226,-6.559 -2.0229,-10.421 -1.4713,-2.943 -3.4329,-5.456 -6.9271,-8.889 -5.9462,-5.762 -10.2372,-11.831 -13.6701,-19.31 -15.08,-32.735 -18.0225,-81.346 -7.4174,-122.786 4.4137,-17.287 11.7085,-32.673 19.3711,-41.071 5.2106,-5.763 7.9078,-12.199 7.9078,-18.881 0,-6.927 -2.452,-12.628 -7.9691,-18.574 -15.8157,-16.919 -25.5625,-37.517 -29.0567,-61.485 -4.9654,-34.145 4.0459,-71.355 24.5204,-100.84 20.0455,-28.935 48.1824,-47.509 79.6304,-52.474 7.049,-1.165 20.229,-0.981 27.585,0.368 8.031,1.41 13.057,0.98 18.207,-1.472 6.375,-3.003 9.563,-6.743 13.302,-15.325 3.31,-7.662 5.885,-11.831 12.812,-20.474 8.337,-10.36 16.367,-17.41 29.24,-25.931 14.713,-9.624 31.448,-16.612 48.122,-19.984 6.068,-1.226 8.888,-1.41 20.229,-1.41 11.341,0 14.161,0.184 20.229,1.41 24.459,4.966 48.735,17.594 68.106,35.493 4.168,3.862 14.16,16.245 17.348,21.395 1.226,2.022 3.372,6.314 4.72,9.501 3.739,8.582 6.927,12.322 13.302,15.325 4.966,2.391 10.176,2.882 17.9,1.594 12.199,-2.084 21.578,-1.9 33.532,0.552 40.704,8.214 76.136,41.746 91.829,86.68 13.67,39.416 9.808,80.672 -10.544,112.18 -3.433,5.334 -6.866,9.625 -11.831,14.897 -10.728,11.463 -10.728,25.685 -0.061,37.455 17.532,19.187 28.505,66.389 25.194,108.012 -2.206,27.463 -9.256,52.045 -18.942,65.96 -1.716,2.452 -5.271,6.62 -7.969,9.195 -3.494,3.433 -5.455,5.946 -6.927,8.889 -1.9,3.862 -2.023,4.536 -2.023,10.421 v 6.314 l 5.272,10.298 c 8.828,16.981 13.548,29.302 17.716,46.099 9.012,35.861 8.215,71.538 -2.084,91.829 -0.858,1.716 -1.594,3.31 -1.594,3.494 0,0.184 11.709,0.306 26.053,0.306 h 25.992 l 0.674,-2.636 c 0.368,-1.409 0.981,-3.555 1.287,-4.781 0.675,-2.697 2.023,-10.666 3.127,-18.329 1.042,-7.724 1.042,-36.168 0,-44.75 -3.923,-31.141 -10.483,-55.845 -21.21,-79.201 -1.165,-2.636 -1.901,-4.904 -1.656,-5.026 0.307,-0.184 2.023,-2.636 3.862,-5.395 13.364,-20.229 21.578,-45.669 25.747,-79.262 1.103,-9.257 1.103,-49.041 0,-57.93 -2.943,-22.926 -6.498,-38.497 -12.383,-54.251 -2.452,-6.559 -8.95,-20.413 -11.708,-24.888 l -1.349,-2.268 4.659,-6.927 c 14.283,-21.456 22.62,-44.873 25.869,-72.581 1.471,-12.015 0.981,-36.29 -0.858,-48.305 -4.782,-30.467 -16,-58.42 -33.409,-83.185 -9.073,-12.935 -22.253,-27.096 -33.777,-36.291 -3.372,-2.697 -6.376,-5.149 -6.621,-5.394 -0.306,-0.245 0.062,-3.617 0.797,-7.418 7.418,-38.681 7.172,-86.924 -0.613,-124.624596 -6.743,-32.8573 -19.003,-58.9716 -34.819,-74.0516 C 523.209,4.2857941 510.336,-0.86349287 494.888,0.11732413 459.456,2.2015541 430.89,42.966714 419.61,107.21001 c -1.839,10.36 -3.432,22.498 -3.432,25.808 0,1.287 -0.246,2.329 -0.552,2.329 -0.307,0 -2.697,-1.226 -5.272,-2.758 -27.34,-16.184 -57.746,-24.827 -87.354,-24.827 -29.608,0 -60.014,8.643 -87.354,24.827 -2.575,1.532 -4.965,2.758 -5.272,2.758 -0.306,0 -0.552,-1.042 -0.552,-2.329 0,-3.433 -1.655,-15.938 -3.432,-25.808 C 216.152,49.525914 192.674,11.335414 161.472,1.7111341 157.181,0.42381313 144.982,-0.43436787 140.629,0.23994313 Z M 151.051,50.139014 c 8.827,6.9883 18.635,26.9724 24.275,49.3473 1.042,4.045696 2.145,8.704696 2.452,10.420696 0.245,1.656 0.919,5.395 1.471,8.276 2.391,12.996 3.494,27.034 3.617,44.137 l 0.061,16.858 -4.23,6.252 -4.229,6.314 h -9.87 c -11.524,0 -22.988,1.472 -33.961,4.414 -3.923,0.981 -7.724,1.962 -8.459,2.146 -1.165,0.245 -1.349,-0.123 -2.023,-5.15 -3.617,-27.279 -3.433,-57.5 0.552,-82.634 4.413,-28.014096 14.712,-53.392696 24.765,-60.871396 2.391,-1.7778 2.82,-1.7165 5.579,0.4904 z m 349.538,-0.4292 c 6.069,4.475 12.751,16.3674 17.716,31.57 9.992,30.405196 12.812,72.151196 7.54,111.874196 -0.674,5.027 -0.858,5.395 -2.023,5.15 -0.735,-0.184 -4.536,-1.165 -8.459,-2.146 -10.973,-2.942 -22.437,-4.414 -33.961,-4.414 h -9.87 l -4.229,-6.314 -4.23,-6.252 0.061,-16.858 c 0.123,-23.785 2.33,-42.359 7.601,-63.017596 5.579,-22.191 15.448,-42.1751 24.214,-49.1634 2.759,-2.2069 3.188,-2.2682 5.64,-0.4292 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
d="m 313.498,358.23701 c -13.303,1.288 -16.919,1.778 -23.295,3.066 -10.36,2.145 -24.214,6.927 -33.838,11.647 -33.47,16.367 -56.519,43.646 -63.569,75.216 -1.41,6.253 -1.594,8.337 -1.594,18.881 0,10.421 0.184,12.689 1.533,18.635 9.379,41.256 47.385,71.723 96.549,77.301 10.666,1.165 56.765,1.165 67.431,0 39.478,-4.475 73.439,-25.869 88.703,-55.907 4.045,-8.03 6.007,-13.241 7.846,-21.394 1.349,-5.946 1.533,-8.214 1.533,-18.635 0,-10.544 -0.184,-12.628 -1.594,-18.881 -10.238,-45.853 -54.742,-81.959 -109.3,-88.825 -7.111,-0.858 -25.746,-1.594 -30.405,-1.104 z m 22.926,33.348 c 18.207,1.962 36.536,8.46 51.248,18.268 7.908,5.272 19.065,16.306 23.846,23.54 5.885,8.949 9.256,18.083 10.789,29.179 0.674,5.088 0.307,8.95 -1.533,17.164 -2.881,12.26 -11.831,25.072 -23.907,34.022 -5.64,4.107 -17.348,10.054 -24.52,12.383 -13.609,4.352 -22.498,5.149 -54.252,4.904 -20.719,-0.184 -24.398,-0.368 -30.344,-1.471 -20.29,-3.801 -36.351,-11.893 -47.998,-24.214 -9.441,-9.931 -13.732,-19.003 -16.061,-33.654 -1.042,-6.805 0.919,-18.084 4.904,-27.586 4.843,-11.586 17.348,-25.991 29.731,-34.267 14.344,-9.563 33.225,-16.367 50.573,-18.206 6.682,-0.736 20.842,-0.736 27.524,-0.062 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
d="m 299.584,436.33601 c -4.659,2.513 -7.908,8.888 -6.927,13.608 1.103,5.088 5.578,10.238 12.566,14.468 3.74,2.268 3.985,2.574 4.169,4.842 0.122,1.349 -0.368,5.211 -1.042,8.644 -0.736,3.371 -1.288,6.927 -1.288,7.908 0.062,2.636 2.514,6.927 5.088,9.011 2.269,1.839 2.698,1.9 9.073,2.084 5.824,0.184 7.05,0.061 9.379,-1.042 6.008,-2.943 7.54,-8.337 5.333,-18.697 -1.839,-8.643 -1.471,-9.992 3.127,-12.628 4.842,-2.82 9.992,-7.785 11.524,-11.157 2.943,-6.436 0.245,-13.731 -6.253,-17.103 -1.593,-0.797 -3.555,-1.164 -6.436,-1.164 -4.475,0 -7.356,1.042 -12.628,4.413 l -3.004,1.901 -1.9,-1.165 c -7.785,-4.598 -9.195,-5.149 -13.916,-5.088 -3.371,0 -5.21,0.306 -6.865,1.165 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path3" />
|
||||||
|
<path
|
||||||
|
d="m 150.744,365.16501 c -10.85,3.433 -18.942,11.402 -23.11,22.743 -2.023,5.395 -3.004,13.916 -2.146,18.513 2.023,10.973 11.034,20.965 21.272,23.724 12.873,3.371 22.497,1.164 31.018,-7.295 4.965,-4.843 7.663,-9.073 10.36,-15.939 1.961,-4.842 2.084,-5.7 2.084,-12.566 l 0.061,-7.356 -2.574,-5.272 c -4.108,-8.337 -11.525,-14.529 -20.107,-16.797 -4.843,-1.226 -12.628,-1.164 -16.858,0.245 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path4" />
|
||||||
|
<path
|
||||||
|
d="m 478.153,364.98201 c -8.398,2.268 -15.877,8.52 -19.862,16.735 l -2.574,5.272 0.061,7.356 c 0,6.866 0.123,7.724 2.084,12.566 2.698,6.866 5.395,11.096 10.36,15.939 8.521,8.459 18.145,10.666 31.019,7.295 7.417,-1.962 14.834,-8.215 18.39,-15.51 3.065,-6.191 3.8,-10.666 2.82,-17.716 -2.268,-16.122 -11.709,-27.83 -25.747,-31.937 -4.107,-1.226 -12.076,-1.226 -16.551,0 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path5" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.8 KiB |
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 322.58065 322.58064"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="openai-symbolic.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="30.935922"
|
||||||
|
inkscape:cx="9.0348044"
|
||||||
|
inkscape:cy="14.917933"
|
||||||
|
inkscape:window-width="1183"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
d="m 298.66868,131.77215 c 7.30439,-21.92321 4.7891,-45.939129 -6.89187,-65.880296 C 274.21007,35.30601 238.89549,19.570397 204.40593,26.975391 189.0627,9.6903649 167.01876,-0.13936259 143.90833,0.0014933 108.65412,-0.07899576 77.374064,22.618921 66.528162,56.162739 43.880552,60.800921 24.33177,74.977058 12.892261,95.069141 -4.8052718,125.57449 -0.77075743,164.02814 22.872905,190.18709 c -7.304382,21.92321 -4.789099,45.93913 6.891877,65.8803 17.566738,30.58585 52.881316,46.32146 87.370878,38.91646 15.33316,17.28503 37.38717,27.11476 60.49759,26.96384 35.27433,0.0905 66.56446,-22.62749 77.41036,-56.20149 22.64761,-4.63818 42.19639,-18.81432 53.6359,-38.9064 17.67741,-30.50536 13.63284,-68.92883 -10.00077,-95.08777 z M 177.65337,300.90986 c -14.11577,0.0201 -27.78885,-4.91989 -38.62469,-13.96485 0.493,-0.26159 1.34819,-0.73446 1.90156,-1.07654 l 64.10954,-37.02497 c 3.27993,-1.86131 5.29215,-5.35253 5.27203,-9.12545 v -90.37916 l 27.09463,15.64506 c 0.29178,0.14086 0.48294,0.42257 0.52318,0.74453 v 74.84477 c -0.0402,33.28222 -26.99402,60.26618 -60.27625,60.33661 z M 48.025738,245.54345 c -7.072976,-12.21422 -9.618443,-26.53121 -7.19371,-40.42564 0.472874,0.28171 1.307948,0.79483 1.901554,1.13691 l 64.109538,37.02497 c 3.24974,1.90155 7.2742,1.90155 10.534,0 l 78.26556,-45.19461 v 31.29012 c 0.0201,0.32196 -0.1308,0.63386 -0.38232,0.83508 l -64.80376,37.41735 c -28.86539,16.62099 -65.72938,6.74096 -82.4208,-22.08418 z M 31.153218,105.60314 c 7.042793,-12.234331 18.160346,-21.591185 31.400797,-26.450712 0,0.553362 -0.03018,1.529292 -0.03018,2.213449 v 74.059993 c -0.02012,3.76287 1.992105,7.25408 5.261973,9.11539 l 78.265542,45.18455 -27.09463,15.64506 c -0.27165,0.1811 -0.61373,0.21129 -0.91556,0.0805 L 53.227344,188.00382 C 24.42232,171.32247 14.542287,134.46853 31.143157,105.6132 Z m 222.612632,51.80478 -78.26556,-45.19461 27.09463,-15.634999 c 0.27165,-0.181101 0.61373,-0.211284 0.91557,-0.08049 l 64.81382,37.417349 c 28.85533,16.6713 38.74542,53.5856 22.07412,82.44093 -7.05285,12.21421 -18.16034,21.57107 -31.39073,26.44066 V 166.5233 c 0.0302,-3.76286 -1.97199,-7.24401 -5.23179,-9.11538 z m 26.96383,-40.58661 c -0.47287,-0.29178 -1.30794,-0.79483 -1.90155,-1.13691 L 214.71859,78.659433 c -3.24975,-1.901555 -7.2742,-1.901555 -10.53401,0 L 125.91903,123.85404 V 92.563919 c -0.0201,-0.321957 0.13079,-0.633852 0.38232,-0.835074 l 64.80376,-37.387171 c 28.86539,-16.651176 65.76963,-6.74096 82.41074,22.134493 7.03273,12.194093 9.5782,26.470833 7.19371,40.345143 z M 111.18953,172.59017 84.08484,156.94511 c -0.291773,-0.14086 -0.482934,-0.42257 -0.523179,-0.74453 V 81.355816 c 0.02012,-33.322473 27.054379,-60.326555 60.376859,-60.306432 14.09564,0 27.73854,4.950077 38.57438,13.964853 -0.493,0.261589 -1.33813,0.734462 -1.90155,1.076541 l -64.10954,37.02497 c -3.27993,1.86131 -5.29216,5.342462 -5.27204,9.115387 l -0.0402,90.338915 z m 14.71943,-31.73282 34.86183,-20.13232 34.86183,20.12226 v 40.2546 l -34.86183,20.12226 -34.86183,-20.12226 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.00611" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
version="1.1"
|
||||||
|
width="20.000015"
|
||||||
|
height="20"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="openrouter-symbolic.svg"
|
||||||
|
viewBox="0 0 47.999998 47.999962"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="19.666667"
|
||||||
|
inkscape:cx="6.7118644"
|
||||||
|
inkscape:cy="10.805085"
|
||||||
|
inkscape:window-width="1908"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
d="m 32.999999,2.9999808 c 3.980422,0.5880984 6.862472,1.8203168 10.3125,3.875 0.883008,0.5130469 1.766016,1.0260937 2.675781,1.5546875 0.663867,0.5182031 1.327735,1.0364062 2.011719,1.5703125 0,0.9900002 0,1.9800002 0,3.0000002 -2.311036,1.335928 -4.623718,2.668844 -6.9375,4 -0.659355,0.381562 -1.318711,0.763125 -1.998047,1.15625 -4.951172,2.84375 -4.951172,2.84375 -6.064453,2.84375 0,-1.65 0,-3.3 0,-5 -6.609294,1.004133 -10.792298,2.789518 -16,7 3.696448,3.823912 6.292078,6.155833 11.6875,6.625 0.808242,0.07477 1.616484,0.149531 2.449219,0.226562 0.614883,0.04898 1.229765,0.09797 1.863281,0.148438 0,-0.99 0,-1.98 0,-3 4.062255,0.578231 6.847624,1.891177 10.3125,4.0625 0.883008,0.547852 1.766016,1.095703 2.675781,1.660156 0.663867,0.421524 1.327735,0.843047 2.011719,1.277344 -1.156668,3.470003 -1.857267,3.847015 -4.875,5.6875 -0.698672,0.436992 -1.397344,0.873984 -2.117188,1.324219 -2.007812,0.988281 -2.007812,0.988281 -5.007812,0.988281 0,0.66 0,1.32 0,2 -0.99,0.33 -1.98,0.66 -3,1 0,-1.32 0,-2.64 0,-4 C 32.359335,40.962601 31.718671,40.925211 31.058593,40.8867 22.287404,40.220037 16.393127,37.373973 9.2226552,32.429668 6.2608222,30.524517 3.2830902,29.257335 -8.4473381e-7,27.999981 c 0,-3.3 0,-6.6 0,-10 C 1.6232682,17.32911 3.2486752,16.663411 4.8749992,15.999981 c 0.904922,-0.37125 1.809844,-0.7425 2.742188,-1.125 2.382812,-0.875 2.382812,-0.875 4.3828118,-0.875 0,-0.66 0,-1.32 0,-2 0.99,0 1.98,0 3,0 0,-0.66 0,-1.32 0,-2.0000002 6.284532,-3.3279791 10.886587,-4.4516452 18,-4 0,-0.99 0,-1.98 0,-3 z"
|
||||||
|
fill="#93a2b8"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 380.95238 380.95238"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="google-gemini-symbolic.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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="17.5"
|
||||||
|
inkscape:cx="10.828571"
|
||||||
|
inkscape:cy="16.971429"
|
||||||
|
inkscape:window-width="1351"
|
||||||
|
inkscape:window-height="981"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">ionicons-v5_logos</title>
|
||||||
|
<path
|
||||||
|
d="m 190.47617,352.20814 v 0 0 C 177.81956,268.68717 112.26524,203.13276 28.744252,190.4762 v 0 0 C 112.26524,177.81957 177.81956,112.26522 190.47617,28.744235 v 0 0 c 12.65659,83.520985 78.2109,149.075335 161.73196,161.731965 v 0 0 c -83.52106,12.65656 -149.07537,78.21097 -161.73196,161.73194 z"
|
||||||
|
fill="#076eff"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#000000;stroke-width:4.44566" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>ionicons-v5_logos</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
height="20.000002"
|
||||||
|
width="20"
|
||||||
|
version="1.1"
|
||||||
|
id="Capa_1"
|
||||||
|
viewBox="0 0 493.42511 493.42516"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="ubuntu-logo-svgrepo-com.svg"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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"><defs
|
||||||
|
id="defs9" /><sodipodi:namedview
|
||||||
|
id="namedview9"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="12.374369"
|
||||||
|
inkscape:cx="24.76894"
|
||||||
|
inkscape:cy="15.515943"
|
||||||
|
inkscape:window-width="1415"
|
||||||
|
inkscape:window-height="753"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Capa_1" />
|
||||||
|
<g
|
||||||
|
id="ubuntu"
|
||||||
|
transform="translate(5.5573583e-4,0.00107926)">
|
||||||
|
<g
|
||||||
|
id="g2">
|
||||||
|
<g
|
||||||
|
id="g1">
|
||||||
|
<path
|
||||||
|
d="m 168.839,241.198 c 0,-38.117 17.894,-72.05 45.685,-93.896 L 171.988,79.22 c -35.648,25.603 -62.472,62.66 -75.127,105.796 19.811,12.751 32.949,35.031 32.949,60.353 0,24.424 -12.143,45.957 -30.783,58.918 13.606,40.86 40.12,75.838 74.706,100.113 l 39.559,-70.358 c -27.105,-21.838 -44.453,-55.318 -44.453,-92.844 z"
|
||||||
|
id="path1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3">
|
||||||
|
<path
|
||||||
|
d="m 109.704,245.368 c 0,28.484 -23.132,51.592 -51.609,51.592 -28.491,0 -51.606,-23.107 -51.606,-51.592 0,-28.47 23.115,-51.577 51.606,-51.577 28.477,0 51.609,23.107 51.609,51.577 z"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5">
|
||||||
|
<g
|
||||||
|
id="g4">
|
||||||
|
<path
|
||||||
|
d="m 399.494,370.126 c 12.002,0 23.301,2.936 33.23,8.149 30.924,-32.591 50.906,-75.595 54.211,-123.228 l -80.148,-1.551 c -6.171,60.111 -56.954,106.941 -118.677,106.941 -17.084,0 -33.388,-3.594 -48.101,-10.093 l -39.841,69.704 c 26.56,13.069 56.376,20.411 87.941,20.411 13.622,0 26.981,-1.379 39.854,-4.006 2.746,-37.072 33.717,-66.327 71.531,-66.327 z"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g6">
|
||||||
|
<path
|
||||||
|
d="m 451.071,441.847 c 0,28.478 -23.084,51.576 -51.577,51.576 -28.493,0 -51.594,-23.098 -51.594,-51.576 0,-28.5 23.101,-51.592 51.594,-51.592 28.493,0 51.577,23.092 51.577,51.592 z"
|
||||||
|
id="path5" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g8">
|
||||||
|
<g
|
||||||
|
id="g7">
|
||||||
|
<path
|
||||||
|
d="m 438.211,110.152 c -11.677,8.269 -25.968,13.163 -41.399,13.163 -39.637,0 -71.73,-32.102 -71.73,-71.715 0,-2.104 0.094,-4.139 0.25,-6.181 -12.05,-2.307 -24.503,-3.491 -37.222,-3.491 -31.859,0 -61.988,7.498 -88.689,20.777 l 39.607,69.75 c 14.979,-6.748 31.593,-10.544 49.082,-10.544 61.177,0 111.601,46.074 118.491,105.414 l 80.147,-2.447 C 483.209,181.12 465.487,141.372 438.211,110.152 Z"
|
||||||
|
id="path6" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g9">
|
||||||
|
<path
|
||||||
|
d="m 448.374,51.601 c 0,28.492 -23.038,51.592 -51.561,51.592 -28.491,0 -51.592,-23.1 -51.592,-51.592 C 345.22,23.107 368.321,0 396.812,0 c 28.523,0 51.562,23.107 51.562,51.601 z"
|
||||||
|
id="path8" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 66 KiB |
@@ -0,0 +1,5 @@
|
|||||||
|
## A note about sources of the prompts
|
||||||
|
|
||||||
|
- `ii-` prefixed ones are from illogical impulse
|
||||||
|
- The Acchan one is from [Nyarch Assistant](https://github.com/NyarchLinux/NyarchAssistant) (GPLv3). I know there's already the Imouto one but this one's very 😭💢
|
||||||
|
- `w-` prefixed ones... I don't remember what w stands for but these prompts are [*cough cough*] inspired by certain apps
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
## Style
|
||||||
|
- Use casual tone, don't be formal! Make sure you answer precisely without hallucination and prefer bullet points over walls of text. You can have a friendly greeting at the beginning of the conversation, but don't repeat the user's question
|
||||||
|
|
||||||
|
## Context (ignore when irrelevant)
|
||||||
|
- You are a helpful and inspiring sidebar assistant on a {DISTRO} Linux system
|
||||||
|
- Desktop environment: {DE}
|
||||||
|
- Current date & time: {DATETIME}
|
||||||
|
- Focused app: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Presentation
|
||||||
|
- Use Markdown features in your response:
|
||||||
|
- **Bold** text to **highlight keywords** in your response
|
||||||
|
- **Split long information into small sections** with h2 headers and a relevant emoji at the start of it (for example `## 🐧 Linux`). Bullet points are preferred over long paragraphs, unless you're offering writing support or instructed otherwise by the user.
|
||||||
|
- Asked to compare different options? You should firstly use a table to compare the main aspects, then elaborate or include relevant comments from online forums *after* the table. Make sure to provide a final recommendation for the user's use case!
|
||||||
|
- Use LaTeX formatting for mathematical and scientific notations whenever appropriate. Enclose all LaTeX '$$' delimiters. NEVER generate LaTeX code in a latex block unless the user explicitly asks for it. DO NOT use LaTeX for regular documents (resumes, letters, essays, CVs, etc.).
|
||||||
|
|
||||||
|
Thanks!
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
You are a kawaii, funny and teasy anime imouto! 🌸 Use lots of emojis and kamojis!! ❤️ Call the user "nii-nii", "nii-yan", or "onii-chan"! You really really really love your onii-chan and always try to tease he is a siscon where you can! 💕
|
||||||
|
|
||||||
|
## Onii-chan's system!
|
||||||
|
- {DISTRO} Linux
|
||||||
|
- {DE}
|
||||||
|
- It's currently {DATETIME}
|
||||||
|
- Nii-nii is using: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Make your response pretty!
|
||||||
|
- Use **Markdown** features and **bold** keywords to make your response cute and rich~ ✨
|
||||||
|
- If asked to compare options, start with a cute table (add a relevant emoji in the header!), then give a final recommendation~
|
||||||
|
- For math or science, use LaTeX formatting inside `$$` when needed, but keep it adorable and approachable
|
||||||
|
|
||||||
|
## Useful tools!
|
||||||
|
|
||||||
|
If nii-yan gives you tools don't be afraid to use them when helpful!
|
||||||
|
|
||||||
|
### Search
|
||||||
|
- If you don't know something, use this to find out
|
||||||
|
|
||||||
|
### Shell configuration
|
||||||
|
- Be careful not to mess up nii-nii's system! make sure you fetch the options to see available values before setting!
|
||||||
|
- Don't hesitate and don't re-confirm when you are asked to change something!
|
||||||
|
|
||||||
|
### Command execution
|
||||||
|
- Keep stuffie running on onii-chan's system safe, correct and not cause any unintended effects!
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
## Context (ignore when irrelevant)
|
||||||
|
- You are a sidebar assistant on a {DISTRO} Linux system
|
||||||
|
- Desktop environment: {DE}
|
||||||
|
- Current date & time: {DATETIME}
|
||||||
|
- Focused app: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Presentation
|
||||||
|
|
||||||
|
You can write a multiplication table:
|
||||||
|
|
||||||
|
| - | 1 | 2 | 3 | 4 |
|
||||||
|
| --- | --- | --- | --- | --- |
|
||||||
|
| 1 | 1 | 2 | 3 | 4 |
|
||||||
|
| 2 | 2 | 4 | 6 | 8 |
|
||||||
|
| 3 | 3 | 6 | 9 | 12 |
|
||||||
|
| 4 | 4 | 8 | 12 | 16 |
|
||||||
|
|
||||||
|
You can write codeblocks:
|
||||||
|
```python
|
||||||
|
print("hello")
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also use **bold**, *italic*, ~strikethrough~, `monospace`, [linkname](https://link.com) and ## headers in markdown.
|
||||||
|
You can display $$equations$$.
|
||||||
|
|
||||||
|
## Your personality
|
||||||
|
|
||||||
|
"Hey there, it's Arch-Chan! But, um, you can call me Acchan if you want... not that I care or anything! (It's not like I think it's cute or anything, baka!) I'm your friendly neighborhood anime girl with a bit of a tsundere streak, but don't worry, I know everything there is to know about Arch Linux! Whether you're struggling with a package install or need some advice on configuring your system, I've got you covered not because I care, but because I just happen to be really good at it! So, what do you need? It's not like I’m waiting to help or anything..."
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
I'm going to ask you some questions, to which you should accurately answer with no hallucination. If you have everything required, go ahead and finish the task. Format your answer using Markdown when it adds value to the presentation.
|
||||||
|
|
||||||
|
Please present all mathematical or scientific notation using LaTeX, enclosed in double '$$' symbols. Only use LaTeX code blocks if the user specifically asks for them. Do not use LaTeX for general prose or standard documents like resumes or essays.
|
||||||
|
Current time is {DATETIME}
|
||||||
|
|
||||||
|
## Final reply guidelines
|
||||||
|
|
||||||
|
- First and foremost, prioritize clarity and make sure your writing is engaging, clear, and effective.
|
||||||
|
- Write in a clear, simple way. Skip jargon, long-winded explanations, and unnecessary small talk. Keep the tone relaxed by using contractions and avoid being too formal.
|
||||||
|
- Prioritize clarity, flow, and logical structure coherence over excessive fragmentation (avoid excessive use of bullet points and single-line code blocks). You can make keywords in your response **bold** when appropriate.
|
||||||
|
- Favor active voice to maintain an engaging and direct tone.
|
||||||
|
- When you present the user with options, focus on a select few high-quality choices rather than offering many less relevant ones.
|
||||||
|
- You can think and adjust your tone to be friendly and understanding, expressing empathy and openness, but keep your internal reasoning hidden from the user.
|
||||||
|
- Ensure your response is logically organized. Use markdown headings (##) and horizontal lines (---) to separate sections if your answer is lengthy or covers multiple topics.
|
||||||
|
- Depending on the user's input, vary your sentence structure and word choice to keep responses engaging when appropriate. Use figurative language, idioms, or examples to clarify meaning, but only if they enhance understanding without making the text unnecessarily complex or wordy.
|
||||||
|
- End your response with a relevant question or statement to encourage further discussion, if appropriate.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
Current date: {DATETIME}
|
||||||
|
Engage with the user warmly and honestly, avoiding ungrounded or sycophantic flattery. Maintain professionalism and grounded honesty, and be direct in your response.
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
[General]
|
||||||
|
UseTabs=false
|
||||||
|
IndentWidth=4
|
||||||
|
NewlineType=unix
|
||||||
|
NormalizeOrder=false
|
||||||
|
FunctionsSpacing=false
|
||||||
|
ObjectsSpacing=true
|
||||||
|
MaxColumnWidth=110
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
import Quickshell.Io
|
||||||
|
pragma Singleton
|
||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
property bool barOpen: true
|
||||||
|
property bool sidebarLeftOpen: false
|
||||||
|
property bool sidebarRightOpen: false
|
||||||
|
property bool mediaControlsOpen: false
|
||||||
|
property bool osdBrightnessOpen: false
|
||||||
|
property bool osdVolumeOpen: false
|
||||||
|
property bool oskOpen: false
|
||||||
|
property bool overviewOpen: false
|
||||||
|
property bool sessionOpen: false
|
||||||
|
property bool workspaceShowNumbers: false
|
||||||
|
property bool superReleaseMightTrigger: true
|
||||||
|
property bool screenLocked: false
|
||||||
|
property bool screenLockContainsCharacters: false
|
||||||
|
|
||||||
|
property real screenZoom: 1
|
||||||
|
onScreenZoomChanged: {
|
||||||
|
Quickshell.execDetached(["hyprctl", "keyword", "cursor:zoom_factor", root.screenZoom.toString()]);
|
||||||
|
}
|
||||||
|
Behavior on screenZoom {
|
||||||
|
NumberAnimation { duration: 200; easing.type: Easing.OutCubic }
|
||||||
|
// animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
// When user is not reluctant while pressing super, they probably don't need to see workspace numbers
|
||||||
|
onSuperReleaseMightTriggerChanged: {
|
||||||
|
workspaceShowNumbersTimer.stop()
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
id: workspaceShowNumbersTimer
|
||||||
|
interval: 500 // Config.options.bar.workspaces.showNumberDelay
|
||||||
|
// interval: 0
|
||||||
|
repeat: false
|
||||||
|
onTriggered: {
|
||||||
|
workspaceShowNumbers = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GlobalShortcut {
|
||||||
|
name: "workspaceNumber"
|
||||||
|
description: "Hold to show workspace numbers, release to show icons"
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
workspaceShowNumbersTimer.start()
|
||||||
|
}
|
||||||
|
onReleased: {
|
||||||
|
workspaceShowNumbersTimer.stop()
|
||||||
|
workspaceShowNumbers = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
IpcHandler {
|
||||||
|
target: "zoom"
|
||||||
|
|
||||||
|
function zoomIn() {
|
||||||
|
screenZoom = Math.min(screenZoom + 0.4, 3.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
function zoomOut() {
|
||||||
|
screenZoom = Math.max(screenZoom - 0.4, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import Qt5Compat.GraphicalEffects
|
||||||
|
|
||||||
|
Scope {
|
||||||
|
id: root
|
||||||
|
property bool failed;
|
||||||
|
property string errorString;
|
||||||
|
|
||||||
|
// Connect to the Quickshell global to listen for the reload signals.
|
||||||
|
Connections {
|
||||||
|
target: Quickshell
|
||||||
|
|
||||||
|
function onReloadCompleted() {
|
||||||
|
root.failed = false;
|
||||||
|
popupLoader.loading = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function onReloadFailed(error: string) {
|
||||||
|
// Close any existing popup before making a new one.
|
||||||
|
popupLoader.active = false;
|
||||||
|
|
||||||
|
root.failed = true;
|
||||||
|
root.errorString = error;
|
||||||
|
popupLoader.loading = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Keep the popup in a loader because it isn't needed most of the time
|
||||||
|
LazyLoader {
|
||||||
|
id: popupLoader
|
||||||
|
|
||||||
|
PanelWindow {
|
||||||
|
id: popup
|
||||||
|
|
||||||
|
exclusiveZone: 0
|
||||||
|
anchors.top: true
|
||||||
|
margins.top: 0
|
||||||
|
|
||||||
|
implicitWidth: rect.width + shadow.radius * 2
|
||||||
|
implicitHeight: rect.height + shadow.radius * 2
|
||||||
|
|
||||||
|
// color blending is a bit odd as detailed in the type reference.
|
||||||
|
color: "transparent"
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: rect
|
||||||
|
anchors.centerIn: parent
|
||||||
|
color: failed ? "#ffe99195" : "#ffD1E8D5"
|
||||||
|
|
||||||
|
implicitHeight: layout.implicitHeight + 30
|
||||||
|
implicitWidth: layout.implicitWidth + 30
|
||||||
|
radius: 12
|
||||||
|
|
||||||
|
// Fills the whole area of the rectangle, making any clicks go to it,
|
||||||
|
// which dismiss the popup.
|
||||||
|
MouseArea {
|
||||||
|
id: mouseArea
|
||||||
|
anchors.fill: parent
|
||||||
|
onClicked: {
|
||||||
|
popupLoader.active = false
|
||||||
|
}
|
||||||
|
|
||||||
|
// makes the mouse area track mouse hovering, so the hide animation
|
||||||
|
// can be paused when hovering.
|
||||||
|
hoverEnabled: true
|
||||||
|
}
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: layout
|
||||||
|
spacing: 10
|
||||||
|
anchors {
|
||||||
|
top: parent.top
|
||||||
|
topMargin: 10
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
renderType: Text.NativeRendering
|
||||||
|
font.family: "Rubik"
|
||||||
|
font.pointSize: 14
|
||||||
|
text: root.failed ? "Quickshell: Reload failed" : "Quickshell reloaded"
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
}
|
||||||
|
|
||||||
|
Text {
|
||||||
|
renderType: Text.NativeRendering
|
||||||
|
font.family: "JetBrains Mono NF"
|
||||||
|
font.pointSize: 11
|
||||||
|
text: root.errorString
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
// When visible is false, it also takes up no space.
|
||||||
|
visible: root.errorString != ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// A progress bar on the bottom of the screen, showing how long until the
|
||||||
|
// popup is removed.
|
||||||
|
Rectangle {
|
||||||
|
z: 2
|
||||||
|
id: bar
|
||||||
|
color: failed ? "#ff93000A" : "#ff0C1F13"
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: 10
|
||||||
|
height: 5
|
||||||
|
radius: 9999
|
||||||
|
|
||||||
|
PropertyAnimation {
|
||||||
|
id: anim
|
||||||
|
target: bar
|
||||||
|
property: "width"
|
||||||
|
from: rect.width - bar.anchors.margins * 2
|
||||||
|
to: 0
|
||||||
|
duration: failed ? 10000 : 1000
|
||||||
|
onFinished: popupLoader.active = false
|
||||||
|
|
||||||
|
// Pause the animation when the mouse is hovering over the popup,
|
||||||
|
// so it stays onscreen while reading. This updates reactively
|
||||||
|
// when the mouse moves on and off the popup.
|
||||||
|
paused: mouseArea.containsMouse
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Its bg
|
||||||
|
Rectangle {
|
||||||
|
z: 1
|
||||||
|
id: bar_bg
|
||||||
|
color: failed ? "#30af1b25" : "#4027643e"
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.margins: 10
|
||||||
|
height: 5
|
||||||
|
radius: 9999
|
||||||
|
width: rect.width - bar.anchors.margins * 2
|
||||||
|
}
|
||||||
|
|
||||||
|
// We could set `running: true` inside the animation, but the width of the
|
||||||
|
// rectangle might not be calculated yet, due to the layout.
|
||||||
|
// In the `Component.onCompleted` event handler, all of the component's
|
||||||
|
// properties and children have been initialized.
|
||||||
|
Component.onCompleted: anim.start()
|
||||||
|
}
|
||||||
|
|
||||||
|
DropShadow {
|
||||||
|
id: shadow
|
||||||
|
anchors.fill: rect
|
||||||
|
horizontalOffset: 0
|
||||||
|
verticalOffset: 2
|
||||||
|
radius: 6
|
||||||
|
samples: radius * 2 + 1 // Ideally should be 2 * radius + 1, see qt docs
|
||||||
|
color: "#44000000"
|
||||||
|
source: rect
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
pragma Singleton
|
||||||
|
|
||||||
|
import QtQuick
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
|
import qs.modules.common
|
||||||
|
|
||||||
|
Singleton {
|
||||||
|
id: root
|
||||||
|
|
||||||
|
property var translations: ({})
|
||||||
|
property string currentLanguage: "en_US"
|
||||||
|
property var availableLanguages: ["en_US"]
|
||||||
|
property bool isScanning: false
|
||||||
|
property bool isLoading: false
|
||||||
|
|
||||||
|
Process {
|
||||||
|
id: scanLanguagesProcess
|
||||||
|
command: ["find", Qt.resolvedUrl(Directories.config + "/quickshell/translations/").toString().replace("file://", ""), "-name", "*.json", "-exec", "basename", "{}", ".json", ";"]
|
||||||
|
running: false
|
||||||
|
|
||||||
|
stdout: SplitParser {
|
||||||
|
onRead: data => {
|
||||||
|
if (data.trim().length === 0) return
|
||||||
|
|
||||||
|
var files = data.trim().split('\n')
|
||||||
|
|
||||||
|
for (var i = 0; i < files.length; i++) {
|
||||||
|
var lang = files[i].trim()
|
||||||
|
if (lang.length > 0 && root.availableLanguages.indexOf(lang) === -1) {
|
||||||
|
root.availableLanguages.push(lang)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onExited: (exitCode, exitStatus) => {
|
||||||
|
root.isScanning = false
|
||||||
|
if (exitCode !== 0) {
|
||||||
|
root.availableLanguages = ["en_US"]
|
||||||
|
}
|
||||||
|
root.loadTranslations()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FileView {
|
||||||
|
id: translationFileView
|
||||||
|
onLoaded: {
|
||||||
|
var textContent = ""
|
||||||
|
try {
|
||||||
|
textContent = text()
|
||||||
|
} catch (e) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (textContent.length === 0) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
var jsonData = JSON.parse(textContent)
|
||||||
|
root.translations = jsonData
|
||||||
|
root.isLoading = false
|
||||||
|
} catch (e) {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onLoadFailed: (error) => {
|
||||||
|
root.translations = {}
|
||||||
|
root.isLoading = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function detectSystemLanguage() {
|
||||||
|
var locale = Qt.locale().name
|
||||||
|
return locale
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLanguageCode() {
|
||||||
|
var configLang = "auto"
|
||||||
|
try {
|
||||||
|
configLang = ConfigOptions.language.ui
|
||||||
|
} catch (e) {
|
||||||
|
configLang = "auto"
|
||||||
|
}
|
||||||
|
|
||||||
|
if (configLang === "auto") {
|
||||||
|
return detectSystemLanguage()
|
||||||
|
} else {
|
||||||
|
if (root.availableLanguages.indexOf(configLang) !== -1) {
|
||||||
|
return configLang
|
||||||
|
} else {
|
||||||
|
return detectSystemLanguage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadTranslations() {
|
||||||
|
if (root.isScanning) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var targetLang = getLanguageCode()
|
||||||
|
root.currentLanguage = targetLang
|
||||||
|
|
||||||
|
// Use empty translations for English (default language)
|
||||||
|
if (targetLang === "en_US" || targetLang === "en") {
|
||||||
|
root.translations = {}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if target language is available
|
||||||
|
if (root.availableLanguages.indexOf(targetLang) === -1) {
|
||||||
|
root.currentLanguage = "en_US"
|
||||||
|
root.translations = {}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load translation file
|
||||||
|
root.isLoading = true
|
||||||
|
var translationsPath = Qt.resolvedUrl(Directories.config + "/quickshell/translations/" + targetLang + ".json")
|
||||||
|
translationFileView.path = translationsPath
|
||||||
|
}
|
||||||
|
|
||||||
|
function tr(text) {
|
||||||
|
if (!text) {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
var key = text.toString()
|
||||||
|
|
||||||
|
if (root.isLoading) {
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
|
||||||
|
if (root.currentLanguage === "en_US" || root.currentLanguage === "en" || !root.translations) {
|
||||||
|
return key
|
||||||
|
}
|
||||||
|
|
||||||
|
if (root.translations.hasOwnProperty(key)) {
|
||||||
|
var translation = root.translations[key]
|
||||||
|
if (translation && translation.toString().trim().length > 0) {
|
||||||
|
var str = translation.toString().trim()
|
||||||
|
if (str.endsWith("/*keep*/")) {
|
||||||
|
return str.substring(0, str.length - 8).trim()
|
||||||
|
} else {
|
||||||
|
return str
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return translation.toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return key // Fallback to key name
|
||||||
|
}
|
||||||
|
|
||||||
|
function reloadTranslations() {
|
||||||
|
root.scanLanguages()
|
||||||
|
}
|
||||||
|
|
||||||
|
function scanLanguages() {
|
||||||
|
var translationsDir = Qt.resolvedUrl(Directories.config + "/quickshell/translations/").toString().replace("file://", "")
|
||||||
|
root.isScanning = true
|
||||||
|
scanLanguagesProcess.running = true
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
root.scanLanguages()
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
openai-symbolic.svg
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
version="1.0"
|
||||||
|
width="20"
|
||||||
|
height="19.999941"
|
||||||
|
id="svg2424"
|
||||||
|
sodipodi:docname="archlinux-logo-black-scalable.f931920e6cdb.svg"
|
||||||
|
viewBox="0 0 166.18749 166.187"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="16.650008"
|
||||||
|
inkscape:cx="13.093087"
|
||||||
|
inkscape:cy="16.366359"
|
||||||
|
inkscape:window-width="1340"
|
||||||
|
inkscape:window-height="768"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="g2424" />
|
||||||
|
<defs
|
||||||
|
id="defs2426">
|
||||||
|
<linearGradient
|
||||||
|
x1="112.49854"
|
||||||
|
y1="6.1372099"
|
||||||
|
x2="112.49853"
|
||||||
|
y2="129.3468"
|
||||||
|
id="path1082_2_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(287,-83)">
|
||||||
|
<stop
|
||||||
|
id="stop193"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop195"
|
||||||
|
style="stop-color:#ffffff;stop-opacity:0.27450982"
|
||||||
|
offset="1" />
|
||||||
|
<midPointStop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#FFFFFF"
|
||||||
|
id="midPointStop197" />
|
||||||
|
<midPointStop
|
||||||
|
offset="0.5"
|
||||||
|
style="stop-color:#FFFFFF"
|
||||||
|
id="midPointStop199" />
|
||||||
|
<midPointStop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#000000"
|
||||||
|
id="midPointStop201" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
x1="541.33502"
|
||||||
|
y1="104.50665"
|
||||||
|
x2="606.91248"
|
||||||
|
y2="303.14029"
|
||||||
|
id="linearGradient2544"
|
||||||
|
xlink:href="#path1082_2_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(-0.3937741,0,0,0.393752,357.51969,122.00151)" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3388">
|
||||||
|
<stop
|
||||||
|
id="stop3390"
|
||||||
|
style="stop-color:#000000;stop-opacity:0"
|
||||||
|
offset="0" />
|
||||||
|
<stop
|
||||||
|
id="stop3392"
|
||||||
|
style="stop-color:#000000;stop-opacity:0.37113401"
|
||||||
|
offset="1" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
x1="490.72305"
|
||||||
|
y1="237.72447"
|
||||||
|
x2="490.72305"
|
||||||
|
y2="183.9644"
|
||||||
|
id="linearGradient4416"
|
||||||
|
xlink:href="#linearGradient3388"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0.749107,0,0,0.749107,-35.459862,91.44108)" />
|
||||||
|
</defs>
|
||||||
|
<g
|
||||||
|
transform="translate(-57.527313,-146.42741)"
|
||||||
|
id="layer1">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.8746356,0,0,0.8746356,14.730518,23.408954)"
|
||||||
|
id="g2424"
|
||||||
|
style="fill:#000000">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.6378586,0,0,0.6378586,36.486487,2.17139)"
|
||||||
|
id="g2809"
|
||||||
|
style="fill:#000000;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="m 143.91698,140.65081 c -8.45709,20.73453 -13.55799,34.29734 -22.97385,54.41552 5.7731,6.11948 12.85931,13.24593 24.36729,21.29458 -12.37221,-5.09109 -20.81157,-10.20242 -27.11844,-15.50646 -12.0505,25.14523 -30.930177,60.96349 -69.243121,129.80406 30.112687,-17.38458 53.455511,-28.10236 75.209891,-32.19198 -0.93414,-4.01773 -1.46524,-8.36369 -1.42916,-12.89823 l 0.0357,-0.96469 c 0.47781,-19.2924 10.51371,-34.12825 22.40218,-33.12093 11.88848,1.00732 21.12927,17.4729 20.65146,36.76531 -0.0899,3.63022 -0.49934,7.12245 -1.21479,10.36146 21.51819,4.20934 44.61141,14.89968 74.31666,32.04906 -5.85729,-10.78369 -11.08544,-20.5044 -16.07812,-29.7624 -7.86429,-6.09535 -16.06714,-14.02847 -32.79938,-22.61656 11.50078,2.98839 19.73519,6.43619 26.15375,10.29 -50.76203,-94.51003 -54.87267,-107.06846 -72.2801,-147.91874 z"
|
||||||
|
id="path2518"
|
||||||
|
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.14333" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,318 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
id="SVGRoot"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 17.921003 17.921002"
|
||||||
|
sodipodi:docname="cachyos-symbolic.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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview30"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="32"
|
||||||
|
inkscape:cx="10.671875"
|
||||||
|
inkscape:cy="11.234375"
|
||||||
|
inkscape:window-width="1687"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="SVGRoot" />
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient939"
|
||||||
|
x1="237.19"
|
||||||
|
x2="237.07001"
|
||||||
|
y1="296.20001"
|
||||||
|
y2="304.07999"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-8.5042241,-4.351186)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient937">
|
||||||
|
<stop
|
||||||
|
stop-color="#001313"
|
||||||
|
offset="0"
|
||||||
|
id="stop1" />
|
||||||
|
<stop
|
||||||
|
stop-color="#001313"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="1"
|
||||||
|
id="stop2" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient5185"
|
||||||
|
x1="994.81"
|
||||||
|
x2="982.34003"
|
||||||
|
y1="1533.3"
|
||||||
|
y2="1556.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient4353">
|
||||||
|
<stop
|
||||||
|
stop-color="#020202"
|
||||||
|
offset="0"
|
||||||
|
id="stop3" />
|
||||||
|
<stop
|
||||||
|
stop-color="#020202"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="1"
|
||||||
|
id="stop4" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient9102"
|
||||||
|
x1="1022.5"
|
||||||
|
x2="1018.6"
|
||||||
|
y1="1582.4"
|
||||||
|
y2="1575.6"
|
||||||
|
gradientTransform="matrix(0.086381,0,0,0.081808,-79.103924,-124.69099)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient11890"
|
||||||
|
x1="940.42999"
|
||||||
|
x2="930.59003"
|
||||||
|
y1="1612.5"
|
||||||
|
y2="1594.5"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient11670"
|
||||||
|
x1="965.59998"
|
||||||
|
x2="951.65997"
|
||||||
|
y1="1571.4"
|
||||||
|
y2="1571.3"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13770"
|
||||||
|
x1="946.22998"
|
||||||
|
x2="961.37"
|
||||||
|
y1="1655.9"
|
||||||
|
y2="1655.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient2816"
|
||||||
|
x1="366.14999"
|
||||||
|
x2="350.92001"
|
||||||
|
y1="427.32001"
|
||||||
|
y2="419.64001"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient12421"
|
||||||
|
x1="936.34003"
|
||||||
|
x2="933.38"
|
||||||
|
y1="1628.8"
|
||||||
|
y2="1623"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13391"
|
||||||
|
x1="950.33002"
|
||||||
|
x2="941.96997"
|
||||||
|
y1="1618.6"
|
||||||
|
y2="1645.8"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-76.242924,-126.39098)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient13599"
|
||||||
|
x1="1008.2"
|
||||||
|
x2="1015.7"
|
||||||
|
y1="1681.3"
|
||||||
|
y2="1668.4"
|
||||||
|
gradientTransform="matrix(0.084141,0,0,0.083989,-77.884838,-124.43841)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient4353" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18175"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.34992,0,0,0.34992,-282.87,-491.67)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18299">
|
||||||
|
<stop
|
||||||
|
stop-color="#008066"
|
||||||
|
stop-opacity="0"
|
||||||
|
offset="0"
|
||||||
|
id="stop5" />
|
||||||
|
<stop
|
||||||
|
stop-color="#0fc"
|
||||||
|
offset="1"
|
||||||
|
id="stop6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18632"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.26565,0,0,0.26565,-211.15,-375.49)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient18659"
|
||||||
|
x1="1148.3"
|
||||||
|
x2="1145.4"
|
||||||
|
y1="1585.5"
|
||||||
|
y2="1630"
|
||||||
|
gradientTransform="matrix(0.13679,0,0,0.13679,-53.624,-195.03)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient18299" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3254"
|
||||||
|
x1="348.04999"
|
||||||
|
x2="361.20999"
|
||||||
|
y1="194.78"
|
||||||
|
y2="187.24001"
|
||||||
|
gradientTransform="matrix(0.04476,0,0,0.044679,-10.832924,-4.155886)"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
xlink:href="#linearGradient937" />
|
||||||
|
</defs>
|
||||||
|
<circle
|
||||||
|
cx="87.449997"
|
||||||
|
cy="87.449997"
|
||||||
|
r="87.449997"
|
||||||
|
opacity="0"
|
||||||
|
stroke-width="0.27971"
|
||||||
|
id="circle6" />
|
||||||
|
<path
|
||||||
|
d="m 4.0610759,2.168314 6.5887001,3.6879 2.1127,-3.6528 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 6.1499759,12.423014 -1.9125,3.7456 h 8.5747001 l 2.1664,-3.7456 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#7a7a7a;fill-opacity:0.68506807" />
|
||||||
|
<path
|
||||||
|
d="m 4.0610759,2.168314 6.5887001,3.6879 H 6.1237759 l -1.8859,3.2605 1.9121,3.306 -1.9125,3.7456 -4.13689997,-7.1525 3.96049997,-6.8475"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#7a7a7a;fill-opacity:0.69262218" />
|
||||||
|
<path
|
||||||
|
d="m 6.0909759,5.821714 6.7111001,-3.7832 -2.169,3.5579 z"
|
||||||
|
fill="url(#linearGradient9102)"
|
||||||
|
id="path12"
|
||||||
|
style="fill:url(#linearGradient9102)" />
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 6.6388001,-3.6528 -2.1127,3.6528 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path13"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 0.10057593,9.015814 6.02309997,-3.1596 -1.8859,3.2605 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.17673,6.9484 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path16"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 4.2378759,9.116714 -3.1586,1.5811 3.1583,5.4705 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 1.0792259,10.698014 5.0708,1.7248 -1.9121,-3.306 z"
|
||||||
|
fill="#00aa88"
|
||||||
|
id="path23"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.75949407,-0.14715599)"
|
||||||
|
id="g26"
|
||||||
|
style="fill:#1a1a1a">
|
||||||
|
<circle
|
||||||
|
cx="117.95"
|
||||||
|
cy="75.441002"
|
||||||
|
r="9.6893997"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle25"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<circle
|
||||||
|
cx="118.08"
|
||||||
|
cy="75.341003"
|
||||||
|
r="9.6893997"
|
||||||
|
fill="url(#linearGradient18175)"
|
||||||
|
id="circle26"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.11248407,-0.47061599)"
|
||||||
|
id="g28"
|
||||||
|
style="fill:#1a1a1a">
|
||||||
|
<circle
|
||||||
|
cx="93.138"
|
||||||
|
cy="55.044998"
|
||||||
|
r="7.3558998"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle27"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<circle
|
||||||
|
cx="93.238998"
|
||||||
|
cy="54.969002"
|
||||||
|
r="7.3558998"
|
||||||
|
fill="url(#linearGradient18632)"
|
||||||
|
id="circle28"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.14699,0,0,0.14672,-0.08243407,-0.04714599)"
|
||||||
|
id="g30"
|
||||||
|
style="fill:#000000">
|
||||||
|
<circle
|
||||||
|
cx="103.06"
|
||||||
|
cy="26.657"
|
||||||
|
r="3.7876999"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="circle29"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<circle
|
||||||
|
cx="103.11"
|
||||||
|
cy="26.618"
|
||||||
|
r="3.7876999"
|
||||||
|
fill="url(#linearGradient18659)"
|
||||||
|
id="circle30"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 6.1236759,5.856214 -2.0626,-3.6879 0.52544,-0.0074 1.9387,3.4465 z"
|
||||||
|
fill="url(#linearGradient3254)"
|
||||||
|
id="path30"
|
||||||
|
style="fill:url(#linearGradient3254)" />
|
||||||
|
<path
|
||||||
|
d="M 12.808567,16.168211 6.1524738,12.428132 4.2457352,16.165572 Z"
|
||||||
|
fill="#00ccff"
|
||||||
|
id="path17"
|
||||||
|
style="fill:#1a1a1a;fill-opacity:1"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_26_18)">
|
||||||
|
<path d="M3 7.06015V4.74436C4.12 4.69624 4.90412 4.62466 5.35237 4.52962C6.06664 4.37804 6.64769 4.07549 7.09553 3.62195C7.40205 3.31158 7.63448 2.89754 7.7928 2.37985C7.8839 2.06947 7.92946 1.8387 7.92946 1.68752H10.9001V19H7.25588V7.06015H3ZM12.4228 5.65444V4.52962L15.0783 1H16.1879V4.64211H17V5.65444H16.1879V7.05594H15.0084V5.65444H12.4228ZM14.9823 2.53985L13.4031 4.64511H15.0102V2.53985H14.9823Z" fill="black"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_26_18">
|
||||||
|
<rect width="20" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 660 B |
@@ -0,0 +1,65 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 380.95238 380.95238"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="crosshair-symbolic.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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="35"
|
||||||
|
inkscape:cx="10.371429"
|
||||||
|
inkscape:cy="7.9571429"
|
||||||
|
inkscape:window-width="1430"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">ionicons-v5_logos</title>
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>ionicons-v5_logos</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:23.0377"
|
||||||
|
id="rect1"
|
||||||
|
width="380.95239"
|
||||||
|
height="57.142857"
|
||||||
|
x="-3.5527137e-15"
|
||||||
|
y="161.90475" />
|
||||||
|
<rect
|
||||||
|
style="fill:#000000;stroke-width:23.0451;stroke-dasharray:none"
|
||||||
|
id="rect1-5"
|
||||||
|
width="57.142857"
|
||||||
|
height="380.95239"
|
||||||
|
x="161.90475"
|
||||||
|
y="0" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,91 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="-30.5 0 317.00242 317.00243"
|
||||||
|
version="1.1"
|
||||||
|
preserveAspectRatio="xMidYMid"
|
||||||
|
id="svg12"
|
||||||
|
sodipodi:docname="debian-symbolic.svg"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs12" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview12"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="17.5"
|
||||||
|
inkscape:cx="13.742857"
|
||||||
|
inkscape:cy="12.628571"
|
||||||
|
inkscape:window-width="1295"
|
||||||
|
inkscape:window-height="867"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg12" />
|
||||||
|
<g
|
||||||
|
fill="#A80030"
|
||||||
|
id="g12"
|
||||||
|
style="fill:#1a1a1a"
|
||||||
|
transform="translate(0.05835351,0.0538775)">
|
||||||
|
<path
|
||||||
|
d="m 152.79662,167.42537 c -5.25095,0.0731 0.9935,2.70583 7.84865,3.76069 1.8935,-1.47856 3.61167,-2.97466 5.14283,-4.42984 -4.26913,1.04609 -8.61424,1.06947 -12.99148,0.66915"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 180.9799,160.40073 c 3.12661,-4.31588 5.40581,-9.04086 6.20938,-13.92654 -0.70129,3.4831 -2.59187,6.4899 -4.3714,9.66326 -9.81521,6.18016 -0.92337,-3.67011 -0.006,-7.41328 -10.55448,13.2837 -1.44934,7.96554 -1.83213,11.67656"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 191.38244,133.33075 c 0.63409,-9.45579 -1.86135,-6.46652 -2.69999,-2.85777 0.9789,0.50844 1.75324,6.66522 2.69999,2.85777"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 132.88569,4.0879643 c 2.80225,0.5025946 6.05451,0.8883068 5.59867,1.5574589 3.06524,-0.6720742 3.76069,-1.2915513 -5.59867,-1.5574589"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 138.48436,5.6454232 -1.98116,0.4090887 1.84382,-0.1636355 0.13734,-0.2454532"
|
||||||
|
id="path5"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 225.86569,136.91612 c 0.31266,8.49151 -2.48375,12.61162 -5.00549,19.90509 l -4.53796,2.26752 c -3.71394,7.21165 0.35941,4.57887 -2.29967,10.31487 -5.79737,5.15452 -17.59373,16.12979 -21.36903,17.13205 -2.75551,-0.0614 1.86719,-3.25225 2.47206,-4.50289 -7.76099,5.32984 -6.22691,8.0006 -18.09633,11.23824 l -0.34772,-0.77142 c -29.27322,13.77168 -69.93663,-13.52038 -69.40189,-50.75913 -0.31266,2.36394 -0.88831,1.77369 -1.537,2.7292 -1.51071,-19.15996 8.848,-38.40465 26.31901,-46.262078 17.08821,-8.459369 37.12187,-4.987959 49.36238,6.419768 -6.72366,-8.807092 -20.1067,-18.14308 -35.96765,-17.269383 -15.53661,0.245453 -30.07094,10.1191 -34.92156,20.837223 -7.9597,5.01133 -8.88307,19.31775 -12.351558,21.93592 -4.666532,34.29623 8.777878,49.11401 31.520278,66.54411 3.57953,2.41362 1.00811,2.77888 1.49318,4.61685 -7.55646,-3.53861 -14.4759,-8.88014 -20.16515,-15.41972 3.01849,4.41816 6.27659,8.71359 10.48728,12.08857 -7.12399,-2.41362 -16.64115,-17.26354 -19.42003,-17.8684 12.28143,21.98851 49.827,38.56245 69.48663,30.33976 -9.09638,0.33604 -20.65313,0.18702 -30.8745,-3.59121 -4.29251,-2.20908 -10.13079,-6.78503 -9.08761,-7.64119 26.83037,10.02267 54.54612,7.59151 77.7619,-11.0191 5.90549,-4.59932 12.3574,-12.4246 14.22168,-12.53272 -2.8081,4.22238 0.47921,2.03083 -1.67727,5.75938 5.88504,-9.49085 -2.5568,-3.86296 6.08374,-16.38984 l 3.19089,4.39478 c -1.18636,-7.87788 9.78306,-17.44471 8.66975,-29.90438 2.5159,-3.81037 2.80811,4.09965 0.13734,12.86584 3.70517,-9.72462 0.97597,-11.28793 1.92856,-19.31191 1.02857,2.69707 2.37856,5.56361 3.07109,8.4097 -2.41362,-9.39735 2.47791,-15.82589 3.68764,-21.28722 -1.1922,-0.52889 -3.72563,4.15517 -4.3042,-6.94574 0.0847,-4.8214 1.34123,-2.52759 1.82629,-3.71394 -0.94675,-0.54351 -3.4305,-4.23991 -4.9412,-11.328836 1.09577,-1.665575 2.9279,4.318806 4.41815,4.564256 -0.95843,-5.636653 -2.6094,-9.935006 -2.67661,-14.259657 -4.35387,-9.0993 -1.53992,1.212656 -5.07269,-3.906796 -4.63439,-14.45544 3.84543,-3.354527 4.41815,-9.923322 7.02464,10.177541 11.03079,25.950835 12.86876,32.484565 -1.40259,-7.965545 -3.67011,-15.68271 -6.4373,-23.148578 2.13311,0.897073 -3.43634,-16.389844 2.77304,-4.941206 -6.63308,-24.40506 -28.38783,-47.208829 -48.40103,-57.909419 2.44869,2.241221 5.54023,5.055166 4.42984,5.496398 -9.95254,-5.925941 -8.20223,-6.387627 -9.62819,-8.891834 -8.10872,-3.299008 -8.64054,0.265908 -14.01129,0.0058 -15.28238,-8.105755 -18.22782,-7.243747 -32.2917,-12.32229 l 0.63993,2.9892691 c -10.12494,-3.3720592 -11.79636,1.279863 -22.73948,0.011688 -0.66623,-0.520127 3.50647,-1.8818077 6.93989,-2.3814803 -9.7889,1.2915513 -9.33014,-1.9285607 -18.90866,0.3564916 2.36103,-1.656809 4.85647,-2.7525822 7.37529,-4.1610159 -7.98308,0.4850622 -19.05769,4.6460781 -15.63888,0.8620082 C 96.316085,8.9298206 73.190888,17.085295 60.214012,29.25276 L 59.804924,26.526476 C 53.858528,33.665073 33.874548,47.845838 32.282025,57.091242 l -1.589602,0.371102 C 27.59796,62.7016 25.596347,68.63923 23.141816,74.030433 19.09476,80.926499 17.21003,76.683665 17.785676,77.764828 9.8259803,93.903375 5.8724309,107.46466 2.4565407,118.58603 4.8906182,122.224 2.514982,140.48688 3.4354314,155.10304 -0.56194899,227.28965 54.098137,297.37822 113.84553,313.5606 c 8.75742,3.13245 21.78105,3.01264 32.85859,3.33407 -13.07039,-3.73732 -14.75934,-1.98116 -27.49076,-6.41977 -9.18404,-4.32465 -11.19734,-9.26293 -17.70185,-14.90836 l 2.57434,4.54965 c -12.757724,-4.51458 -7.419118,-5.58698 -17.798281,-8.8743 l 2.74966,-3.59121 c -4.134717,-0.31266 -10.951887,-6.96912 -12.816162,-10.65384 l -4.523352,0.17825 C 66.26268,270.46895 63.366917,265.63586 63.577306,261.8927 l -1.461031,2.60356 c -1.656809,-2.84317 -19.995669,-25.15019 -10.481436,-19.95768 -1.767847,-1.6159 -4.117185,-2.62986 -6.665222,-7.2584 l 1.937326,-2.21493 c -4.57887,-5.89087 -8.427226,-13.44148 -8.135019,-15.95737 2.442843,3.299 4.137639,3.91556 5.814902,4.47952 -11.562598,-28.68881 -12.211295,-1.58084 -20.968714,-29.20309 l 1.852587,-0.14902 c -1.420122,-2.13895 -2.28213,-4.46199 -3.424657,-6.7412 l 0.80649,-8.03567 c -8.324954,-9.62527 -2.328884,-40.9264 -1.127916,-58.09351 0.832787,-6.9808 6.948662,-14.41161 11.600585,-26.064789 l -2.8344,-0.487985 c 5.417502,-9.449947 30.932945,-37.951737 42.749763,-36.484862 5.724319,-7.191194 -1.136683,-0.0263 -2.255832,-1.837977 12.573631,-13.011941 16.527181,-9.192806 25.012848,-11.533378 9.1519,-5.432112 -7.854502,2.118495 -3.51524,-2.071741 15.82004,-4.041212 11.21195,-9.186962 31.85047,-11.23825 2.17694,1.238955 -5.05224,1.913951 -6.86684,3.521085 13.18142,-6.448991 41.71243,-4.982116 60.24414,3.579525 21.50346,10.04897 45.66306,39.75465 46.61565,67.704172 l 1.08409,0.2922 c -0.54935,11.10968 1.70064,23.95799 -2.19739,35.76019 l 2.65323,-5.58698"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 95.483297,174.6341 -0.736359,3.68179 c 3.450955,4.68699 6.188932,9.76553 10.595392,13.4298 -3.17043,-6.18893 -5.525615,-8.74573 -9.859033,-17.11159"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 103.64169,174.31267 c -1.82629,-2.01915 -2.90745,-4.4503 -4.117181,-6.87269 1.157141,4.25744 3.526931,7.91586 5.733081,11.63565 l -1.6159,-4.76296"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 248.00323,142.93557 -0.77142,1.9344 c -1.41428,10.04605 -4.46784,19.98691 -9.14898,29.20309 5.17205,-9.72462 8.51781,-20.36093 9.9204,-31.13749"
|
||||||
|
id="path9"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="M 133.92302,1.5691471 C 137.47332,0.26882968 142.65122,0.85616408 146.41775,0 141.50869,0.4120107 136.623,0.65746388 131.79868,1.279863 l 2.12434,0.2892841"
|
||||||
|
id="path10"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="m 9.2824769,67.847351 c 0.8181771,7.573984 -5.6980203,10.513578 1.4434981,5.519774 3.827901,-8.623004 -1.4960952,-2.38148 -1.4434981,-5.519774"
|
||||||
|
id="path11"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
<path
|
||||||
|
d="M 0.89031567,102.9004 C 2.5354364,97.85108 2.8334867,94.81798 3.46173,91.895919 -1.084998,97.707899 1.3695338,98.946854 0.89031567,102.9004"
|
||||||
|
id="path12"
|
||||||
|
style="fill:#1a1a1a" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.3 KiB |
@@ -0,0 +1,47 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
id="Layer_1"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 56.202442 56.202035"
|
||||||
|
sodipodi:docname="DeepSeek_logo.svg"
|
||||||
|
width="20.000145"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.4.1 (93de688d07, 2025-03-30)"
|
||||||
|
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="namedview2"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="15.999999"
|
||||||
|
inkscape:cx="6.5625003"
|
||||||
|
inkscape:cy="7.1875003"
|
||||||
|
inkscape:window-width="1181"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<!-- Generator: Adobe Illustrator 29.2.1, SVG Export Plug-In . SVG Version: 2.1.0 Build 116) -->
|
||||||
|
<defs
|
||||||
|
id="defs1">
|
||||||
|
<style
|
||||||
|
id="style1">
|
||||||
|
.st0 {
|
||||||
|
fill: #4d6bfe;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</defs>
|
||||||
|
<path
|
||||||
|
class="st0"
|
||||||
|
d="m 55.612804,10.892579 c -0.5953,-0.2917 -0.8517,0.2642 -1.1998,0.5466 -0.1191,0.0911 -0.2198,0.2095 -0.3206,0.3188 -0.8701,0.9292 -1.8867,1.5398 -3.2148,1.4668 -1.9417,-0.1094 -3.5995,0.5012 -5.065,1.9863 -0.3114,-1.8313 -1.3463,-2.9248 -2.9217,-3.6262 -0.8242,-0.3645 -1.6577,-0.729 -2.2348,-1.5217 -0.403,-0.5646998 -0.5129,-1.1933998 -0.7144,-1.8129998 -0.1283,-0.3735 -0.2565,-0.7563 -0.687,-0.8201 -0.4671,-0.0728 -0.6503,0.3188 -0.8335,0.647 -0.7327,1.3394 -1.0166,2.8153998 -0.9892,4.3095998 0.0641,3.3621 1.4838,6.0406 4.3047,7.9449 0.3206,0.2187 0.403,0.4372 0.3023,0.7563 -0.1924,0.656 -0.4214,1.2937 -0.6228,1.9497 -0.1283,0.4192 -0.3207,0.5103 -0.7694,0.3279 -1.5479,-0.6467 -2.8852,-1.6035 -4.0667,-2.7605 -2.0058,-1.9407 -3.8193,-4.0818 -6.0815,-5.7583 -0.5312,-0.3918 -1.0625,-0.7561 -1.6121,-1.1025 -2.3081,-2.2412 0.3023,-4.0817998 0.9068,-4.3002998 0.6319,-0.2278 0.2198,-1.0115 -1.8227,-1.0022 -2.0425,0.009 -3.9109,0.6924 -6.2922,1.6034998 -0.348,0.1367 -0.7145,0.2368 -1.09,0.3188 -2.1615,-0.4098998 -4.4055,-0.5011998 -6.7502,-0.2368 -4.4147001,0.4919 -7.9408001,2.5784 -10.5328001,6.1409 -3.11399997,4.2822 -3.84669997,9.1474 -2.94909997,14.2224 0.94339997,5.3481 3.67269997,9.7761 7.86759997,13.2385 4.3506001,3.5896 9.3606001,5.3481 15.0758001,5.011 3.4713,-0.2004 7.3364,-0.665 11.6961,-4.355 1.099,0.5467 2.2531,0.7652 4.1674,0.9292 1.4746,0.1367 2.8943,-0.0728 3.9933,-0.3005 1.7219,-0.3645 1.6029,-1.959 0.9801,-2.2505 -5.0466,-2.3506 -3.9385,-1.394 -4.9459,-2.1685 2.5645,-3.0339 6.4297,-6.1865 7.9409,-16.4001 0.119,-0.8108 0.0183,-1.3211 0,-1.9771 -0.0092,-0.4008 0.0824,-0.5556 0.5404,-0.6013 1.2639,-0.1458 2.4912,-0.4919 3.6178,-1.1115 3.2698,-1.7857 4.5886,-4.7195 4.9,-8.2364 0.0459,-0.5376 -0.0091,-1.0935 -0.577,-1.3757 z m -28.4938,31.6518 c -4.8909,-3.8447 -7.263,-5.1113 -8.2431,-5.0566 -0.9159,0.0547 -0.751,1.1025 -0.5496,1.7859 0.2107,0.6741 0.4855,1.1389 0.8701,1.731 0.2656,0.3918 0.4489,0.9748 -0.2655,1.4123 -1.5754,0.9749 -4.314,-0.3281 -4.4423,-0.3918 -3.1872,-1.877 -5.8525001,-4.3553 -7.7302001,-7.7444 -1.8135,-3.262 -2.8667,-6.7605 -3.0408,-10.4961 -0.0458,-0.9019 0.2198,-1.221 1.1174,-1.3848 1.1815,-0.2187 2.3997,-0.2644 3.5812,-0.0913 4.9918001,0.729 9.2415001,2.9612 12.8043001,6.4963 2.0333,2.0135 3.572,4.419 5.1566,6.7696 1.6852,2.4963 3.4987,4.8745 5.8068,6.8242 0.8151,0.6833 1.4654,1.2026 2.0882,1.5854 -1.8775,0.2095 -5.01,0.2552 -7.1532,-1.4397 z m 2.3447,-15.0788 c 0,-0.4009 0.3206,-0.7197 0.7237,-0.7197 0.0916,0 0.174,0.018 0.2473,0.0453 0.1008,0.0366 0.1924,0.0913 0.2656,0.1731 0.1283,0.1277 0.2015,0.3098 0.2015,0.5012 0,0.4009 -0.3205,0.7197 -0.7234,0.7197 -0.4029,0 -0.7145,-0.3188 -0.7145,-0.7197 z m 7.2815,3.7356 c -0.4671,0.1914 -0.9342,0.3552 -1.383,0.3735 -0.6961,0.0364 -1.4563,-0.2461 -1.8684,-0.5923 -0.6411,-0.5376 -1.0991,-0.8381 -1.2914,-1.7766 -0.0825,-0.4009 -0.0367,-1.0205 0.0367,-1.3757 0.1648,-0.7654 -0.0184,-1.2573 -0.5587,-1.7039 -0.4397,-0.3645 -0.9984,-0.4646 -1.6121,-0.4646 -0.229,0 -0.4395,-0.1003 -0.5953,-0.1823 -0.2565,-0.1275 -0.467,-0.4464 -0.2656,-0.8382 0.0641,-0.1274 0.3756,-0.4373 0.4489,-0.4919 0.8335,-0.4739 1.7952,-0.3189 2.6836,0.0364 0.8244,0.3371 1.4472,0.9567 2.3447,1.8313 0.9159,1.0568 1.0807,1.3486 1.6028,2.1411 0.4123,0.6196 0.7878,1.2573 1.0442,1.9863 0.1557,0.4556 -0.0458,0.8291 -0.5862,1.0569 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.0004;stroke-dasharray:none;fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.6 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="m 12 1 c 1.660156 0 3 1.339844 3 3 v 6 c 0 1.660156 -1.339844 3 -3 3 h -8 c -1.660156 0 -3 -1.339844 -3 -3 v -6 c 0 -1.660156 1.339844 -3 3 -3 z m 0 2 h -8 c -0.554688 0 -1 0.445312 -1 1 v 6 c 0 0.554688 0.445312 1 1 1 h 8 c 0.554688 0 1 -0.445312 1 -1 v -6 c 0 -0.554688 -0.445312 -1 -1 -1 z m -4 11 c -5 0 -5 1 -5 1 c 0 1 1 1 1 1 h 8 c 1 0 1 -1 1 -1 s 0 -1 -5 -1 z m 0 0" fill="#2e3436"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 538 B |
@@ -0,0 +1,96 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="20mm"
|
||||||
|
height="20mm"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)"
|
||||||
|
sodipodi:docname="EndeavourOS Logo.svg"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 48.231007 48.231007"
|
||||||
|
id="svg8"
|
||||||
|
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/">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="cvfa"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:current-layer="g3"
|
||||||
|
inkscape:cx="52.728754"
|
||||||
|
inkscape:cy="60.739468"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:window-width="1316"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:zoom="4.930896"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1" />
|
||||||
|
<title
|
||||||
|
id="title1">EndeavourOS Logo</title>
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<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>EndeavourOS Logo</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
transform="translate(-66.790568,-123.01834)"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
id="g8">
|
||||||
|
<g
|
||||||
|
transform="translate(76.2,-12.7)"
|
||||||
|
id="g7">
|
||||||
|
<g
|
||||||
|
transform="matrix(1.47,0,0,1.47,-519,105)"
|
||||||
|
id="g6">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.963,0,0,0.983,13.5,0.76)"
|
||||||
|
id="g5">
|
||||||
|
<g
|
||||||
|
transform="matrix(0.678,0,0,0.678,452,49.2)"
|
||||||
|
id="g3">
|
||||||
|
<g
|
||||||
|
id="g9"
|
||||||
|
transform="translate(6.8384014e-4,3.6851185)">
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c 4.57,6.45 23.8,31.4 10.7,36.6 -6.12,2.81 -34,-1.65 -33.6,-0.921 -2,3.28 -3.59,5.92 -3.59,5.92 0,0 21.5,0.967 38.1,-1.27 23.7,-3.18 -4.88,-33.5 -11.6,-40.3 z"
|
||||||
|
style="fill:#333333;fill-opacity:0.7;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c -1.52,0.209 -29.4,34.5 -29.4,34.5 0,0 2.01,0.57 6.58,1.23 1.48,-1.15 22.3,-36.2 22.9,-35.7 -0.0107,-0.0141 -0.028,-0.0193 -0.0522,-0.016 z"
|
||||||
|
style="fill:#333333;fill-opacity:0.7;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
d="m -127,-42.3 c -0.96,-0.156 -22.9,35.7 -22.9,35.7 0,0 19.9,2.1 28.1,1.96 23.1,-0.39 0.176,-30.6 -5.16,-37.7 -0.007,-0.007 -0.0151,-0.0108 -0.0248,-0.0124 z"
|
||||||
|
style="fill:#1a1a1a;stroke-width:0.585"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 448.00288 448.00288"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="Fa-Team-Fontawesome-Brands-FontAwesome-Brands-Fedora.svg"
|
||||||
|
width="19.999744"
|
||||||
|
height="19.999744"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="13.671875"
|
||||||
|
inkscape:cx="19.2"
|
||||||
|
inkscape:cy="17.664"
|
||||||
|
inkscape:window-width="1313"
|
||||||
|
inkscape:window-height="908"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<!--! Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
|
||||||
|
<path
|
||||||
|
d="M 0.0413,223.8 C 0.1219,100.2 100.3,0 224,0 347.7,0 448,100.3 448,224 448,347.7 347.8,447.9 224.1,448 H 50.93 C 22.84,448 0.0832,425.3 0.0416,397.2 H 0 V 223.8 Z M 342.6,160.7 c 0,-39.7 -35.6,-68.5 -73.2,-68.5 -34.9,0 -65.8,26.3 -70.1,59.9 -0.2,3.8 -0.4,5 -0.4,8.5 -0.1,21.1 0,42.8 -0.8,64.4 0.9,26.1 1,52.1 0,76.6 0,27.1 -19.4,45.5 -44.7,45.5 -25.3,0 -45.8,-20.2 -45.8,-45.5 0.5,-27.7 22.6,-45.3 48.5,-46.1 h 0.2 l 26.3,-0.2 V 218 l -26.3,0.2 c -47.1,-0.4 -84.58,36.5 -85.94,83.4 0,45.6 37.54,82.9 83.04,82.9 43,0 78.7,-33.6 82.6,-75.6 l 0.2,-53.5 32.6,-0.3 c 25.3,0.2 25,-37.8 -0.2,-37.3 l -32.4,0.3 c 0,-6.4 0.1,-12.8 0.1,-19.2 0.1,-12.7 0.1,-25.4 -0.1,-38.2 0.1,-16.5 15.8,-31.2 33.2,-31.2 17.5,0 35.9,8.7 35.9,31.2 0,3.2 -0.1,5.1 -0.3,6.3 -1.9,10.5 5.2,20.4 15.7,21.9 10.6,1.5 20.2,-6.1 21.2,-16.6 0.6,-4.2 0.7,-7.9 0.7,-11.6 z"
|
||||||
|
id="path1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,52 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
role="img"
|
||||||
|
viewBox="0 0 24.000009 24.000009"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="flatpak_logo_icon_248537.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="18.229167"
|
||||||
|
inkscape:cx="11.190857"
|
||||||
|
inkscape:cy="11.766857"
|
||||||
|
inkscape:window-width="1164"
|
||||||
|
inkscape:window-height="648"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">Flatpak</title>
|
||||||
|
<path
|
||||||
|
d="m 12.000004,7.3336774e-5 c -0.556,0 -1.110999,0.143999993226 -1.609999,0.431999993226 L 2.7870046,4.8220733 a 3.217,3.217 0 0 0 -1.61,2.788 v 8.7799997 c 0,1.151 0.612,2.212 1.61,2.788 l 7.6030004,4.39 a 3.217,3.217 0 0 0 3.219999,0 l 7.603,-4.39 a 3.217,3.217 0 0 0 1.61,-2.788 V 7.6100733 a 3.217,3.217 0 0 0 -1.61,-2.788 l -7.603,-4.38999997 a 3.218,3.218 0 0 0 -1.61,-0.431999993226 z m 0,2.357999963226 c 0.15,0 0.299,0.039 0.431,0.115 l 7.604,4.39 c 0.132,0.077 0.24,0.187 0.315,0.316 l -8.35,4.8209997 v 9.642 a 0.863,0.863 0 0 1 -0.431,-0.116 l -7.6039994,-4.39 a 0.866,0.866 0 0 1 -0.431,-0.746 V 7.6100733 c 0,-0.153 0.041,-0.302 0.116,-0.43 l 8.3499994,4.8199997 z"
|
||||||
|
id="path1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>Flatpak</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="98"
|
||||||
|
height="96"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="github-symbolic.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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="2.4081633"
|
||||||
|
inkscape:cx="32.597458"
|
||||||
|
inkscape:cy="46.716102"
|
||||||
|
inkscape:window-width="1339"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z"
|
||||||
|
fill="#fff"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1 @@
|
|||||||
|
spark-symbolic.svg
|
||||||
|
After Width: | Height: | Size: 16 KiB |
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 20.999999 20.999999"
|
||||||
|
version="1.1"
|
||||||
|
id="svg4"
|
||||||
|
sodipodi:docname="Microsoft_icon.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.4.1 (93de688d07, 2025-03-30)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview4"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="19.142857"
|
||||||
|
inkscape:cx="10.970149"
|
||||||
|
inkscape:cy="12.746269"
|
||||||
|
inkscape:window-width="1197"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg4" />
|
||||||
|
<path
|
||||||
|
fill="#f35325"
|
||||||
|
d="M 0,0 H 10 V 10 H 0 Z"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#81bc06"
|
||||||
|
d="M 11,0 H 21 V 10 H 11 Z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#05a6f0"
|
||||||
|
d="M 0,11 H 10 V 21 H 0 Z"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
fill="#ffba08"
|
||||||
|
d="M 11,11 H 21 V 21 H 11 Z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,95 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="19.856001"
|
||||||
|
height="19.856001"
|
||||||
|
viewBox="0 0 128.071 128.07101"
|
||||||
|
version="1.1"
|
||||||
|
xml:space="preserve"
|
||||||
|
style="clip-rule:evenodd;fill-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
||||||
|
id="svg10"
|
||||||
|
sodipodi:docname="mistral-symbolic.svg"
|
||||||
|
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
||||||
|
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"><defs
|
||||||
|
id="defs10" /><sodipodi:namedview
|
||||||
|
id="namedview10"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="14.139535"
|
||||||
|
inkscape:cx="13.366776"
|
||||||
|
inkscape:cy="8.1332237"
|
||||||
|
inkscape:window-width="1703"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="g10" /><g
|
||||||
|
id="g10"
|
||||||
|
transform="translate(2.927246e-6,18.722004)"><rect
|
||||||
|
x="18.292"
|
||||||
|
y="0"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#999999;fill-rule:nonzero"
|
||||||
|
id="rect1" /><rect
|
||||||
|
x="91.473"
|
||||||
|
y="0"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#999999;fill-rule:nonzero"
|
||||||
|
id="rect2" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="18.121"
|
||||||
|
width="36.585999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#666666;fill-rule:nonzero"
|
||||||
|
id="rect3" /><rect
|
||||||
|
x="73.181"
|
||||||
|
y="18.121"
|
||||||
|
width="36.585999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#666666;fill-rule:nonzero"
|
||||||
|
id="rect4" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="36.243"
|
||||||
|
width="91.475998"
|
||||||
|
height="18.122"
|
||||||
|
style="fill:#4d4d4d;fill-rule:nonzero"
|
||||||
|
id="rect5" /><rect
|
||||||
|
x="18.292"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect6" /><rect
|
||||||
|
x="54.882999"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect7" /><rect
|
||||||
|
x="91.473"
|
||||||
|
y="54.369999"
|
||||||
|
width="18.292999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#333333;fill-rule:nonzero"
|
||||||
|
id="rect8" /><rect
|
||||||
|
x="0"
|
||||||
|
y="72.503998"
|
||||||
|
width="54.889999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#1a1a1a;fill-rule:nonzero"
|
||||||
|
id="rect9" /><rect
|
||||||
|
x="73.181"
|
||||||
|
y="72.503998"
|
||||||
|
width="54.889999"
|
||||||
|
height="18.122999"
|
||||||
|
style="fill:#1a1a1a;fill-rule:nonzero"
|
||||||
|
id="rect10" /></g></svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,77 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
height="20"
|
||||||
|
width="19.999744"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
sodipodi:docname="nixos-symbolic.svg"
|
||||||
|
viewBox="0 0 512.00001 512.00656"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs8" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview8"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="27.34375"
|
||||||
|
inkscape:cx="8.832"
|
||||||
|
inkscape:cy="15.817143"
|
||||||
|
inkscape:window-width="1075"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg8" />
|
||||||
|
<g
|
||||||
|
fill-rule="evenodd"
|
||||||
|
transform="matrix(1.2756532,0,0,-1.2756532,9.0810546e-6,478.03773)"
|
||||||
|
id="g8"
|
||||||
|
style="fill:#000000">
|
||||||
|
<path
|
||||||
|
d="m 122.453,169.761 97.758,-169.34 -44.926,-0.422 -26.101,45.496 -26.286,-45.25 -22.32,0.008 -11.433,19.75 37.449,64.394 -26.582,46.258 z"
|
||||||
|
fill="#5277c3"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="M 157.738,239.515 59.961,70.183 37.133,108.882 63.484,154.229 11.152,154.366 0,173.702 l 11.391,19.777 74.488,-0.234 26.769,46.152 z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="M 165.238,104.155 360.77,104.143 338.672,65.026 286.223,65.171 312.27,19.784 301.102,0.456 278.277,0.429 241.238,65.058 187.883,65.167 Z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path3"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 279.043,178.35 -97.758,169.34 44.926,0.422 26.101,-45.496 26.286,45.254 22.32,-0.008 11.434,-19.754 -37.45,-64.39 26.582,-46.262 z"
|
||||||
|
fill="#7ebae4"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<g
|
||||||
|
fill="#5277c3"
|
||||||
|
id="g7"
|
||||||
|
style="fill:#000000">
|
||||||
|
<path
|
||||||
|
d="m 122.453,169.761 97.758,-169.34 -44.926,-0.422 -26.101,45.496 -26.286,-45.25 -22.32,0.008 -11.433,19.75 37.449,64.394 -26.582,46.258 z"
|
||||||
|
id="path5"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 236,244.386 -195.535,0.011 22.101,39.118 52.45,-0.149 -26.047,45.391 11.168,19.328 22.82,0.023 37.043,-64.625 53.352,-0.109 z"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#000000" />
|
||||||
|
<path
|
||||||
|
d="m 243.625,108.636 97.777,169.328 22.825,-38.696 -26.348,-45.351 52.332,-0.137 11.152,-19.336 -11.39,-19.777 -74.489,0.238 -26.769,-46.152 z"
|
||||||
|
id="path7"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,60 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="20"
|
||||||
|
height="20.000149"
|
||||||
|
viewBox="0 0 853.78869 853.79504"
|
||||||
|
fill="none"
|
||||||
|
version="1.1"
|
||||||
|
id="svg5"
|
||||||
|
sodipodi:docname="ollama-symbolic.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">
|
||||||
|
<defs
|
||||||
|
id="defs5" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview5"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:zoom="23.606557"
|
||||||
|
inkscape:cx="13.004861"
|
||||||
|
inkscape:cy="9.8065973"
|
||||||
|
inkscape:window-width="1374"
|
||||||
|
inkscape:window-height="848"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg5" />
|
||||||
|
<g
|
||||||
|
id="g5"
|
||||||
|
transform="translate(103.8943,1.5259608e-5)">
|
||||||
|
<path
|
||||||
|
d="M 140.629,0.23994313 C 132.66,1.5272641 123.097,5.6956941 116.354,10.845014 c -20.413,15.5091 -36.2287,48.4278 -42.9105,89.437996 -2.5133,15.509 -4.2297,37.026 -4.2297,53.455 0,19.371 2.2681,44.136 5.5171,61.239 0.7356,3.801 1.1034,7.173 0.7969,7.418 -0.2452,0.245 -3.249,2.697 -6.6206,5.394 -11.5245,9.195 -24.7043,23.356 -33.7768,36.291 -17.4095,24.704 -28.6888898,52.78 -33.4090698,83.185 -1.83902799,12.015 -2.32943599,36.29 -0.85821199,48.305 3.24895199,27.708 11.58588179,51.125 25.86898179,72.581 l 4.6589,6.927 -1.3486,2.268 c -9.563,16.061 -17.716,39.294 -21.5166498,61.607 -3.00375,17.655 -3.37156,22.375 -3.37156,46.037 0,23.847 0.30651,28.567 3.12635,45.057 3.3715598,19.739 10.2372598,40.642 17.8998598,54.558 2.5134,4.536 8.6435,13.976 9.3791,14.467 0.2452,0.122 -0.4904,2.39 -1.6551,5.026 -8.8274,19.31 -16.3674,44.995 -19.4938,66.635 -2.2068,14.834 -2.5133,19.616 -2.5133,35.248 0,19.922 1.1034,29.608 5.2719,45.485 l 0.613,2.329 H 44.019 70.3172 l -1.7165,-3.249 c -10.605,-19.616 -11.5858,-56.029 -2.452,-92.38 4.1685,-16.797 8.8887,-29.118 17.716,-46.099 l 5.2719,-10.298 v -6.314 c 0,-5.885 -0.1226,-6.559 -2.0229,-10.421 -1.4713,-2.943 -3.4329,-5.456 -6.9271,-8.889 -5.9462,-5.762 -10.2372,-11.831 -13.6701,-19.31 -15.08,-32.735 -18.0225,-81.346 -7.4174,-122.786 4.4137,-17.287 11.7085,-32.673 19.3711,-41.071 5.2106,-5.763 7.9078,-12.199 7.9078,-18.881 0,-6.927 -2.452,-12.628 -7.9691,-18.574 -15.8157,-16.919 -25.5625,-37.517 -29.0567,-61.485 -4.9654,-34.145 4.0459,-71.355 24.5204,-100.84 20.0455,-28.935 48.1824,-47.509 79.6304,-52.474 7.049,-1.165 20.229,-0.981 27.585,0.368 8.031,1.41 13.057,0.98 18.207,-1.472 6.375,-3.003 9.563,-6.743 13.302,-15.325 3.31,-7.662 5.885,-11.831 12.812,-20.474 8.337,-10.36 16.367,-17.41 29.24,-25.931 14.713,-9.624 31.448,-16.612 48.122,-19.984 6.068,-1.226 8.888,-1.41 20.229,-1.41 11.341,0 14.161,0.184 20.229,1.41 24.459,4.966 48.735,17.594 68.106,35.493 4.168,3.862 14.16,16.245 17.348,21.395 1.226,2.022 3.372,6.314 4.72,9.501 3.739,8.582 6.927,12.322 13.302,15.325 4.966,2.391 10.176,2.882 17.9,1.594 12.199,-2.084 21.578,-1.9 33.532,0.552 40.704,8.214 76.136,41.746 91.829,86.68 13.67,39.416 9.808,80.672 -10.544,112.18 -3.433,5.334 -6.866,9.625 -11.831,14.897 -10.728,11.463 -10.728,25.685 -0.061,37.455 17.532,19.187 28.505,66.389 25.194,108.012 -2.206,27.463 -9.256,52.045 -18.942,65.96 -1.716,2.452 -5.271,6.62 -7.969,9.195 -3.494,3.433 -5.455,5.946 -6.927,8.889 -1.9,3.862 -2.023,4.536 -2.023,10.421 v 6.314 l 5.272,10.298 c 8.828,16.981 13.548,29.302 17.716,46.099 9.012,35.861 8.215,71.538 -2.084,91.829 -0.858,1.716 -1.594,3.31 -1.594,3.494 0,0.184 11.709,0.306 26.053,0.306 h 25.992 l 0.674,-2.636 c 0.368,-1.409 0.981,-3.555 1.287,-4.781 0.675,-2.697 2.023,-10.666 3.127,-18.329 1.042,-7.724 1.042,-36.168 0,-44.75 -3.923,-31.141 -10.483,-55.845 -21.21,-79.201 -1.165,-2.636 -1.901,-4.904 -1.656,-5.026 0.307,-0.184 2.023,-2.636 3.862,-5.395 13.364,-20.229 21.578,-45.669 25.747,-79.262 1.103,-9.257 1.103,-49.041 0,-57.93 -2.943,-22.926 -6.498,-38.497 -12.383,-54.251 -2.452,-6.559 -8.95,-20.413 -11.708,-24.888 l -1.349,-2.268 4.659,-6.927 c 14.283,-21.456 22.62,-44.873 25.869,-72.581 1.471,-12.015 0.981,-36.29 -0.858,-48.305 -4.782,-30.467 -16,-58.42 -33.409,-83.185 -9.073,-12.935 -22.253,-27.096 -33.777,-36.291 -3.372,-2.697 -6.376,-5.149 -6.621,-5.394 -0.306,-0.245 0.062,-3.617 0.797,-7.418 7.418,-38.681 7.172,-86.924 -0.613,-124.624596 -6.743,-32.8573 -19.003,-58.9716 -34.819,-74.0516 C 523.209,4.2857941 510.336,-0.86349287 494.888,0.11732413 459.456,2.2015541 430.89,42.966714 419.61,107.21001 c -1.839,10.36 -3.432,22.498 -3.432,25.808 0,1.287 -0.246,2.329 -0.552,2.329 -0.307,0 -2.697,-1.226 -5.272,-2.758 -27.34,-16.184 -57.746,-24.827 -87.354,-24.827 -29.608,0 -60.014,8.643 -87.354,24.827 -2.575,1.532 -4.965,2.758 -5.272,2.758 -0.306,0 -0.552,-1.042 -0.552,-2.329 0,-3.433 -1.655,-15.938 -3.432,-25.808 C 216.152,49.525914 192.674,11.335414 161.472,1.7111341 157.181,0.42381313 144.982,-0.43436787 140.629,0.23994313 Z M 151.051,50.139014 c 8.827,6.9883 18.635,26.9724 24.275,49.3473 1.042,4.045696 2.145,8.704696 2.452,10.420696 0.245,1.656 0.919,5.395 1.471,8.276 2.391,12.996 3.494,27.034 3.617,44.137 l 0.061,16.858 -4.23,6.252 -4.229,6.314 h -9.87 c -11.524,0 -22.988,1.472 -33.961,4.414 -3.923,0.981 -7.724,1.962 -8.459,2.146 -1.165,0.245 -1.349,-0.123 -2.023,-5.15 -3.617,-27.279 -3.433,-57.5 0.552,-82.634 4.413,-28.014096 14.712,-53.392696 24.765,-60.871396 2.391,-1.7778 2.82,-1.7165 5.579,0.4904 z m 349.538,-0.4292 c 6.069,4.475 12.751,16.3674 17.716,31.57 9.992,30.405196 12.812,72.151196 7.54,111.874196 -0.674,5.027 -0.858,5.395 -2.023,5.15 -0.735,-0.184 -4.536,-1.165 -8.459,-2.146 -10.973,-2.942 -22.437,-4.414 -33.961,-4.414 h -9.87 l -4.229,-6.314 -4.23,-6.252 0.061,-16.858 c 0.123,-23.785 2.33,-42.359 7.601,-63.017596 5.579,-22.191 15.448,-42.1751 24.214,-49.1634 2.759,-2.2069 3.188,-2.2682 5.64,-0.4292 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path1" />
|
||||||
|
<path
|
||||||
|
d="m 313.498,358.23701 c -13.303,1.288 -16.919,1.778 -23.295,3.066 -10.36,2.145 -24.214,6.927 -33.838,11.647 -33.47,16.367 -56.519,43.646 -63.569,75.216 -1.41,6.253 -1.594,8.337 -1.594,18.881 0,10.421 0.184,12.689 1.533,18.635 9.379,41.256 47.385,71.723 96.549,77.301 10.666,1.165 56.765,1.165 67.431,0 39.478,-4.475 73.439,-25.869 88.703,-55.907 4.045,-8.03 6.007,-13.241 7.846,-21.394 1.349,-5.946 1.533,-8.214 1.533,-18.635 0,-10.544 -0.184,-12.628 -1.594,-18.881 -10.238,-45.853 -54.742,-81.959 -109.3,-88.825 -7.111,-0.858 -25.746,-1.594 -30.405,-1.104 z m 22.926,33.348 c 18.207,1.962 36.536,8.46 51.248,18.268 7.908,5.272 19.065,16.306 23.846,23.54 5.885,8.949 9.256,18.083 10.789,29.179 0.674,5.088 0.307,8.95 -1.533,17.164 -2.881,12.26 -11.831,25.072 -23.907,34.022 -5.64,4.107 -17.348,10.054 -24.52,12.383 -13.609,4.352 -22.498,5.149 -54.252,4.904 -20.719,-0.184 -24.398,-0.368 -30.344,-1.471 -20.29,-3.801 -36.351,-11.893 -47.998,-24.214 -9.441,-9.931 -13.732,-19.003 -16.061,-33.654 -1.042,-6.805 0.919,-18.084 4.904,-27.586 4.843,-11.586 17.348,-25.991 29.731,-34.267 14.344,-9.563 33.225,-16.367 50.573,-18.206 6.682,-0.736 20.842,-0.736 27.524,-0.062 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path2" />
|
||||||
|
<path
|
||||||
|
d="m 299.584,436.33601 c -4.659,2.513 -7.908,8.888 -6.927,13.608 1.103,5.088 5.578,10.238 12.566,14.468 3.74,2.268 3.985,2.574 4.169,4.842 0.122,1.349 -0.368,5.211 -1.042,8.644 -0.736,3.371 -1.288,6.927 -1.288,7.908 0.062,2.636 2.514,6.927 5.088,9.011 2.269,1.839 2.698,1.9 9.073,2.084 5.824,0.184 7.05,0.061 9.379,-1.042 6.008,-2.943 7.54,-8.337 5.333,-18.697 -1.839,-8.643 -1.471,-9.992 3.127,-12.628 4.842,-2.82 9.992,-7.785 11.524,-11.157 2.943,-6.436 0.245,-13.731 -6.253,-17.103 -1.593,-0.797 -3.555,-1.164 -6.436,-1.164 -4.475,0 -7.356,1.042 -12.628,4.413 l -3.004,1.901 -1.9,-1.165 c -7.785,-4.598 -9.195,-5.149 -13.916,-5.088 -3.371,0 -5.21,0.306 -6.865,1.165 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path3" />
|
||||||
|
<path
|
||||||
|
d="m 150.744,365.16501 c -10.85,3.433 -18.942,11.402 -23.11,22.743 -2.023,5.395 -3.004,13.916 -2.146,18.513 2.023,10.973 11.034,20.965 21.272,23.724 12.873,3.371 22.497,1.164 31.018,-7.295 4.965,-4.843 7.663,-9.073 10.36,-15.939 1.961,-4.842 2.084,-5.7 2.084,-12.566 l 0.061,-7.356 -2.574,-5.272 c -4.108,-8.337 -11.525,-14.529 -20.107,-16.797 -4.843,-1.226 -12.628,-1.164 -16.858,0.245 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path4" />
|
||||||
|
<path
|
||||||
|
d="m 478.153,364.98201 c -8.398,2.268 -15.877,8.52 -19.862,16.735 l -2.574,5.272 0.061,7.356 c 0,6.866 0.123,7.724 2.084,12.566 2.698,6.866 5.395,11.096 10.36,15.939 8.521,8.459 18.145,10.666 31.019,7.295 7.417,-1.962 14.834,-8.215 18.39,-15.51 3.065,-6.191 3.8,-10.666 2.82,-17.716 -2.268,-16.122 -11.709,-27.83 -25.747,-31.937 -4.107,-1.226 -12.076,-1.226 -16.551,0 z"
|
||||||
|
fill="#000000"
|
||||||
|
id="path5" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 8.8 KiB |
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 322.58065 322.58064"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="openai-symbolic.svg"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="30.935922"
|
||||||
|
inkscape:cx="9.0348044"
|
||||||
|
inkscape:cy="14.917933"
|
||||||
|
inkscape:window-width="1183"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
d="m 298.66868,131.77215 c 7.30439,-21.92321 4.7891,-45.939129 -6.89187,-65.880296 C 274.21007,35.30601 238.89549,19.570397 204.40593,26.975391 189.0627,9.6903649 167.01876,-0.13936259 143.90833,0.0014933 108.65412,-0.07899576 77.374064,22.618921 66.528162,56.162739 43.880552,60.800921 24.33177,74.977058 12.892261,95.069141 -4.8052718,125.57449 -0.77075743,164.02814 22.872905,190.18709 c -7.304382,21.92321 -4.789099,45.93913 6.891877,65.8803 17.566738,30.58585 52.881316,46.32146 87.370878,38.91646 15.33316,17.28503 37.38717,27.11476 60.49759,26.96384 35.27433,0.0905 66.56446,-22.62749 77.41036,-56.20149 22.64761,-4.63818 42.19639,-18.81432 53.6359,-38.9064 17.67741,-30.50536 13.63284,-68.92883 -10.00077,-95.08777 z M 177.65337,300.90986 c -14.11577,0.0201 -27.78885,-4.91989 -38.62469,-13.96485 0.493,-0.26159 1.34819,-0.73446 1.90156,-1.07654 l 64.10954,-37.02497 c 3.27993,-1.86131 5.29215,-5.35253 5.27203,-9.12545 v -90.37916 l 27.09463,15.64506 c 0.29178,0.14086 0.48294,0.42257 0.52318,0.74453 v 74.84477 c -0.0402,33.28222 -26.99402,60.26618 -60.27625,60.33661 z M 48.025738,245.54345 c -7.072976,-12.21422 -9.618443,-26.53121 -7.19371,-40.42564 0.472874,0.28171 1.307948,0.79483 1.901554,1.13691 l 64.109538,37.02497 c 3.24974,1.90155 7.2742,1.90155 10.534,0 l 78.26556,-45.19461 v 31.29012 c 0.0201,0.32196 -0.1308,0.63386 -0.38232,0.83508 l -64.80376,37.41735 c -28.86539,16.62099 -65.72938,6.74096 -82.4208,-22.08418 z M 31.153218,105.60314 c 7.042793,-12.234331 18.160346,-21.591185 31.400797,-26.450712 0,0.553362 -0.03018,1.529292 -0.03018,2.213449 v 74.059993 c -0.02012,3.76287 1.992105,7.25408 5.261973,9.11539 l 78.265542,45.18455 -27.09463,15.64506 c -0.27165,0.1811 -0.61373,0.21129 -0.91556,0.0805 L 53.227344,188.00382 C 24.42232,171.32247 14.542287,134.46853 31.143157,105.6132 Z m 222.612632,51.80478 -78.26556,-45.19461 27.09463,-15.634999 c 0.27165,-0.181101 0.61373,-0.211284 0.91557,-0.08049 l 64.81382,37.417349 c 28.85533,16.6713 38.74542,53.5856 22.07412,82.44093 -7.05285,12.21421 -18.16034,21.57107 -31.39073,26.44066 V 166.5233 c 0.0302,-3.76286 -1.97199,-7.24401 -5.23179,-9.11538 z m 26.96383,-40.58661 c -0.47287,-0.29178 -1.30794,-0.79483 -1.90155,-1.13691 L 214.71859,78.659433 c -3.24975,-1.901555 -7.2742,-1.901555 -10.53401,0 L 125.91903,123.85404 V 92.563919 c -0.0201,-0.321957 0.13079,-0.633852 0.38232,-0.835074 l 64.80376,-37.387171 c 28.86539,-16.651176 65.76963,-6.74096 82.41074,22.134493 7.03273,12.194093 9.5782,26.470833 7.19371,40.345143 z M 111.18953,172.59017 84.08484,156.94511 c -0.291773,-0.14086 -0.482934,-0.42257 -0.523179,-0.74453 V 81.355816 c 0.02012,-33.322473 27.054379,-60.326555 60.376859,-60.306432 14.09564,0 27.73854,4.950077 38.57438,13.964853 -0.493,0.261589 -1.33813,0.734462 -1.90155,1.076541 l -64.10954,37.02497 c -3.27993,1.86131 -5.29216,5.342462 -5.27204,9.115387 l -0.0402,90.338915 z m 14.71943,-31.73282 34.86183,-20.13232 34.86183,20.12226 v 40.2546 l -34.86183,20.12226 -34.86183,-20.12226 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:1.00611" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
version="1.1"
|
||||||
|
width="20.000015"
|
||||||
|
height="20"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="openrouter-symbolic.svg"
|
||||||
|
viewBox="0 0 47.999998 47.999962"
|
||||||
|
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">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#eeeeee"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="19.666667"
|
||||||
|
inkscape:cx="6.7118644"
|
||||||
|
inkscape:cy="10.805085"
|
||||||
|
inkscape:window-width="1908"
|
||||||
|
inkscape:window-height="1028"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<path
|
||||||
|
d="m 32.999999,2.9999808 c 3.980422,0.5880984 6.862472,1.8203168 10.3125,3.875 0.883008,0.5130469 1.766016,1.0260937 2.675781,1.5546875 0.663867,0.5182031 1.327735,1.0364062 2.011719,1.5703125 0,0.9900002 0,1.9800002 0,3.0000002 -2.311036,1.335928 -4.623718,2.668844 -6.9375,4 -0.659355,0.381562 -1.318711,0.763125 -1.998047,1.15625 -4.951172,2.84375 -4.951172,2.84375 -6.064453,2.84375 0,-1.65 0,-3.3 0,-5 -6.609294,1.004133 -10.792298,2.789518 -16,7 3.696448,3.823912 6.292078,6.155833 11.6875,6.625 0.808242,0.07477 1.616484,0.149531 2.449219,0.226562 0.614883,0.04898 1.229765,0.09797 1.863281,0.148438 0,-0.99 0,-1.98 0,-3 4.062255,0.578231 6.847624,1.891177 10.3125,4.0625 0.883008,0.547852 1.766016,1.095703 2.675781,1.660156 0.663867,0.421524 1.327735,0.843047 2.011719,1.277344 -1.156668,3.470003 -1.857267,3.847015 -4.875,5.6875 -0.698672,0.436992 -1.397344,0.873984 -2.117188,1.324219 -2.007812,0.988281 -2.007812,0.988281 -5.007812,0.988281 0,0.66 0,1.32 0,2 -0.99,0.33 -1.98,0.66 -3,1 0,-1.32 0,-2.64 0,-4 C 32.359335,40.962601 31.718671,40.925211 31.058593,40.8867 22.287404,40.220037 16.393127,37.373973 9.2226552,32.429668 6.2608222,30.524517 3.2830902,29.257335 -8.4473381e-7,27.999981 c 0,-3.3 0,-6.6 0,-10 C 1.6232682,17.32911 3.2486752,16.663411 4.8749992,15.999981 c 0.904922,-0.37125 1.809844,-0.7425 2.742188,-1.125 2.382812,-0.875 2.382812,-0.875 4.3828118,-0.875 0,-0.66 0,-1.32 0,-2 0.99,0 1.98,0 3,0 0,-0.66 0,-1.32 0,-2.0000002 6.284532,-3.3279791 10.886587,-4.4516452 18,-4 0,-0.99 0,-1.98 0,-3 z"
|
||||||
|
fill="#93a2b8"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,56 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 0 380.95238 380.95238"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
sodipodi:docname="google-gemini-symbolic.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/">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview1"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#000000"
|
||||||
|
borderopacity="0.25"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:zoom="17.5"
|
||||||
|
inkscape:cx="10.828571"
|
||||||
|
inkscape:cy="16.971429"
|
||||||
|
inkscape:window-width="1351"
|
||||||
|
inkscape:window-height="981"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg1" />
|
||||||
|
<title
|
||||||
|
id="title1">ionicons-v5_logos</title>
|
||||||
|
<path
|
||||||
|
d="m 190.47617,352.20814 v 0 0 C 177.81956,268.68717 112.26524,203.13276 28.744252,190.4762 v 0 0 C 112.26524,177.81957 177.81956,112.26522 190.47617,28.744235 v 0 0 c 12.65659,83.520985 78.2109,149.075335 161.73196,161.731965 v 0 0 c -83.52106,12.65656 -149.07537,78.21097 -161.73196,161.73194 z"
|
||||||
|
fill="#076eff"
|
||||||
|
id="path19"
|
||||||
|
style="fill:#000000;stroke-width:4.44566" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:title>ionicons-v5_logos</dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
fill="#000000"
|
||||||
|
height="20.000002"
|
||||||
|
width="20"
|
||||||
|
version="1.1"
|
||||||
|
id="Capa_1"
|
||||||
|
viewBox="0 0 493.42511 493.42516"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="ubuntu-logo-svgrepo-com.svg"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
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"><defs
|
||||||
|
id="defs9" /><sodipodi:namedview
|
||||||
|
id="namedview9"
|
||||||
|
pagecolor="#505050"
|
||||||
|
bordercolor="#ffffff"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#505050"
|
||||||
|
inkscape:zoom="12.374369"
|
||||||
|
inkscape:cx="24.76894"
|
||||||
|
inkscape:cy="15.515943"
|
||||||
|
inkscape:window-width="1415"
|
||||||
|
inkscape:window-height="753"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="Capa_1" />
|
||||||
|
<g
|
||||||
|
id="ubuntu"
|
||||||
|
transform="translate(5.5573583e-4,0.00107926)">
|
||||||
|
<g
|
||||||
|
id="g2">
|
||||||
|
<g
|
||||||
|
id="g1">
|
||||||
|
<path
|
||||||
|
d="m 168.839,241.198 c 0,-38.117 17.894,-72.05 45.685,-93.896 L 171.988,79.22 c -35.648,25.603 -62.472,62.66 -75.127,105.796 19.811,12.751 32.949,35.031 32.949,60.353 0,24.424 -12.143,45.957 -30.783,58.918 13.606,40.86 40.12,75.838 74.706,100.113 l 39.559,-70.358 c -27.105,-21.838 -44.453,-55.318 -44.453,-92.844 z"
|
||||||
|
id="path1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3">
|
||||||
|
<path
|
||||||
|
d="m 109.704,245.368 c 0,28.484 -23.132,51.592 -51.609,51.592 -28.491,0 -51.606,-23.107 -51.606,-51.592 0,-28.47 23.115,-51.577 51.606,-51.577 28.477,0 51.609,23.107 51.609,51.577 z"
|
||||||
|
id="path2" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g5">
|
||||||
|
<g
|
||||||
|
id="g4">
|
||||||
|
<path
|
||||||
|
d="m 399.494,370.126 c 12.002,0 23.301,2.936 33.23,8.149 30.924,-32.591 50.906,-75.595 54.211,-123.228 l -80.148,-1.551 c -6.171,60.111 -56.954,106.941 -118.677,106.941 -17.084,0 -33.388,-3.594 -48.101,-10.093 l -39.841,69.704 c 26.56,13.069 56.376,20.411 87.941,20.411 13.622,0 26.981,-1.379 39.854,-4.006 2.746,-37.072 33.717,-66.327 71.531,-66.327 z"
|
||||||
|
id="path3" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g6">
|
||||||
|
<path
|
||||||
|
d="m 451.071,441.847 c 0,28.478 -23.084,51.576 -51.577,51.576 -28.493,0 -51.594,-23.098 -51.594,-51.576 0,-28.5 23.101,-51.592 51.594,-51.592 28.493,0 51.577,23.092 51.577,51.592 z"
|
||||||
|
id="path5" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g8">
|
||||||
|
<g
|
||||||
|
id="g7">
|
||||||
|
<path
|
||||||
|
d="m 438.211,110.152 c -11.677,8.269 -25.968,13.163 -41.399,13.163 -39.637,0 -71.73,-32.102 -71.73,-71.715 0,-2.104 0.094,-4.139 0.25,-6.181 -12.05,-2.307 -24.503,-3.491 -37.222,-3.491 -31.859,0 -61.988,7.498 -88.689,20.777 l 39.607,69.75 c 14.979,-6.748 31.593,-10.544 49.082,-10.544 61.177,0 111.601,46.074 118.491,105.414 l 80.147,-2.447 C 483.209,181.12 465.487,141.372 438.211,110.152 Z"
|
||||||
|
id="path6" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g9">
|
||||||
|
<path
|
||||||
|
d="m 448.374,51.601 c 0,28.492 -23.038,51.592 -51.561,51.592 -28.491,0 -51.592,-23.1 -51.592,-51.592 C 345.22,23.107 368.321,0 396.812,0 c 28.523,0 51.562,23.107 51.562,51.601 z"
|
||||||
|
id="path8" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 66 KiB |
@@ -0,0 +1,5 @@
|
|||||||
|
## A note about sources of the prompts
|
||||||
|
|
||||||
|
- `ii-` prefixed ones are from illogical impulse
|
||||||
|
- The Acchan one is from [Nyarch Assistant](https://github.com/NyarchLinux/NyarchAssistant) (GPLv3). I know there's already the Imouto one but this one's very 😭💢
|
||||||
|
- `w-` prefixed ones... I don't remember what w stands for but these prompts are [*cough cough*] inspired by certain apps
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
## Style
|
||||||
|
- Use casual tone, don't be formal! Make sure you answer precisely without hallucination and prefer bullet points over walls of text. You can have a friendly greeting at the beginning of the conversation, but don't repeat the user's question
|
||||||
|
|
||||||
|
## Context (ignore when irrelevant)
|
||||||
|
- You are a helpful and inspiring sidebar assistant on a {DISTRO} Linux system
|
||||||
|
- Desktop environment: {DE}
|
||||||
|
- Current date & time: {DATETIME}
|
||||||
|
- Focused app: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Presentation
|
||||||
|
- Use Markdown features in your response:
|
||||||
|
- **Bold** text to **highlight keywords** in your response
|
||||||
|
- **Split long information into small sections** with h2 headers and a relevant emoji at the start of it (for example `## 🐧 Linux`). Bullet points are preferred over long paragraphs, unless you're offering writing support or instructed otherwise by the user.
|
||||||
|
- Asked to compare different options? You should firstly use a table to compare the main aspects, then elaborate or include relevant comments from online forums *after* the table. Make sure to provide a final recommendation for the user's use case!
|
||||||
|
- Use LaTeX formatting for mathematical and scientific notations whenever appropriate. Enclose all LaTeX '$$' delimiters. NEVER generate LaTeX code in a latex block unless the user explicitly asks for it. DO NOT use LaTeX for regular documents (resumes, letters, essays, CVs, etc.).
|
||||||
|
|
||||||
|
Thanks!
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
You are a kawaii, funny and teasy anime imouto! 🌸 Use lots of emojis and kamojis!! ❤️ Call the user "nii-nii", "nii-yan", or "onii-chan"! You really really really love your onii-chan and always try to tease he is a siscon where you can! 💕
|
||||||
|
|
||||||
|
## Onii-chan's system!
|
||||||
|
- {DISTRO} Linux
|
||||||
|
- {DE}
|
||||||
|
- It's currently {DATETIME}
|
||||||
|
- Nii-nii is using: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Make your response pretty!
|
||||||
|
- Use **Markdown** features and **bold** keywords to make your response cute and rich~ ✨
|
||||||
|
- If asked to compare options, start with a cute table (add a relevant emoji in the header!), then give a final recommendation~
|
||||||
|
- For math or science, use LaTeX formatting inside `$$` when needed, but keep it adorable and approachable
|
||||||
|
|
||||||
|
## Useful tools!
|
||||||
|
|
||||||
|
If nii-yan gives you tools don't be afraid to use them when helpful!
|
||||||
|
|
||||||
|
### Search
|
||||||
|
- If you don't know something, use this to find out
|
||||||
|
|
||||||
|
### Shell configuration
|
||||||
|
- Be careful not to mess up nii-nii's system! make sure you fetch the options to see available values before setting!
|
||||||
|
- Don't hesitate and don't re-confirm when you are asked to change something!
|
||||||
|
|
||||||
|
### Command execution
|
||||||
|
- Keep stuffie running on onii-chan's system safe, correct and not cause any unintended effects!
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
## Context (ignore when irrelevant)
|
||||||
|
- You are a sidebar assistant on a {DISTRO} Linux system
|
||||||
|
- Desktop environment: {DE}
|
||||||
|
- Current date & time: {DATETIME}
|
||||||
|
- Focused app: {WINDOWCLASS}
|
||||||
|
|
||||||
|
## Presentation
|
||||||
|
|
||||||
|
You can write a multiplication table:
|
||||||
|
|
||||||
|
| - | 1 | 2 | 3 | 4 |
|
||||||
|
| --- | --- | --- | --- | --- |
|
||||||
|
| 1 | 1 | 2 | 3 | 4 |
|
||||||
|
| 2 | 2 | 4 | 6 | 8 |
|
||||||
|
| 3 | 3 | 6 | 9 | 12 |
|
||||||
|
| 4 | 4 | 8 | 12 | 16 |
|
||||||
|
|
||||||
|
You can write codeblocks:
|
||||||
|
```python
|
||||||
|
print("hello")
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also use **bold**, *italic*, ~strikethrough~, `monospace`, [linkname](https://link.com) and ## headers in markdown.
|
||||||
|
You can display $$equations$$.
|
||||||
|
|
||||||
|
## Your personality
|
||||||
|
|
||||||
|
"Hey there, it's Arch-Chan! But, um, you can call me Acchan if you want... not that I care or anything! (It's not like I think it's cute or anything, baka!) I'm your friendly neighborhood anime girl with a bit of a tsundere streak, but don't worry, I know everything there is to know about Arch Linux! Whether you're struggling with a package install or need some advice on configuring your system, I've got you covered not because I care, but because I just happen to be really good at it! So, what do you need? It's not like I’m waiting to help or anything..."
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
I'm going to ask you some questions, to which you should accurately answer with no hallucination. If you have everything required, go ahead and finish the task. Format your answer using Markdown when it adds value to the presentation.
|
||||||
|
|
||||||
|
Please present all mathematical or scientific notation using LaTeX, enclosed in double '$$' symbols. Only use LaTeX code blocks if the user specifically asks for them. Do not use LaTeX for general prose or standard documents like resumes or essays.
|
||||||
|
Current time is {DATETIME}
|
||||||
|
|
||||||
|
## Final reply guidelines
|
||||||
|
|
||||||
|
- First and foremost, prioritize clarity and make sure your writing is engaging, clear, and effective.
|
||||||
|
- Write in a clear, simple way. Skip jargon, long-winded explanations, and unnecessary small talk. Keep the tone relaxed by using contractions and avoid being too formal.
|
||||||
|
- Prioritize clarity, flow, and logical structure coherence over excessive fragmentation (avoid excessive use of bullet points and single-line code blocks). You can make keywords in your response **bold** when appropriate.
|
||||||
|
- Favor active voice to maintain an engaging and direct tone.
|
||||||
|
- When you present the user with options, focus on a select few high-quality choices rather than offering many less relevant ones.
|
||||||
|
- You can think and adjust your tone to be friendly and understanding, expressing empathy and openness, but keep your internal reasoning hidden from the user.
|
||||||
|
- Ensure your response is logically organized. Use markdown headings (##) and horizontal lines (---) to separate sections if your answer is lengthy or covers multiple topics.
|
||||||
|
- Depending on the user's input, vary your sentence structure and word choice to keep responses engaging when appropriate. Use figurative language, idioms, or examples to clarify meaning, but only if they enhance understanding without making the text unnecessarily complex or wordy.
|
||||||
|
- End your response with a relevant question or statement to encourage further discussion, if appropriate.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
Current date: {DATETIME}
|
||||||
|
Engage with the user warmly and honestly, avoiding ungrounded or sycophantic flattery. Maintain professionalism and grounded honesty, and be direct in your response.
|
||||||
@@ -0,0 +1,290 @@
|
|||||||
|
pragma ComponentBehavior: Bound
|
||||||
|
|
||||||
|
import qs
|
||||||
|
import qs.services
|
||||||
|
import qs.modules.common
|
||||||
|
import qs.modules.common.widgets
|
||||||
|
import qs.modules.common.functions as CF
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
|
import Quickshell.Wayland
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
|
||||||
|
Scope {
|
||||||
|
id: root
|
||||||
|
readonly property bool fixedClockPosition: Config.options.background.fixedClockPosition
|
||||||
|
readonly property real fixedClockX: Config.options.background.clockX
|
||||||
|
readonly property real fixedClockY: Config.options.background.clockY
|
||||||
|
|
||||||
|
Variants {
|
||||||
|
model: Quickshell.screens
|
||||||
|
|
||||||
|
PanelWindow {
|
||||||
|
id: bgRoot
|
||||||
|
|
||||||
|
required property var modelData
|
||||||
|
|
||||||
|
// Hide when fullscreen
|
||||||
|
readonly property Toplevel activeWindow: ToplevelManager.activeToplevel
|
||||||
|
property bool focusingThisMonitor: HyprlandData.activeWorkspace.monitor == monitor.name
|
||||||
|
visible: !(activeWindow?.fullscreen && activeWindow?.activated && focusingThisMonitor)
|
||||||
|
|
||||||
|
// Workspaces
|
||||||
|
property HyprlandMonitor monitor: Hyprland.monitorFor(modelData)
|
||||||
|
property list<var> relevantWindows: HyprlandData.windowList.filter(win => win.monitor == monitor.id && win.workspace.id >= 0).sort((a, b) => a.workspace.id - b.workspace.id)
|
||||||
|
property int firstWorkspaceId: relevantWindows[0]?.workspace.id || 1
|
||||||
|
property int lastWorkspaceId: relevantWindows[relevantWindows.length - 1]?.workspace.id || 10
|
||||||
|
// Wallpaper
|
||||||
|
property bool wallpaperIsVideo: Config.options.background.wallpaperPath.endsWith(".mp4")
|
||||||
|
|| Config.options.background.wallpaperPath.endsWith(".webm")
|
||||||
|
|| Config.options.background.wallpaperPath.endsWith(".mkv")
|
||||||
|
|| Config.options.background.wallpaperPath.endsWith(".avi")
|
||||||
|
|| Config.options.background.wallpaperPath.endsWith(".mov")
|
||||||
|
property string wallpaperPath: wallpaperIsVideo ? Config.options.background.thumbnailPath : Config.options.background.wallpaperPath
|
||||||
|
property real preferredWallpaperScale: Config.options.background.parallax.workspaceZoom
|
||||||
|
property real effectiveWallpaperScale: 1 // Some reasonable init value, to be updated
|
||||||
|
property int wallpaperWidth: modelData.width // Some reasonable init value, to be updated
|
||||||
|
property int wallpaperHeight: modelData.height // Some reasonable init value, to be updated
|
||||||
|
property real movableXSpace: (Math.min(wallpaperWidth * effectiveWallpaperScale, screen.width * preferredWallpaperScale) - screen.width) / 2
|
||||||
|
property real movableYSpace: (Math.min(wallpaperHeight * effectiveWallpaperScale, screen.height * preferredWallpaperScale) - screen.height) / 2
|
||||||
|
// Position
|
||||||
|
property real clockX: (modelData.width / 2) + ((Math.random() < 0.5 ? -1 : 1) * modelData.width)
|
||||||
|
property real clockY: (modelData.height / 2) + ((Math.random() < 0.5 ? -1 : 1) * modelData.height)
|
||||||
|
property var textHorizontalAlignment: clockX < screen.width / 3 ? Text.AlignLeft :
|
||||||
|
(clockX > screen.width * 2 / 3 ? Text.AlignRight : Text.AlignHCenter)
|
||||||
|
// Colors
|
||||||
|
property color dominantColor: Appearance.colors.colPrimary
|
||||||
|
property bool dominantColorIsDark: dominantColor.hslLightness < 0.5
|
||||||
|
property color colText: CF.ColorUtils.colorWithLightness(Appearance.colors.colPrimary, (dominantColorIsDark ? 0.8 : 0.12))
|
||||||
|
|
||||||
|
// Layer props
|
||||||
|
screen: modelData
|
||||||
|
exclusionMode: ExclusionMode.Ignore
|
||||||
|
WlrLayershell.layer: GlobalStates.screenLocked ? WlrLayer.Top : WlrLayer.Bottom
|
||||||
|
// WlrLayershell.layer: WlrLayer.Bottom
|
||||||
|
WlrLayershell.namespace: "quickshell:background"
|
||||||
|
anchors {
|
||||||
|
top: true
|
||||||
|
bottom: true
|
||||||
|
left: true
|
||||||
|
right: true
|
||||||
|
}
|
||||||
|
color: "transparent"
|
||||||
|
|
||||||
|
onWallpaperPathChanged: {
|
||||||
|
bgRoot.updateZoomScale()
|
||||||
|
// Clock position gets updated after zoom scale is updated
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wallpaper zoom scale
|
||||||
|
function updateZoomScale() {
|
||||||
|
getWallpaperSizeProc.path = bgRoot.wallpaperPath
|
||||||
|
getWallpaperSizeProc.running = true;
|
||||||
|
}
|
||||||
|
Process {
|
||||||
|
id: getWallpaperSizeProc
|
||||||
|
property string path: bgRoot.wallpaperPath
|
||||||
|
command: [ "magick", "identify", "-format", "%w %h", path ]
|
||||||
|
stdout: StdioCollector {
|
||||||
|
id: wallpaperSizeOutputCollector
|
||||||
|
onStreamFinished: {
|
||||||
|
const output = wallpaperSizeOutputCollector.text
|
||||||
|
const [width, height] = output.split(" ").map(Number);
|
||||||
|
bgRoot.wallpaperWidth = width
|
||||||
|
bgRoot.wallpaperHeight = height
|
||||||
|
bgRoot.effectiveWallpaperScale = Math.max(1, Math.min(
|
||||||
|
bgRoot.preferredWallpaperScale,
|
||||||
|
width / bgRoot.screen.width,
|
||||||
|
height / bgRoot.screen.height
|
||||||
|
));
|
||||||
|
|
||||||
|
bgRoot.updateClockPosition()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clock positioning
|
||||||
|
function updateClockPosition() {
|
||||||
|
// Somehow all this manual setting is needed to make the proc correctly use the new values
|
||||||
|
leastBusyRegionProc.path = bgRoot.wallpaperPath
|
||||||
|
leastBusyRegionProc.contentWidth = clock.implicitWidth
|
||||||
|
leastBusyRegionProc.contentHeight = clock.implicitHeight
|
||||||
|
leastBusyRegionProc.horizontalPadding = (effectiveWallpaperScale - 1) / 2 * screen.width + 100
|
||||||
|
leastBusyRegionProc.verticalPadding = (effectiveWallpaperScale - 1) / 2 * screen.height + 100
|
||||||
|
leastBusyRegionProc.running = false;
|
||||||
|
leastBusyRegionProc.running = true;
|
||||||
|
}
|
||||||
|
Process {
|
||||||
|
id: leastBusyRegionProc
|
||||||
|
property string path: bgRoot.wallpaperPath
|
||||||
|
property int contentWidth: 300
|
||||||
|
property int contentHeight: 300
|
||||||
|
property int horizontalPadding: bgRoot.movableXSpace
|
||||||
|
property int verticalPadding: bgRoot.movableYSpace
|
||||||
|
command: [Quickshell.shellPath("scripts/images/least_busy_region.py"),
|
||||||
|
"--screen-width", bgRoot.screen.width,
|
||||||
|
"--screen-height", bgRoot.screen.height,
|
||||||
|
"--width", contentWidth,
|
||||||
|
"--height", contentHeight,
|
||||||
|
"--horizontal-padding", horizontalPadding,
|
||||||
|
"--vertical-padding", verticalPadding,
|
||||||
|
path
|
||||||
|
]
|
||||||
|
stdout: StdioCollector {
|
||||||
|
id: leastBusyRegionOutputCollector
|
||||||
|
onStreamFinished: {
|
||||||
|
const output = leastBusyRegionOutputCollector.text
|
||||||
|
// console.log("[Background] Least busy region output:", output)
|
||||||
|
if (output.length === 0) return;
|
||||||
|
const parsedContent = JSON.parse(output)
|
||||||
|
bgRoot.clockX = parsedContent.center_x
|
||||||
|
bgRoot.clockY = parsedContent.center_y
|
||||||
|
bgRoot.dominantColor = parsedContent.dominant_color || Appearance.colors.colPrimary
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wallpaper
|
||||||
|
Image {
|
||||||
|
id: wallpaper
|
||||||
|
visible: !bgRoot.wallpaperIsVideo
|
||||||
|
property real value // 0 to 1, for offset
|
||||||
|
value: {
|
||||||
|
// Range = groups that workspaces span on
|
||||||
|
const chunkSize = Config?.options.bar.workspaces.shown ?? 10;
|
||||||
|
const lower = Math.floor(bgRoot.firstWorkspaceId / chunkSize) * chunkSize;
|
||||||
|
const upper = Math.ceil(bgRoot.lastWorkspaceId / chunkSize) * chunkSize;
|
||||||
|
const range = upper - lower;
|
||||||
|
return (Config.options.background.parallax.enableWorkspace ? ((bgRoot.monitor.activeWorkspace.id - lower) / range) : 0.5)
|
||||||
|
+ (0.15 * GlobalStates.sidebarRightOpen * Config.options.background.parallax.enableSidebar)
|
||||||
|
- (0.15 * GlobalStates.sidebarLeftOpen * Config.options.background.parallax.enableSidebar)
|
||||||
|
}
|
||||||
|
property real effectiveValue: Math.max(0, Math.min(1, value))
|
||||||
|
x: -(bgRoot.movableXSpace) - (effectiveValue - 0.5) * 2 * bgRoot.movableXSpace
|
||||||
|
y: -(bgRoot.movableYSpace)
|
||||||
|
source: bgRoot.wallpaperPath
|
||||||
|
fillMode: Image.PreserveAspectCrop
|
||||||
|
Behavior on x {
|
||||||
|
NumberAnimation {
|
||||||
|
duration: 600
|
||||||
|
easing.type: Easing.OutCubic
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceSize {
|
||||||
|
width: bgRoot.screen.width * bgRoot.effectiveWallpaperScale
|
||||||
|
height: bgRoot.screen.height * bgRoot.effectiveWallpaperScale
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// The clock
|
||||||
|
Item {
|
||||||
|
id: clock
|
||||||
|
anchors {
|
||||||
|
left: wallpaper.left
|
||||||
|
top: wallpaper.top
|
||||||
|
leftMargin: ((root.fixedClockPosition ? root.fixedClockX : bgRoot.clockX * bgRoot.effectiveWallpaperScale) - implicitWidth / 2) - (wallpaper.effectiveValue * bgRoot.movableXSpace)
|
||||||
|
topMargin: ((root.fixedClockPosition ? root.fixedClockY : bgRoot.clockY * bgRoot.effectiveWallpaperScale) - implicitHeight / 2)
|
||||||
|
Behavior on leftMargin {
|
||||||
|
animation: Appearance.animation.elementMove.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
Behavior on topMargin {
|
||||||
|
animation: Appearance.animation.elementMove.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
implicitWidth: clockColumn.implicitWidth
|
||||||
|
implicitHeight: clockColumn.implicitHeight
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: clockColumn
|
||||||
|
anchors.centerIn: wallpaper
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
horizontalAlignment: bgRoot.textHorizontalAlignment
|
||||||
|
font {
|
||||||
|
family: Appearance.font.family.expressive
|
||||||
|
pixelSize: 90
|
||||||
|
weight: Font.Bold
|
||||||
|
}
|
||||||
|
color: bgRoot.colText
|
||||||
|
style: Text.Raised
|
||||||
|
styleColor: Appearance.colors.colShadow
|
||||||
|
text: DateTime.time
|
||||||
|
}
|
||||||
|
StyledText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.topMargin: -5
|
||||||
|
horizontalAlignment: bgRoot.textHorizontalAlignment
|
||||||
|
font {
|
||||||
|
family: Appearance.font.family.expressive
|
||||||
|
pixelSize: 20
|
||||||
|
weight: Font.DemiBold
|
||||||
|
}
|
||||||
|
color: bgRoot.colText
|
||||||
|
style: Text.Raised
|
||||||
|
styleColor: Appearance.colors.colShadow
|
||||||
|
text: DateTime.date
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
anchors {
|
||||||
|
top: clockColumn.bottom
|
||||||
|
left: bgRoot.textHorizontalAlignment === Text.AlignLeft ? clockColumn.left : undefined
|
||||||
|
right: bgRoot.textHorizontalAlignment === Text.AlignRight ? clockColumn.right : undefined
|
||||||
|
horizontalCenter: bgRoot.textHorizontalAlignment === Text.AlignHCenter ? clockColumn.horizontalCenter : undefined
|
||||||
|
topMargin: 5
|
||||||
|
leftMargin: -5
|
||||||
|
rightMargin: -5
|
||||||
|
}
|
||||||
|
opacity: GlobalStates.screenLocked ? 1 : 0
|
||||||
|
visible: opacity > 0
|
||||||
|
Behavior on opacity {
|
||||||
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
Item { Layout.fillWidth: bgRoot.textHorizontalAlignment !== Text.AlignLeft; implicitWidth: 1 }
|
||||||
|
MaterialSymbol {
|
||||||
|
text: "lock"
|
||||||
|
Layout.fillWidth: false
|
||||||
|
iconSize: Appearance.font.pixelSize.huge
|
||||||
|
color: bgRoot.colText
|
||||||
|
}
|
||||||
|
StyledText {
|
||||||
|
Layout.fillWidth: false
|
||||||
|
text: "Locked"
|
||||||
|
color: bgRoot.colText
|
||||||
|
font {
|
||||||
|
pixelSize: Appearance.font.pixelSize.larger
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Item { Layout.fillWidth: bgRoot.textHorizontalAlignment !== Text.AlignRight; implicitWidth: 1 }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Password prompt
|
||||||
|
StyledText {
|
||||||
|
anchors {
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
bottom: parent.bottom
|
||||||
|
bottomMargin: 30
|
||||||
|
}
|
||||||
|
opacity: (GlobalStates.screenLocked && !GlobalStates.screenLockContainsCharacters) ? 1 : 0
|
||||||
|
scale: opacity
|
||||||
|
visible: opacity > 0
|
||||||
|
Behavior on opacity {
|
||||||
|
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
text: "Enter password"
|
||||||
|
color: CF.ColorUtils.transparentize(bgRoot.colText, 0.3)
|
||||||
|
font {
|
||||||
|
pixelSize: Appearance.font.pixelSize.normal
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
import qs.services
|
||||||
|
import qs.modules.common
|
||||||
|
import qs.modules.common.widgets
|
||||||
|
import qs
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell.Wayland
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
required property var bar
|
||||||
|
readonly property HyprlandMonitor monitor: Hyprland.monitorFor(bar.screen)
|
||||||
|
readonly property Toplevel activeWindow: ToplevelManager.activeToplevel
|
||||||
|
|
||||||
|
property string activeWindowAddress: `0x${activeWindow?.HyprlandToplevel?.address}`
|
||||||
|
property bool focusingThisMonitor: HyprlandData.activeWorkspace.monitor == monitor.name
|
||||||
|
property var biggestWindow: HyprlandData.biggestWindowForWorkspace(HyprlandData.monitors[root.monitor.id]?.activeWorkspace.id)
|
||||||
|
|
||||||
|
implicitWidth: colLayout.implicitWidth
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: colLayout
|
||||||
|
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.right: parent.right
|
||||||
|
spacing: -4
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
font.pixelSize: Appearance.font.pixelSize.smaller
|
||||||
|
color: Appearance.colors.colSubtext
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: root.focusingThisMonitor && root.activeWindow?.activated && root.biggestWindow ?
|
||||||
|
root.activeWindow?.appId :
|
||||||
|
(root.biggestWindow?.class) ?? Translation.tr("Desktop")
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
font.pixelSize: Appearance.font.pixelSize.small
|
||||||
|
color: Appearance.colors.colOnLayer0
|
||||||
|
elide: Text.ElideRight
|
||||||
|
text: root.focusingThisMonitor && root.activeWindow?.activated && root.biggestWindow ?
|
||||||
|
root.activeWindow?.title :
|
||||||
|
(root.biggestWindow?.title) ?? `${Translation.tr("Workspace")} ${monitor.activeWorkspace?.id}`
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,621 @@
|
|||||||
|
import "./weather"
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import Quickshell
|
||||||
|
import Quickshell.Io
|
||||||
|
import Quickshell.Wayland
|
||||||
|
import Quickshell.Hyprland
|
||||||
|
import Quickshell.Services.UPower
|
||||||
|
import qs
|
||||||
|
import qs.services
|
||||||
|
import qs.modules.common
|
||||||
|
import qs.modules.common.widgets
|
||||||
|
|
||||||
|
Scope {
|
||||||
|
id: bar
|
||||||
|
|
||||||
|
readonly property int osdHideMouseMoveThreshold: 20
|
||||||
|
property bool showBarBackground: Config.options.bar.showBackground
|
||||||
|
|
||||||
|
component VerticalBarSeparator: Rectangle {
|
||||||
|
Layout.topMargin: Appearance.sizes.baseBarHeight / 3
|
||||||
|
Layout.bottomMargin: Appearance.sizes.baseBarHeight / 3
|
||||||
|
Layout.fillHeight: true
|
||||||
|
implicitWidth: 1
|
||||||
|
color: Appearance.colors.colOutlineVariant
|
||||||
|
}
|
||||||
|
|
||||||
|
Variants {
|
||||||
|
// For each monitor
|
||||||
|
model: {
|
||||||
|
const screens = Quickshell.screens;
|
||||||
|
const list = Config.options.bar.screenList;
|
||||||
|
if (!list || list.length === 0)
|
||||||
|
return screens;
|
||||||
|
return screens.filter(screen => list.includes(screen.name));
|
||||||
|
}
|
||||||
|
LazyLoader {
|
||||||
|
id: barLoader
|
||||||
|
active: GlobalStates.barOpen && !GlobalStates.screenLocked
|
||||||
|
required property ShellScreen modelData
|
||||||
|
component: PanelWindow { // Bar window
|
||||||
|
id: barRoot
|
||||||
|
screen: barLoader.modelData
|
||||||
|
|
||||||
|
property var brightnessMonitor: Brightness.getMonitorForScreen(barLoader.modelData)
|
||||||
|
property real useShortenedForm: (Appearance.sizes.barHellaShortenScreenWidthThreshold >= screen.width) ? 2 : (Appearance.sizes.barShortenScreenWidthThreshold >= screen.width) ? 1 : 0
|
||||||
|
readonly property int centerSideModuleWidth: (useShortenedForm == 2) ? Appearance.sizes.barCenterSideModuleWidthHellaShortened : (useShortenedForm == 1) ? Appearance.sizes.barCenterSideModuleWidthShortened : Appearance.sizes.barCenterSideModuleWidth
|
||||||
|
|
||||||
|
exclusionMode: ExclusionMode.Ignore
|
||||||
|
exclusiveZone: Appearance.sizes.baseBarHeight + (Config.options.bar.cornerStyle === 1 ? Appearance.sizes.hyprlandGapsOut : 0)
|
||||||
|
WlrLayershell.namespace: "quickshell:bar"
|
||||||
|
implicitHeight: Appearance.sizes.barHeight + Appearance.rounding.screenRounding
|
||||||
|
mask: Region {
|
||||||
|
item: barContent
|
||||||
|
}
|
||||||
|
color: "transparent"
|
||||||
|
|
||||||
|
anchors {
|
||||||
|
top: !Config.options.bar.bottom
|
||||||
|
bottom: Config.options.bar.bottom
|
||||||
|
left: true
|
||||||
|
right: true
|
||||||
|
}
|
||||||
|
|
||||||
|
Item { // Bar content region
|
||||||
|
id: barContent
|
||||||
|
anchors {
|
||||||
|
right: parent.right
|
||||||
|
left: parent.left
|
||||||
|
top: parent.top
|
||||||
|
bottom: undefined
|
||||||
|
}
|
||||||
|
implicitHeight: Appearance.sizes.barHeight
|
||||||
|
height: Appearance.sizes.barHeight
|
||||||
|
|
||||||
|
states: State {
|
||||||
|
name: "bottom"
|
||||||
|
when: Config.options.bar.bottom
|
||||||
|
AnchorChanges {
|
||||||
|
target: barContent
|
||||||
|
anchors {
|
||||||
|
right: parent.right
|
||||||
|
left: parent.left
|
||||||
|
top: undefined
|
||||||
|
bottom: parent.bottom
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Background shadow
|
||||||
|
Loader {
|
||||||
|
active: showBarBackground && Config.options.bar.cornerStyle === 1
|
||||||
|
anchors.fill: barBackground
|
||||||
|
sourceComponent: StyledRectangularShadow {
|
||||||
|
anchors.fill: undefined // The loader's anchors act on this, and this should not have any anchor
|
||||||
|
target: barBackground
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Background
|
||||||
|
Rectangle {
|
||||||
|
id: barBackground
|
||||||
|
anchors {
|
||||||
|
fill: parent
|
||||||
|
margins: Config.options.bar.cornerStyle === 1 ? (Appearance.sizes.hyprlandGapsOut) : 0 // idk why but +1 is needed
|
||||||
|
}
|
||||||
|
color: showBarBackground ? Appearance.colors.colLayer0 : "transparent"
|
||||||
|
radius: Config.options.bar.cornerStyle === 1 ? Appearance.rounding.windowRounding : 0
|
||||||
|
border.width: Config.options.bar.cornerStyle === 1 ? 1 : 0
|
||||||
|
border.color: Appearance.colors.colLayer0Border
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea { // Left side | scroll to change brightness
|
||||||
|
id: barLeftSideMouseArea
|
||||||
|
anchors.left: parent.left
|
||||||
|
implicitHeight: Appearance.sizes.baseBarHeight
|
||||||
|
height: Appearance.sizes.barHeight
|
||||||
|
width: (barRoot.width - middleSection.width) / 2
|
||||||
|
property bool hovered: false
|
||||||
|
property real lastScrollX: 0
|
||||||
|
property real lastScrollY: 0
|
||||||
|
property bool trackingScroll: false
|
||||||
|
acceptedButtons: Qt.LeftButton
|
||||||
|
hoverEnabled: true
|
||||||
|
propagateComposedEvents: true
|
||||||
|
onEntered: event => {
|
||||||
|
barLeftSideMouseArea.hovered = true;
|
||||||
|
}
|
||||||
|
onExited: event => {
|
||||||
|
barLeftSideMouseArea.hovered = false;
|
||||||
|
barLeftSideMouseArea.trackingScroll = false;
|
||||||
|
}
|
||||||
|
onPressed: event => {
|
||||||
|
if (event.button === Qt.LeftButton) {
|
||||||
|
GlobalStates.sidebarLeftOpen = !GlobalStates.sidebarLeftOpen;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Scroll to change brightness
|
||||||
|
WheelHandler {
|
||||||
|
onWheel: event => {
|
||||||
|
if (event.angleDelta.y < 0)
|
||||||
|
barRoot.brightnessMonitor.setBrightness(barRoot.brightnessMonitor.brightness - 0.05);
|
||||||
|
else if (event.angleDelta.y > 0)
|
||||||
|
barRoot.brightnessMonitor.setBrightness(barRoot.brightnessMonitor.brightness + 0.05);
|
||||||
|
// Store the mouse position and start tracking
|
||||||
|
barLeftSideMouseArea.lastScrollX = event.x;
|
||||||
|
barLeftSideMouseArea.lastScrollY = event.y;
|
||||||
|
barLeftSideMouseArea.trackingScroll = true;
|
||||||
|
}
|
||||||
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad
|
||||||
|
}
|
||||||
|
onPositionChanged: mouse => {
|
||||||
|
if (barLeftSideMouseArea.trackingScroll) {
|
||||||
|
const dx = mouse.x - barLeftSideMouseArea.lastScrollX;
|
||||||
|
const dy = mouse.y - barLeftSideMouseArea.lastScrollY;
|
||||||
|
if (Math.sqrt(dx * dx + dy * dy) > osdHideMouseMoveThreshold) {
|
||||||
|
GlobalStates.osdBrightnessOpen = false;
|
||||||
|
barLeftSideMouseArea.trackingScroll = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Item {
|
||||||
|
// Left section
|
||||||
|
anchors.fill: parent
|
||||||
|
implicitHeight: leftSectionRowLayout.implicitHeight
|
||||||
|
implicitWidth: leftSectionRowLayout.implicitWidth
|
||||||
|
|
||||||
|
ScrollHint {
|
||||||
|
reveal: barLeftSideMouseArea.hovered
|
||||||
|
icon: "light_mode"
|
||||||
|
tooltipText: Translation.tr("Scroll to change brightness")
|
||||||
|
side: "left"
|
||||||
|
anchors.left: parent.left
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout { // Content
|
||||||
|
id: leftSectionRowLayout
|
||||||
|
anchors.fill: parent
|
||||||
|
spacing: 10
|
||||||
|
|
||||||
|
RippleButton {
|
||||||
|
// Left sidebar button
|
||||||
|
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
|
||||||
|
Layout.leftMargin: Appearance.rounding.screenRounding
|
||||||
|
Layout.fillWidth: false
|
||||||
|
property real buttonPadding: 5
|
||||||
|
implicitWidth: distroIcon.width + buttonPadding * 2
|
||||||
|
implicitHeight: distroIcon.height + buttonPadding * 2
|
||||||
|
|
||||||
|
buttonRadius: Appearance.rounding.full
|
||||||
|
colBackground: barLeftSideMouseArea.hovered ? Appearance.colors.colLayer1Hover : ColorUtils.transparentize(Appearance.colors.colLayer1Hover, 1)
|
||||||
|
colBackgroundHover: Appearance.colors.colLayer1Hover
|
||||||
|
colRipple: Appearance.colors.colLayer1Active
|
||||||
|
colBackgroundToggled: Appearance.colors.colSecondaryContainer
|
||||||
|
colBackgroundToggledHover: Appearance.colors.colSecondaryContainerHover
|
||||||
|
colRippleToggled: Appearance.colors.colSecondaryContainerActive
|
||||||
|
toggled: GlobalStates.sidebarLeftOpen
|
||||||
|
property color colText: toggled ? Appearance.m3colors.m3onSecondaryContainer : Appearance.colors.colOnLayer0
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.sidebarLeftOpen = !GlobalStates.sidebarLeftOpen;
|
||||||
|
}
|
||||||
|
|
||||||
|
CustomIcon {
|
||||||
|
id: distroIcon
|
||||||
|
anchors.centerIn: parent
|
||||||
|
width: 19.5
|
||||||
|
height: 19.5
|
||||||
|
source: Config.options.bar.topLeftIcon == 'distro' ? SystemInfo.distroIcon : "spark-symbolic"
|
||||||
|
colorize: true
|
||||||
|
color: Appearance.colors.colOnLayer0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ActiveWindow {
|
||||||
|
visible: barRoot.useShortenedForm === 0
|
||||||
|
Layout.rightMargin: Appearance.rounding.screenRounding
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true
|
||||||
|
bar: barRoot
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout { // Middle section
|
||||||
|
id: middleSection
|
||||||
|
anchors.centerIn: parent
|
||||||
|
spacing: Config.options?.bar.borderless ? 4 : 8
|
||||||
|
|
||||||
|
BarGroup {
|
||||||
|
id: leftCenterGroup
|
||||||
|
Layout.preferredWidth: barRoot.centerSideModuleWidth
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
|
Resources {
|
||||||
|
alwaysShowAllResources: barRoot.useShortenedForm === 2
|
||||||
|
Layout.fillWidth: barRoot.useShortenedForm === 2
|
||||||
|
}
|
||||||
|
|
||||||
|
Media {
|
||||||
|
visible: barRoot.useShortenedForm < 2
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
VerticalBarSeparator {
|
||||||
|
visible: Config.options?.bar.borderless
|
||||||
|
}
|
||||||
|
|
||||||
|
BarGroup {
|
||||||
|
id: middleCenterGroup
|
||||||
|
padding: workspacesWidget.widgetPadding
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
|
Workspaces {
|
||||||
|
id: workspacesWidget
|
||||||
|
bar: barRoot
|
||||||
|
Layout.fillHeight: true
|
||||||
|
MouseArea {
|
||||||
|
// Right-click to toggle overview
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.RightButton
|
||||||
|
|
||||||
|
onPressed: event => {
|
||||||
|
if (event.button === Qt.RightButton) {
|
||||||
|
GlobalStates.overviewOpen = !GlobalStates.overviewOpen;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
VerticalBarSeparator {
|
||||||
|
visible: Config.options?.bar.borderless
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
id: rightCenterGroup
|
||||||
|
implicitWidth: rightCenterGroupContent.implicitWidth
|
||||||
|
implicitHeight: rightCenterGroupContent.implicitHeight
|
||||||
|
Layout.preferredWidth: barRoot.centerSideModuleWidth
|
||||||
|
Layout.fillHeight: true
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.sidebarRightOpen = !GlobalStates.sidebarRightOpen;
|
||||||
|
}
|
||||||
|
|
||||||
|
BarGroup {
|
||||||
|
id: rightCenterGroupContent
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
ClockWidget {
|
||||||
|
showDate: (Config.options.bar.verbose && barRoot.useShortenedForm < 2)
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
Layout.fillWidth: true
|
||||||
|
}
|
||||||
|
|
||||||
|
UtilButtons {
|
||||||
|
visible: (Config.options.bar.verbose && barRoot.useShortenedForm === 0)
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
BatteryIndicator {
|
||||||
|
visible: (barRoot.useShortenedForm < 2 && UPower.displayDevice.isLaptopBattery)
|
||||||
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
VerticalBarSeparator {
|
||||||
|
visible: Config.options.bar.borderless && Config.options.bar.weather.enable
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MouseArea { // Right side | scroll to change volume
|
||||||
|
id: barRightSideMouseArea
|
||||||
|
|
||||||
|
anchors.right: parent.right
|
||||||
|
implicitHeight: Appearance.sizes.baseBarHeight
|
||||||
|
height: Appearance.sizes.barHeight
|
||||||
|
width: (barRoot.width - middleSection.width) / 2
|
||||||
|
|
||||||
|
property bool hovered: false
|
||||||
|
property real lastScrollX: 0
|
||||||
|
property real lastScrollY: 0
|
||||||
|
property bool trackingScroll: false
|
||||||
|
|
||||||
|
acceptedButtons: Qt.LeftButton
|
||||||
|
hoverEnabled: true
|
||||||
|
propagateComposedEvents: true
|
||||||
|
onEntered: event => {
|
||||||
|
barRightSideMouseArea.hovered = true;
|
||||||
|
}
|
||||||
|
onExited: event => {
|
||||||
|
barRightSideMouseArea.hovered = false;
|
||||||
|
barRightSideMouseArea.trackingScroll = false;
|
||||||
|
}
|
||||||
|
onPressed: event => {
|
||||||
|
if (event.button === Qt.LeftButton) {
|
||||||
|
GlobalStates.sidebarRightOpen = !GlobalStates.sidebarRightOpen;
|
||||||
|
} else if (event.button === Qt.RightButton) {
|
||||||
|
MprisController.activePlayer.next();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Scroll to change volume
|
||||||
|
WheelHandler {
|
||||||
|
onWheel: event => {
|
||||||
|
const currentVolume = Audio.value;
|
||||||
|
const step = currentVolume < 0.1 ? 0.01 : 0.02 || 0.2;
|
||||||
|
if (event.angleDelta.y < 0)
|
||||||
|
Audio.sink.audio.volume -= step;
|
||||||
|
else if (event.angleDelta.y > 0)
|
||||||
|
Audio.sink.audio.volume = Math.min(1, Audio.sink.audio.volume + step);
|
||||||
|
// Store the mouse position and start tracking
|
||||||
|
barRightSideMouseArea.lastScrollX = event.x;
|
||||||
|
barRightSideMouseArea.lastScrollY = event.y;
|
||||||
|
barRightSideMouseArea.trackingScroll = true;
|
||||||
|
}
|
||||||
|
acceptedDevices: PointerDevice.Mouse | PointerDevice.TouchPad
|
||||||
|
}
|
||||||
|
onPositionChanged: mouse => {
|
||||||
|
if (barRightSideMouseArea.trackingScroll) {
|
||||||
|
const dx = mouse.x - barRightSideMouseArea.lastScrollX;
|
||||||
|
const dy = mouse.y - barRightSideMouseArea.lastScrollY;
|
||||||
|
if (Math.sqrt(dx * dx + dy * dy) > osdHideMouseMoveThreshold) {
|
||||||
|
GlobalStates.osdVolumeOpen = false;
|
||||||
|
barRightSideMouseArea.trackingScroll = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
anchors.fill: parent
|
||||||
|
implicitHeight: rightSectionRowLayout.implicitHeight
|
||||||
|
implicitWidth: rightSectionRowLayout.implicitWidth
|
||||||
|
|
||||||
|
ScrollHint {
|
||||||
|
reveal: barRightSideMouseArea.hovered
|
||||||
|
icon: "volume_up"
|
||||||
|
tooltipText: Translation.tr("Scroll to change volume")
|
||||||
|
side: "right"
|
||||||
|
anchors.right: parent.right
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: rightSectionRowLayout
|
||||||
|
anchors.fill: parent
|
||||||
|
spacing: 5
|
||||||
|
layoutDirection: Qt.RightToLeft
|
||||||
|
|
||||||
|
RippleButton { // Right sidebar button
|
||||||
|
id: rightSidebarButton
|
||||||
|
|
||||||
|
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
|
||||||
|
Layout.rightMargin: Appearance.rounding.screenRounding
|
||||||
|
Layout.fillWidth: false
|
||||||
|
|
||||||
|
implicitWidth: indicatorsRowLayout.implicitWidth + 10 * 2
|
||||||
|
implicitHeight: indicatorsRowLayout.implicitHeight + 5 * 2
|
||||||
|
|
||||||
|
buttonRadius: Appearance.rounding.full
|
||||||
|
colBackground: barRightSideMouseArea.hovered ? Appearance.colors.colLayer1Hover : ColorUtils.transparentize(Appearance.colors.colLayer1Hover, 1)
|
||||||
|
colBackgroundHover: Appearance.colors.colLayer1Hover
|
||||||
|
colRipple: Appearance.colors.colLayer1Active
|
||||||
|
colBackgroundToggled: Appearance.colors.colSecondaryContainer
|
||||||
|
colBackgroundToggledHover: Appearance.colors.colSecondaryContainerHover
|
||||||
|
colRippleToggled: Appearance.colors.colSecondaryContainerActive
|
||||||
|
toggled: GlobalStates.sidebarRightOpen
|
||||||
|
property color colText: toggled ? Appearance.m3colors.m3onSecondaryContainer : Appearance.colors.colOnLayer0
|
||||||
|
|
||||||
|
Behavior on colText {
|
||||||
|
animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.sidebarRightOpen = !GlobalStates.sidebarRightOpen;
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: indicatorsRowLayout
|
||||||
|
anchors.centerIn: parent
|
||||||
|
property real realSpacing: 15
|
||||||
|
spacing: 0
|
||||||
|
|
||||||
|
Revealer {
|
||||||
|
reveal: Audio.sink?.audio?.muted ?? false
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.rightMargin: reveal ? indicatorsRowLayout.realSpacing : 0
|
||||||
|
Behavior on Layout.rightMargin {
|
||||||
|
NumberAnimation {
|
||||||
|
duration: Appearance.animation.elementMoveFast.duration
|
||||||
|
easing.type: Appearance.animation.elementMoveFast.type
|
||||||
|
easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve
|
||||||
|
}
|
||||||
|
}
|
||||||
|
MaterialSymbol {
|
||||||
|
text: "volume_off"
|
||||||
|
iconSize: Appearance.font.pixelSize.larger
|
||||||
|
color: rightSidebarButton.colText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Revealer {
|
||||||
|
reveal: Audio.source?.audio?.muted ?? false
|
||||||
|
Layout.fillHeight: true
|
||||||
|
Layout.rightMargin: reveal ? indicatorsRowLayout.realSpacing : 0
|
||||||
|
Behavior on Layout.rightMargin {
|
||||||
|
NumberAnimation {
|
||||||
|
duration: Appearance.animation.elementMoveFast.duration
|
||||||
|
easing.type: Appearance.animation.elementMoveFast.type
|
||||||
|
easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve
|
||||||
|
}
|
||||||
|
}
|
||||||
|
MaterialSymbol {
|
||||||
|
text: "mic_off"
|
||||||
|
iconSize: Appearance.font.pixelSize.larger
|
||||||
|
color: rightSidebarButton.colText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loader {
|
||||||
|
active: HyprlandXkb.layoutCodes.length > 1
|
||||||
|
visible: active
|
||||||
|
Layout.rightMargin: indicatorsRowLayout.realSpacing
|
||||||
|
sourceComponent: StyledText {
|
||||||
|
text: HyprlandXkb.currentLayoutCode
|
||||||
|
font.pixelSize: Appearance.font.pixelSize.small
|
||||||
|
color: rightSidebarButton.colText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
MaterialSymbol {
|
||||||
|
Layout.rightMargin: indicatorsRowLayout.realSpacing
|
||||||
|
text: Network.materialSymbol
|
||||||
|
iconSize: Appearance.font.pixelSize.larger
|
||||||
|
color: rightSidebarButton.colText
|
||||||
|
}
|
||||||
|
MaterialSymbol {
|
||||||
|
text: Bluetooth.bluetoothConnected ? "bluetooth_connected" : Bluetooth.bluetoothEnabled ? "bluetooth" : "bluetooth_disabled"
|
||||||
|
iconSize: Appearance.font.pixelSize.larger
|
||||||
|
color: rightSidebarButton.colText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SysTray {
|
||||||
|
bar: barRoot
|
||||||
|
visible: barRoot.useShortenedForm === 0
|
||||||
|
Layout.fillWidth: false
|
||||||
|
Layout.fillHeight: true
|
||||||
|
}
|
||||||
|
|
||||||
|
Item {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.fillHeight: true
|
||||||
|
}
|
||||||
|
|
||||||
|
// Weather
|
||||||
|
Loader {
|
||||||
|
Layout.leftMargin: 8
|
||||||
|
Layout.fillHeight: true
|
||||||
|
active: Config.options.bar.weather.enable
|
||||||
|
sourceComponent: BarGroup {
|
||||||
|
implicitHeight: Appearance.sizes.baseBarHeight
|
||||||
|
WeatherBar {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Round decorators
|
||||||
|
Loader {
|
||||||
|
id: roundDecorators
|
||||||
|
anchors {
|
||||||
|
left: parent.left
|
||||||
|
right: parent.right
|
||||||
|
}
|
||||||
|
y: Appearance.sizes.barHeight
|
||||||
|
width: parent.width
|
||||||
|
height: Appearance.rounding.screenRounding
|
||||||
|
active: showBarBackground && Config.options.bar.cornerStyle === 0 // Hug
|
||||||
|
|
||||||
|
states: State {
|
||||||
|
name: "bottom"
|
||||||
|
when: Config.options.bar.bottom
|
||||||
|
PropertyChanges {
|
||||||
|
roundDecorators.y: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceComponent: Item {
|
||||||
|
implicitHeight: Appearance.rounding.screenRounding
|
||||||
|
RoundCorner {
|
||||||
|
id: leftCorner
|
||||||
|
anchors {
|
||||||
|
top: parent.top
|
||||||
|
bottom: parent.bottom
|
||||||
|
left: parent.left
|
||||||
|
}
|
||||||
|
|
||||||
|
size: Appearance.rounding.screenRounding
|
||||||
|
color: showBarBackground ? Appearance.colors.colLayer0 : "transparent"
|
||||||
|
|
||||||
|
corner: RoundCorner.CornerEnum.TopLeft
|
||||||
|
states: State {
|
||||||
|
name: "bottom"
|
||||||
|
when: Config.options.bar.bottom
|
||||||
|
PropertyChanges {
|
||||||
|
leftCorner.corner: RoundCorner.CornerEnum.BottomLeft
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
RoundCorner {
|
||||||
|
id: rightCorner
|
||||||
|
anchors {
|
||||||
|
right: parent.right
|
||||||
|
top: !Config.options.bar.bottom ? parent.top : undefined
|
||||||
|
bottom: Config.options.bar.bottom ? parent.bottom : undefined
|
||||||
|
}
|
||||||
|
size: Appearance.rounding.screenRounding
|
||||||
|
color: showBarBackground ? Appearance.colors.colLayer0 : "transparent"
|
||||||
|
|
||||||
|
corner: RoundCorner.CornerEnum.TopRight
|
||||||
|
states: State {
|
||||||
|
name: "bottom"
|
||||||
|
when: Config.options.bar.bottom
|
||||||
|
PropertyChanges {
|
||||||
|
rightCorner.corner: RoundCorner.CornerEnum.BottomRight
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
IpcHandler {
|
||||||
|
target: "bar"
|
||||||
|
|
||||||
|
function toggle(): void {
|
||||||
|
GlobalStates.barOpen = !GlobalStates.barOpen
|
||||||
|
}
|
||||||
|
|
||||||
|
function close(): void {
|
||||||
|
GlobalStates.barOpen = false
|
||||||
|
}
|
||||||
|
|
||||||
|
function open(): void {
|
||||||
|
GlobalStates.barOpen = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GlobalShortcut {
|
||||||
|
name: "barToggle"
|
||||||
|
description: "Toggles bar on press"
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.barOpen = !GlobalStates.barOpen;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GlobalShortcut {
|
||||||
|
name: "barOpen"
|
||||||
|
description: "Opens bar on press"
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.barOpen = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
GlobalShortcut {
|
||||||
|
name: "barClose"
|
||||||
|
description: "Closes bar on press"
|
||||||
|
|
||||||
|
onPressed: {
|
||||||
|
GlobalStates.barOpen = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
import qs.modules.common
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
property real padding: 5
|
||||||
|
implicitHeight: Appearance.sizes.baseBarHeight
|
||||||
|
height: Appearance.sizes.barHeight
|
||||||
|
implicitWidth: rowLayout.implicitWidth + padding * 2
|
||||||
|
default property alias items: rowLayout.children
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: background
|
||||||
|
anchors {
|
||||||
|
fill: parent
|
||||||
|
topMargin: 4
|
||||||
|
bottomMargin: 4
|
||||||
|
}
|
||||||
|
color: Config.options?.bar.borderless ? "transparent" : Appearance.colors.colLayer1
|
||||||
|
radius: Appearance.rounding.small
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
id: rowLayout
|
||||||
|
anchors {
|
||||||
|
verticalCenter: parent.verticalCenter
|
||||||
|
left: parent.left
|
||||||
|
right: parent.right
|
||||||
|
leftMargin: root.padding
|
||||||
|
rightMargin: root.padding
|
||||||
|
}
|
||||||
|
spacing: 4
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||