Compare commits

..

16 Commits

Author SHA1 Message Date
John Doe c14c6bf1af [Tuis] clis and tuis 2026-06-01 19:45:41 +02:00
John Doe f18b85247d [Pyradio] stations update 2026-06-01 19:44:59 +02:00
John Doe f59b36d637 [Fix] update fixes and cleanup 2026-06-01 19:44:50 +02:00
coja f30a7275d0 [Fish] worktree funciton 2026-05-08 14:22:55 +02:00
coja 2163dd70b6 [Pyradio] stations update 2026-05-06 20:35:42 +02:00
coja 076975d384 [Opencode] fail fix 2026-04-20 00:36:06 +02:00
coja d18a799be3 [Opencode] update 2026-04-20 00:34:26 +02:00
coja 3ced0b13d9 [Gitignore] update 2026-04-19 01:26:13 +02:00
coja 68d6cc3109 [Opencode] init 2026-04-19 01:25:09 +02:00
coja 8f73757604 [Nvim] snacks 2026-04-19 01:24:37 +02:00
coja dad966c3be [Keybinds] browsers 2026-04-19 01:24:24 +02:00
coja 7b2a2e5447 [Aichat] models update 2026-04-19 01:24:06 +02:00
coja 6cd73dc865 [AIchat] fix 2026-04-18 22:53:32 +02:00
coja 63c9bc520a [Fish] llm api key todo 2026-04-18 10:25:13 +02:00
coja 3c336fa1b3 [Swaylock] remove 2026-04-18 10:24:52 +02:00
coja 2a5d020110 [Pyradio] stations update 2026-04-18 09:06:25 +02:00
18 changed files with 260 additions and 317 deletions
+1
View File
@@ -1 +1,2 @@
greet.txt
fish_variables
+18 -3
View File
@@ -1,13 +1,28 @@
# see https://github.com/sigoden/aichat/blob/main/config.example.yaml
keybindings: vi
editor: nvim
model: local:Qwen3-Coder-30B-Instruct-IQ4_XS
model: duskadiy:Qwen3-Coder-30B-Instruct-IQ4_XS
clients:
- type: openai-compatible
name: local
api_base: http://192.168.0.204:11343/v1
models:
- name: Qwen3.5-27B-UD-Q3_K_XL
- name: Qwen3.5-9B-Q8_0
- name: Qwen3-Coder-30B-Instruct-IQ4_XS
- name: Qwen3-Coder-30B-A3B-Instruct-UD-Q3_K_XL
- name: llama-3.1-8b-instruct
- name: GLM-4.7-Flash-UD-Q3_K_XL
- name: DeepSeek-Coder-V2-Lite-Instruct-Q8_0
- name: gemma-4-E4B-it-UD-Q8_K_XL
- name: gemma-4-26B-A4B-it-UD-IQ4_XS
- type: openai-compatible
name: duskadiy
api_base: https://llm.duskadiy.com/api/v1
api_key: ${LLM_API_KEY}
models:
- name: Qwen3.5-27B-UD-Q3_K_XL
- name: Qwen3.5-9B-Q8_0
- name: Qwen3-Coder-30B-Instruct-IQ4_XS
- name: GLM-4.7-Flash-UD-Q3_K_XL
- name: DeepSeek-Coder-V2-Lite-Instruct-Q8_0
- name: gemma-4-E4B-it-UD-Q8_K_XL
- name: gemma-4-26B-A4B-it-UD-IQ4_XS
+1 -1
View File
@@ -12,7 +12,7 @@ set -gx FNM_RESOLVE_ENGINES "true";
set -gx FNM_ARCH "x64";
set -Ux MANPAGER "nvim +Man!"
set -x NEWT_COLORS 'root=black,black;window=black,black;border=white,black;listbox=white,black;label=blue,black;checkbox=red,black;title=green,black;button=white,red;actsellistbox=white,red;actlistbox=white,gray;compactbutton=white,gray;actcheckbox=white,blue;entry=lightgray,black;textbox=blue,black' nmtui
# set -gx BAT_THEME "Catppuccin Mocha"
#set -Ux LLM_API_KEY "api_key"
alias dmz="cat ~/.config/fish/dmz.txt"
alias matrix="~/projects/random-clones/matrix/matrix"
+24
View File
@@ -0,0 +1,24 @@
function c2-worktree
if test (count $argv) -ne 1
echo "Usage: pkg-worktree <branch-name>"
echo "Example: pkg-worktree package/package-update"
return 1
end
set branch $argv[1]
set dir (basename $branch)
git checkout -b $branch
or return 1
git checkout master
or return 1
git worktree add $dir $branch
or return 1
cd $dir
or return 1
pnpm i
end
+3
View File
@@ -0,0 +1,3 @@
function clis --description 'fzf select cli'
eval (string split "\n" (cat $HOME/.config/misc/clis.txt) | bashs "fzf --multi")
end
+1 -1
View File
@@ -1,3 +1,3 @@
function tuis --description 'fzf select tui'
eval (string split "\n" (cat $HOME/.dots/tuis.txt) | bashs "fzf --multi")
eval (string split "\n" (cat $HOME/.config/misc/tuis.txt) | bashs "fzf --multi")
end
+1 -1
View File
@@ -112,7 +112,7 @@ device {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/
dwindle {
pseudotile = yes
# pseudotile = yes
preserve_split = yes
}
+3 -6
View File
@@ -1,4 +1,3 @@
# █▄▀ █▀▀ █▄█ █▄▄ █ █▄░█ █▀▄ █ █▄░█ █▀▀ █▀
# █░█ ██▄ ░█░ █▄█ █ █░▀█ █▄▀ █ █░▀█ █▄█ ▄█
@@ -14,10 +13,7 @@ $file = dolphin
$browser = librewolf
$yt = freetube
$wm=Window Management
$d=[$wm]
# Window/Session actions
bind = $mainMod, Q, exec, $scrPath/dontkillsteam.sh # close focused window
@@ -40,6 +36,8 @@ bind = $mainMod+Ctrl, T, exec, tilix # launch tilix terminal emulator
bind = $mainMod, E, exec, $file # launch file manager
bind = $mainMod, F, exec, $yt # launch yt alternative
bind = $mainMod, B, exec, $browser # launch web browser
bind = $mainMod + Shift, B, exec, chromium
bind = $mainMod + Ctrl, B, exec, thorium-browser
bind = $mainMod, G, exec, gajim # launch messanger
bind = $mainMod, K, exec, keepassxc # launch password manager
bind = $mainMod, Escape, exec, dunstctl close
@@ -50,7 +48,6 @@ bindd = $mainMod, O, $d runners, exec, kitty --session ~/.config/kitty/runners.c
bindd = Ctrl+Shift, Escape, Btop, exec, kitty -e btop
bindd = Ctrl+Alt, Delete, Btop, exec, kitty -e btop
# bind = Ctrl+Shift, Escape, exec, $scrPath/sysmonlaunch.sh # launch system monitor (htop/btop or fallback to top)
# bind = $mainMod+Shift, B, exec, $browser, title: ^(LibreWolf Private Browsing)$ # launch private web browser
# Rofi menus
@@ -178,7 +175,7 @@ bind = $mainMod+Alt, S, movetoworkspacesilent, special
bind = $mainMod, S, togglespecialworkspace,
# Toggle focused window split
bind = $mainMod, J, togglesplit
bindd = $mainMod, J, $d toggle split, layoutmsg, togglesplit
$d=[$ws|Navigation|Relative workspace]
bindd = $mainMod Control Shift, Right, $d change active workspace forwards , workspace, r+1
-1
View File
@@ -463,7 +463,6 @@ keybinding:
markCommitAsBaseForRebase: B
tagCommit: T
checkoutCommit: <space>
resetCherryPick: <c-R>
copyCommitAttributeToClipboard: "y"
openLogMenu: <c-l>
openInBrowser: o
+29
View File
@@ -0,0 +1,29 @@
cal
calc
speedtest
aichat -e
askllama
ask
tldr
man
info
rsync -avkP
lsd
zioxide
httpie
bat
xxd
mpv
nix
distrobox
scrcpy
adb
watch
unzip
open
nmcli
iwctl
lsusb
thefuck
fastfetch
+9 -22
View File
@@ -20,10 +20,6 @@ lazydocker
lazyjorunal
pastel
hexyl
tmux
zellij
nvim
vim
pyradio
kew
tt
@@ -32,22 +28,13 @@ matrix
cava
tetrigo
tui-mines
clx
lnav
asciinema
bookokrat
dar
hulak
gpk
dayra
openentropy
onefetch
gittop
netwatch
lazytail
vimalender
eilmeldung
calcure
nyaa
witr
stig
tmux
zellij
nvim
vim
tuios
llmfit
battop
subtui
+11 -10
View File
@@ -1,30 +1,31 @@
{
"LuaSnip": { "branch": "master", "commit": "a62e1083a3cfe8b6b206e7d3d33a51091df25357" },
"NvChad": { "branch": "v2.5", "commit": "f437558f23c8f50c36cd09748121ab2c822e8ec9" },
"NvChad": { "branch": "v2.5", "commit": "d042cc975247c2aa55fcb228e5d146dc1dc6c648" },
"base46": { "branch": "v2.5", "commit": "fde7a2cd54599e148d376f82980407c2d24b0fa2" },
"cmp-async-path": { "branch": "main", "commit": "f8af3f726e07f2e9d37672eaa9102581aefce149" },
"cmp-buffer": { "branch": "main", "commit": "b74fab3656eea9de20a9b8116afa3cfc4ec09657" },
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
"cmp-nvim-lua": { "branch": "main", "commit": "e3a22cb071eb9d6508a156306b102c45cd2d573d" },
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
"codecompanion.nvim": { "branch": "main", "commit": "83f5c9c99d9c0687cc94197976d81ce619727986" },
"codecompanion.nvim": { "branch": "main", "commit": "680c445eb357c72129d175ea5d481aa9e92ae6a5" },
"conform.nvim": { "branch": "master", "commit": "086a40dc7ed8242c03be9f47fbcee68699cc2395" },
"friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" },
"gitsigns.nvim": { "branch": "main", "commit": "0d797daee85366bc242580e352a4f62d67557b84" },
"gitsigns.nvim": { "branch": "main", "commit": "6d808f99bd63303646794406e270bd553ad7792e" },
"indent-blankline.nvim": { "branch": "master", "commit": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03" },
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
"mason.nvim": { "branch": "main", "commit": "b03fb0f20bc1d43daf558cda981a2be22e73ac42" },
"mason.nvim": { "branch": "main", "commit": "12ddd182d9efbdc848b540f16484a583d52da0fb" },
"menu": { "branch": "main", "commit": "7a0a4a2896b715c066cfbe320bdc048091874cc6" },
"minty": { "branch": "main", "commit": "aafc9e8e0afe6bf57580858a2849578d8d8db9e0" },
"nvim-autopairs": { "branch": "master", "commit": "59bce2eef357189c3305e25bc6dd2d138c1683f5" },
"nvim-cmp": { "branch": "main", "commit": "a1d504892f2bc56c2e79b65c6faded2fd21f3eca" },
"nvim-lspconfig": { "branch": "master", "commit": "bedca8b426b2fee0ccac596d167d71bbe971253f" },
"nvim-tree.lua": { "branch": "master", "commit": "509962f21ab7289d8dcd28568af539be39a8c01e" },
"nvim-lspconfig": { "branch": "master", "commit": "e146efacbafed3789ac568abcc5a981c5decaa58" },
"nvim-tree.lua": { "branch": "master", "commit": "d277467fc0d1d0e2bca88165a1de6b526f9f6fe8" },
"nvim-treesitter": { "branch": "main", "commit": "4916d6592ede8c07973490d9322f187e07dfefac" },
"nvim-web-devicons": { "branch": "master", "commit": "95b7a002d5dba1a42eb58f5fac5c565a485eefd0" },
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
"render-markdown.nvim": { "branch": "main", "commit": "4ae2f2e8e8c66d070f33cfb57cb6f867e3baf5d9" },
"telescope.nvim": { "branch": "master", "commit": "7ef4d6dccb78ee71e552bbd866176762ad328afa" },
"nvim-web-devicons": { "branch": "master", "commit": "c72328a5494b4502947a022fe69c0c47e53b6aa6" },
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
"render-markdown.nvim": { "branch": "main", "commit": "d67113f11384c0dad96fced2f7b91f1fc811e97f" },
"snacks.nvim": { "branch": "main", "commit": "ad9ede6a9cddf16cedbd31b8932d6dcdee9b716e" },
"telescope.nvim": { "branch": "master", "commit": "028d9a0695a0cc4cfa893889f8c408ed7ccc8adc" },
"ui": { "branch": "v3.0", "commit": "cb75908a86720172594b30de147272c1b3a7f452" },
"volt": { "branch": "main", "commit": "620de1321f275ec9d80028c68d1b88b409c0c8b1" },
"which-key.nvim": { "branch": "main", "commit": "3aab2147e74890957785941f0c1ad87d0a44c15a" }
+23
View File
@@ -31,6 +31,29 @@ return {
return require "configs.render-markdown"
end,
},
{
"folke/snacks.nvim",
priority = 1000,
lazy = false,
---@type snacks.Config
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
bigfile = { enabled = false },
dashboard = { enabled = false },
explorer = { enabled = true },
indent = { enabled = true },
input = { enabled = true },
picker = { enabled = false },
notifier = { enabled = true },
quickfile = { enabled = true },
scope = { enabled = true },
scroll = { enabled = true },
statuscolumn = { enabled = true },
words = { enabled = true },
},
},
-- {
-- "jacob411/Ollama-Copilot",
+129
View File
@@ -0,0 +1,129 @@
{
"$schema": "https://opencode.ai/config.json",
"permission": {
"bash": {
"rm *": "deny",
"cat .env*": "deny",
"grep .env*": "deny",
"grep -r --exclude-dir={node_modules,.git} *": "allow",
"grep *": "allow",
"mkdir *": "allow",
"touch *": "allow",
"npm list": "allow",
"npm help": "allow",
"npm version": "allow",
"pnpm list": "allow",
"pnpm help": "allow",
"npx --version": "allow",
"tsc *": "allow",
"which *": "allow",
"ls *": "allow",
"cat *": "allow",
"git status": "allow",
"git diff": "allow",
"git log": "allow",
"git *": "ask",
"npm install": "deny",
"npm i": "deny",
"pnpm i": "deny",
"pnpm install": "deny",
"npm *": "ask",
"pnpm *": "ask",
"npx *": "ask",
"*": "ask"
},
"edit": {
"*": "deny"
}
},
"provider": {
"duskadiy": {
"npm": "@ai-sdk/openai-compatible",
"name": "DuskaDIY",
"options": {
"baseURL": "https://llm.duskadiy.com/api/v1"
},
"models": {
"gemma-4-26B-A4B-it-UD-IQ4_XS" : {
"name": "llama.cpp/gemma-4-26B-A4B-it-UD-IQ4_XS",
"limit": {
"context": 81920,
"output": 8192
}
},
"DeepSeek-Coder-V2-Lite-Instruct-Q8_0": {
"name": "llama.cpp/DeepSeek-Coder-V2-Lite-Instruct-Q8_0",
"limit": {
"context": 81920,
"output": 8192
}
},
"Qwen3-Coder-30B-Instruct-IQ4_XS" : {
"name": "llama.cpp/Qwen3-Coder-30B-Instruct-IQ4_XS",
"limit": {
"context": 8192,
"output": 8192
}
}
}
}
},
"agent" : {
"plan" : {
"mode" : "primary",
"model": "duskadiy/gemma-4-26B-A4B-it-UD-IQ4_XS",
"permissions" : {
"edit": "deny",
"bash": "ask"
}
},
"build" : {
"mode" : "primary",
"model": "duskadiy/gemma-4-26B-A4B-it-UD-IQ4_XS",
"permissions" : {
"edit": "allow",
"bash": "ask"
}
}
"code-reviewer": {
"description": "Reviews code for best practices and potential issues",
"prompt": "You are a code reviewer. Focus on security, performance, and maintainability.",
"mode": "subagent",
"model": "duskadiy/DeepSeek-Coder-V2-Lite-Instruct-Q8_0",
"permission": {
"edit": "deny",
"bash": "ask"
}
},
"test-runner": {
"description": "Runs and interprets test suites",
"prompt": "You are a test runner. Focus on identifying failing tests and providing clear reproduction steps.",
"mode": "subagent",
"model": "duskadiy/DeepSeek-Coder-V2-Lite-Instruct-Q8_0",
"permission": {
"edit": "deny",
"bash": "ask"
}
},
"doc-writer": {
"description": "Maintains project documentation and docstrings",
"prompt": "You are a technical writer. Focus on clarity, accuracy, and keeping documentation in sync with code changes.",
"mode": "subagent",
"model": "duskadiy/gemma-4-26B-A4B-it-UD-IQ4_XS",
"permission": {
"edit": "allow",
"bash": "ask"
}
},
"security-auditor": {
"description": "Scans for security vulnerabilities and hardcoded secrets",
"prompt": "You are a security auditor. Focus on OWASP principles, secret detection, and dependency vulnerabilities.",
"mode": "subagent",
"model": "duskadiy/DeepSeek-Coder-V2-Lite-Instruct-Q8_0",
"permission": {
"edit": "deny",
"bash": "ask"
}
}
}
}
+5 -2
View File
@@ -17,12 +17,15 @@ Deep Space [SomaFM], http://ice.somafm.com/deepspaceone,,
Downtempo (Secret Agent) [SomaFM],http://somafm.com/secretagent.pls,,
Dub Step (Beyond) [SomaFM],http://somafm.com/dubstep.pls,,
Dub Techno [Schizoid], http://94.130.113.214:8000/dubtechno,,
Liquid funk [Caprice], http://79.111.119.111:9115/,,
Dubplate.fm,https://sc2.dubplate.fm/radio/8030/dnb/uhifi,,
MansionNET,https://radio.inthemansion.com/listen/mansionnet/radio.mp3,,
Liquid funk [Caprice], http://79.111.119.111:9115/,,
Liquid funk,https://radiorecord.hostingradio.ru/liquidfunk96.aacp,,
Liqui Radio,https://stream-162.zeno.fm/ug59eq099yzuv?zs=zaqVusVSQuWMN3O5gnh8xA,,
Liquid DnB,http://95.47.244.172:8000/live,,
Acid Techno,https://radiorecord.hostingradio.ru/techno96.aacp,,
Dark Techno [Caprice],http://79.111.14.76:8000/darktechno,,
Deep Techno/House [1.FM], http://strm112.1.fm/deeptech_mobile_mp3
Deep Techno/House [1.FM],http://strm112.1.fm/deeptech_mobile_mp3,,
90s90s Techno,http://streams.90s90s.de/techno/mp3-192/radiode/,,
The Trip: [SomaFM],https://somafm.com/thetrip.pls,,
ToXoRs minimalRADIO,http://95.216.245.239:8000/stream/1/,,
1 Ambient Psychill [1.FM] http://strm112.1.fm/ambientpsy_mobile_mp3
17 Downtempo (Secret Agent) [SomaFM] http://somafm.com/secretagent.pls
18 Dub Step (Beyond) [SomaFM] http://somafm.com/dubstep.pls
19 Dub Techno [Schizoid] http://94.130.113.214:8000/dubtechno
Liquid funk [Caprice] http://79.111.119.111:9115/
20 Dubplate.fm https://sc2.dubplate.fm/radio/8030/dnb/uhifi
21 MansionNET https://radio.inthemansion.com/listen/mansionnet/radio.mp3
22 Liquid funk [Caprice] http://79.111.119.111:9115/
23 Liquid funk https://radiorecord.hostingradio.ru/liquidfunk96.aacp
24 Liqui Radio https://stream-162.zeno.fm/ug59eq099yzuv?zs=zaqVusVSQuWMN3O5gnh8xA
25 Liquid DnB http://95.47.244.172:8000/live
26 Acid Techno https://radiorecord.hostingradio.ru/techno96.aacp
27 Dark Techno [Caprice] http://79.111.14.76:8000/darktechno
28 Deep Techno/House [1.FM] http://strm112.1.fm/deeptech_mobile_mp3
29 90s90s Techno http://streams.90s90s.de/techno/mp3-192/radiode/
30 The Trip: [SomaFM] https://somafm.com/thetrip.pls
31 ToXoRs minimalRADIO http://95.216.245.239:8000/stream/1/
-37
View File
@@ -1,37 +0,0 @@
daemonize
show-failed-attempts
clock
effect-blur=10x10
effect-vignette=1:1
color=6c2430
font="Inter"
indicator
indicator-radius=200
indicator-thickness=20
line-color=1f1d2e
ring-color=191724
inside-color=1f1d2e
key-hl-color=eb6f92
separator-color=00000000
text-color=e0def4
text-caps-lock-color=""
line-ver-color=eb6f92
ring-ver-color=eb6f92
inside-ver-color=1f1d2e
text-ver-color=e0def4
ring-wrong-color=31748f
text-wrong-color=31748f
inside-wrong-color=1f1d2e
inside-clear-color=1f1d2e
text-clear-color=e0def4
ring-clear-color=9ccfd8
line-clear-color=1f1d2e
line-wrong-color=1f1d2e
bs-hl-color=31748f
grace=2
grace-no-mouse
grace-no-touch
datestr=%a, %B %e
timestr=%H:%M
fade-in=0.5
ignore-empty-password
-231
View File
@@ -1,231 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1920"
height="1080"
viewBox="0 0 1920 1080"
version="1.1"
id="svg1"
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
sodipodi:docname="wall.svg"
inkscape:export-filename="../png/blob.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xml:space="preserve"
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="namedview1"
pagecolor="#505050"
bordercolor="#eeeeee"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
inkscape:zoom="0.72158227"
inkscape:cx="960.38946"
inkscape:cy="540.47891"
inkscape:window-width="1920"
inkscape:window-height="1050"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:current-layer="svg1" /><defs
id="defs1" /><g
inkscape:label="base"
inkscape:groupmode="layer"
id="layer1"
style="display:inline"><path
id="rect1"
style="fill:#223333;fill-opacity:1;stroke:none;stroke-width:0.132296;stroke-dasharray:none;stroke-opacity:1"
inkscape:label="bg"
sodipodi:type="inkscape:offset"
inkscape:radius="0"
inkscape:original="M -1919.9473 0 L -1919.9473 1080 L 0.052734375 1080 L 0.052734375 0 L -1919.9473 0 z "
d="M -1919.9473,0 V 1080 H 0.05273437 V 0 Z"
transform="matrix(-1,0,0,1,0.05273437,0)" /></g><g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="grid"
style="display:inline;fill:#B5D900;fill-opacity:1"><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 1902.9475,47 v 29 h -3 V 50 h -26 v -3"
id="path6"
sodipodi:nodetypes="cccccc"
inkscape:label="tl" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 1902.9475,1063 v -29 h -3 v 26 h -26 v 3"
id="path6-6"
sodipodi:nodetypes="cccccc"
inkscape:label="bl" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 961.9475,47 v 29.000001 h 3 V 50 h 26 v -3"
id="path6-6-2"
sodipodi:nodetypes="cccccc"
inkscape:label="tml" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 957.9475,47 v 29 h -3 V 50 h -26 v -3"
id="path6-6-2-3"
sodipodi:nodetypes="cccccc"
inkscape:label="tmr" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 16.94749,47 v 29 h 3 V 50 h 26 v -3"
id="path6-6-2-3-2"
sodipodi:nodetypes="cccccc"
inkscape:label="tr" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 961.9475,1063 v -29 h 3 v 26 h 26 v 3"
id="path6-6-2-9"
sodipodi:nodetypes="cccccc"
inkscape:label="bml" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 957.9475,557 v 29 h -3 v -26 h -26 v -3"
id="path6-6-2-3-7"
sodipodi:nodetypes="cccccc"
inkscape:label="mbr" /><path
style="fill:#B5D900;fill-opacity:1;stroke:none;stroke-width:0.132283;stroke-dasharray:none"
d="m 957.9475,553 v -29 h -3 v 26 h -26 v 3"
id="path6-6-2-3-7-2"
sodipodi:nodetypes="cccccc"
inkscape:label="mtr" /></g><g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="stripes"
style="display:inline"><rect
style="display:inline;fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:1.99433;stroke-dasharray:none;stroke-opacity:1"
id="rect10-0-9"
width="10"
height="50"
x="-64.862267"
y="244.1246"
transform="scale(-1,1)"
inkscape:label="bottom" /><rect
style="display:inline;fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:1.99433;stroke-dasharray:none;stroke-opacity:1"
id="rect10-0"
width="10"
height="50"
x="-64.950287"
y="165.06091"
transform="scale(-1,1)"
inkscape:label="middle" /><rect
style="fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:1.99433;stroke-dasharray:none;stroke-opacity:1"
id="rect10"
width="10"
height="50"
x="-64.774261"
y="85.997215"
transform="scale(-1,1)"
inkscape:label="top" /></g><g
id="g141"
inkscape:label="barcode"
transform="matrix(-0.31914079,0,0,0.31914079,2692.5631,33.471493)"
style="fill:#B5D900;fill-opacity:1"><path
id="path92"
d="m 4960.1305,2682.9599 h 14.5254 v 51.44 h -14.5254 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path93"
d="m 4908.9439,2682.9599 h 38.736 v 51.44 h -38.736 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path94"
d="m 4284.3372,2682.9599 h 14.5254 v 51.44 h -14.5254 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path95"
d="m 4233.1506,2682.9599 h 38.736 v 51.44 h -38.736 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path96"
d="m 4098.9599,2682.9599 h 60.8707 v 51.44 h -60.8707 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path97"
d="m 4034.6319,2682.9599 h 40.1187 v 51.44 h -40.1187 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path98"
d="m 4573.2386,2682.9599 h 38.7346 v 51.44 h -38.7346 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path99"
d="m 4446.6559,2682.9599 h 78.624 v 51.44 h -78.624 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path100"
d="m 4739.1319,2682.9599 h 3.804 v 51.44 h -3.804 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path101"
d="m 4557.2132,2682.9599 h 3.8054 v 51.44 h -3.8054 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path102"
d="m 4537.4999,2682.9599 h 7.4933 v 51.44 h -7.4933 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path103"
d="m 4720.1092,2682.9599 h 10.0307 v 51.44 h -10.0307 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path104"
d="m 4685.5239,2682.9599 h 20.06 v 51.44 h -20.06 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path105"
d="m 4404.3466,2682.9599 h 3.8053 v 51.44 h -3.8053 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path106"
d="m 4385.3252,2682.9599 h 10.0294 v 51.44 h -10.0294 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path107"
d="m 4350.7399,2682.9599 h 20.06 v 51.44 h -20.06 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /><path
id="path108"
d="m 4774.7545,2682.9599 h 102.372 v 51.44 h -102.372 v -51.44"
style="fill:#B5D900;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.133333" /></g><g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="blob"
transform="matrix(0.92789232,0,0,0.92789232,-25.44431,97.68614)"><g
id="g7"
transform="matrix(-1.4724076,0,0,1.4724076,2705.8149,-90.935334)"
inkscape:label="blobShadow"
style="fill:#22AA22;fill-opacity:1;stroke:none"><path
id="path7-3"
style="fill:#22AA22;fill-opacity:1;stroke:none;stroke-width:3"
d="m 1319.875,319.66769 -40.2566,40.25649 v 359.38173 l 240.0757,-239.34377 h 434.5261 V 359.92429 H 1480 l -40,-40.2566 z"
inkscape:label="topBlob"
sodipodi:nodetypes="ccccccccc" /><path
style="fill:#22AA22;fill-opacity:1;stroke:none;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
d="m 1171.2916,872.28098 360.1135,-360.11356 h 434.0393 v 360.11356 z"
id="path7"
sodipodi:nodetypes="ccccc"
inkscape:label="bottomBlob" /></g><g
id="g7-0"
transform="matrix(-1.4724076,0,0,1.4724076,2737.1245,-174.94402)"
inkscape:label="blobBody"><path
id="path7-3-7"
style="fill:none;fill-opacity:0.2;stroke:#B5D900;stroke-width:2.19581;stroke-dasharray:none"
d="m 1319.875,319.66769 -40.2566,40.25649 v 359.38173 l 240.0757,-239.34377 h 434.5261 V 359.92429 H 1480 l -40,-40.2566 z"
inkscape:label="topBlob"
sodipodi:nodetypes="ccccccccc" /><path
style="fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:2.19581;stroke-dasharray:none;stroke-opacity:1"
d="m 1171.2916,872.28098 360.1135,-360.11356 h 434.0393 v 360.11356 z"
id="path7-8"
sodipodi:nodetypes="ccccc"
inkscape:label="bottomBlob" /></g></g><g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="line"
transform="translate(-242)"><path
style="fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
d="m 1731.8957,1163.8483 v -157.4509 l -70.4868,-70.48678 H 1198.8475 L 1008.058,745.46435"
id="path9"
sodipodi:nodetypes="ccccc" /><path
style="fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:3;stroke-dasharray:none;stroke-opacity:1"
d="M 690.27389,427.56586 590.07549,327.36749 V -51.651298"
id="path10"
sodipodi:nodetypes="ccc" /></g><g
id="g1"
inkscape:label="logo"
transform="translate(38,12)"><path
id="path2"
style="fill:#22AA22;fill-opacity:1;stroke:none;stroke-width:3.15901;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 1470.6146,183.27896 a 52.662275,52.821568 0 0 0 -52.6606,52.82014 52.662275,52.821568 0 0 0 52.6606,52.82298 52.662275,52.821568 0 0 0 28.6606,-8.59257 l 138.1852,137.97117 a 52.662275,52.821568 0 0 0 -7.2878,19.56819 h -107.6914 a 52.662275,52.821568 0 0 0 -51.8666,-44.07853 52.662275,52.821568 0 0 0 -51.2819,44.07853 h -107.1976 a 52.662275,52.821568 0 0 0 -51.8667,-44.07853 52.662275,52.821568 0 0 0 -52.6609,52.82325 52.662275,52.821568 0 0 0 52.6609,52.81986 52.662275,52.821568 0 0 0 51.2578,-43.92047 H 1419.36 a 52.662275,52.821568 0 0 0 39.5456,42.06034 l -0.1396,108.4457 a 52.662275,52.821568 0 0 0 -40.8215,50.94169 52.662275,52.821568 0 0 0 52.6607,52.82014 52.662275,52.821568 0 0 0 52.6637,-52.82014 52.662275,52.821568 0 0 0 -10.9635,-32.17284 l 136.9763,-136.658 a 52.662275,52.821568 0 0 0 32.1666,11.30358 52.662275,52.821568 0 0 0 52.6612,-52.81986 52.662275,52.821568 0 0 0 -52.6612,-52.82325 52.662275,52.821568 0 0 0 -32.2303,11.36754 L 1512.2166,268.37849 a 52.662275,52.821568 0 0 0 11.0516,-32.27939 52.662275,52.821568 0 0 0 -52.6639,-52.82014 z m 51.2575,272.23402 H 1630.2 a 52.662275,52.821568 0 0 0 7.3001,19.48927 l -138.1154,137.79793 a 52.662275,52.821568 0 0 0 -23.0154,-8.33421 l 0.1395,-105.96541 a 52.662275,52.821568 0 0 0 45.3768,-42.98758 z"
inkscape:label="logo-shadow" /><path
id="path2-2"
style="fill:none;fill-opacity:1;stroke:#B5D900;stroke-width:3.15901;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1"
d="m 1488.6708,160.72107 a 52.662275,52.821568 0 0 0 -52.6606,52.82014 52.662275,52.821568 0 0 0 52.6606,52.82298 52.662275,52.821568 0 0 0 28.6606,-8.59257 l 138.1852,137.97118 a 52.662275,52.821568 0 0 0 -7.2878,19.56818 h -107.6914 a 52.662275,52.821568 0 0 0 -51.8666,-44.07853 52.662275,52.821568 0 0 0 -51.282,44.07853 h -107.1975 a 52.662275,52.821568 0 0 0 -51.8666,-44.07853 52.662275,52.821568 0 0 0 -52.661,52.82325 52.662275,52.821568 0 0 0 52.661,52.81986 52.662275,52.821568 0 0 0 51.2577,-43.92047 h 107.8338 a 52.662275,52.821568 0 0 0 39.5456,42.06034 l -0.1396,108.4457 a 52.662275,52.821568 0 0 0 -40.8215,50.94169 52.662275,52.821568 0 0 0 52.6606,52.82014 52.662275,52.821568 0 0 0 52.6638,-52.82014 52.662275,52.821568 0 0 0 -10.9635,-32.17285 l 136.9763,-136.65799 a 52.662275,52.821568 0 0 0 32.1666,11.30358 52.662275,52.821568 0 0 0 52.6611,-52.81986 52.662275,52.821568 0 0 0 -52.6611,-52.82325 52.662275,52.821568 0 0 0 -32.2304,11.36754 L 1530.2727,245.8206 a 52.662275,52.821568 0 0 0 11.0517,-32.27939 52.662275,52.821568 0 0 0 -52.6639,-52.82014 z m 51.2575,272.23402 h 108.3279 a 52.662275,52.821568 0 0 0 7.3001,19.48928 l -138.1154,137.79792 a 52.662275,52.821568 0 0 0 -23.0154,-8.33421 l 0.1394,-105.9654 a 52.662275,52.821568 0 0 0 45.3768,-42.98759 z"
inkscape:label="logo" /></g></svg>

Before

Width:  |  Height:  |  Size: 13 KiB

+2 -2
View File
@@ -8,6 +8,6 @@
"format-disconnected": "󰖪 ",
"tooltip-format-disconnected": "Disconnected",
"format-alt": "<span foreground='#99ffdd'> {bandwidthDownBytes}</span> <span foreground='#ffcc66'> {bandwidthUpBytes}</span>",
"interval": 2,
},
"interval": 2
}