Compare commits

...

9 Commits

Author SHA1 Message Date
c1d60f4786 [Swaylock] fix and bg change 2026-03-08 00:30:04 +01:00
ec99ca58d8 [Inputrc] cleanup 2026-03-07 02:45:28 +01:00
5e2e481726 [Inputrc] init 2026-03-07 01:36:30 +01:00
7ebe0a5d4b [Gitignore] greet 2026-03-07 01:35:56 +01:00
5b9d76e08e [Nvim] mappings 2026-03-07 01:35:46 +01:00
9736d2fd6e [Fish] update cleanup 2026-03-07 01:35:33 +01:00
17540f0b8b [Fish] aliases and function 2026-03-07 01:35:09 +01:00
cd5cd23e71 [Fish] update cleanup 2026-03-07 01:34:20 +01:00
87935ca581 [AiChat] config 2026-03-07 01:34:01 +01:00
13 changed files with 294 additions and 45 deletions

1
.config/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
greet.txt

View File

@@ -0,0 +1,13 @@
# see https://github.com/sigoden/aichat/blob/main/config.example.yaml
keybindings: vi
editor: nvim
model: local:Qwen3-Coder-30B-Instruct-IQ4_XS
clients:
- type: openai-compatible
name: local
api_base: http://192.168.0.204:11343/v1
models:
- 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

View File

@@ -1,14 +1,3 @@
# This file was created by fish when upgrading to version 4.3, to migrate
# the 'fish_key_bindings' variable from its old default scope (universal)
# to its new default scope (global). We recommend you delete this file
# and configure key bindings in ~/.config/fish/config.fish if needed.
set --global fish_key_bindings fish_vi_key_bindings set --global fish_key_bindings fish_vi_key_bindings
# Prior to version 4.3, fish shipped an event handler that runs
# `set --universal fish_key_bindings fish_default_key_bindings`
# whenever the fish_key_bindings variable is erased.
# This means that as long as any fish < 4.3 is still running on this system,
# we cannot complete the migration.
# As a workaround, erase the universal variable at every shell startup.
set --erase --universal fish_key_bindings set --erase --universal fish_key_bindings

View File

@@ -1,13 +1,3 @@
# This file was created by fish when upgrading to version 4.3, to migrate
# theme variables from universal to global scope.
# Don't edit this file, as it will be written by the web-config tool (`fish_config`).
# To customize your theme, delete this file and see
# help interactive#syntax-highlighting
# or
# man fish-interactive | less +/^SYNTAX.HIGHLIGHTING
# for appropriate commands to add to ~/.config/fish/config.fish instead.
# See also the release notes for fish 4.3.0 (run `help relnotes`).
set --global fish_color_autosuggestion 4D5566 set --global fish_color_autosuggestion 4D5566
set --global fish_color_cancel -r set --global fish_color_cancel -r
set --global fish_color_command 39BAE6 set --global fish_color_command 39BAE6

View File

@@ -29,15 +29,12 @@ alias matrix="~/projects/random-clones/matrix/matrix"
alias nmatrix="neo-matrix -DS 3" alias nmatrix="neo-matrix -DS 3"
# LLMs # LLMs
alias codellamasrv=" ~/projects/llama.cpp/build/bin/llama-server -m ~/projects/llama.cpp/models/codellama" alias llamasrv="~/projects/pkgs/llama.cpp/build/bin/llama-server"
alias llama3-web="~/projects/llama.cpp/build/bin/llama-server -m ~/projects/llama.cpp/models/llama3" abbr llamastart "llamasrv --host 0.0.0.0 --port 11343 --models-max 3 --models-preset ~/Documents/models/config.ini"
alias llama3=" ~/projects/llama.cpp/build/bin/llama-cli -m ~/projects/llama.cpp/models/llama3"
alias llama=" ~/projects/llama.cpp/build/bin/llama-run"
# Shorts # Shorts
alias fzf="fzf --preview color='always {}'" alias fzf="fzf --preview color='always {}'"
alias grep="grep --color=auto" alias grep="grep --color=auto"
alias cat="bat -p"
# Git # Git
alias gs="git status" alias gs="git status"
@@ -61,6 +58,7 @@ abbr dots "cdots && nvim"
abbr pnotes "cpnotes && nvim" abbr pnotes "cpnotes && nvim"
abbr todo "cpnotes && nvim ToDoNext.md" abbr todo "cpnotes && nvim ToDoNext.md"
abbr cat "bat -p"
abbr copy "wl-copy" abbr copy "wl-copy"
abbr img "kitten icat" abbr img "kitten icat"
abbr fm "yazi" ## file manager abbr fm "yazi" ## file manager

View File

@@ -0,0 +1,7 @@
fish: upgraded to version 4.3:
* Color variables are no longer set in universal scope by default.
Migrated them to global variables set in ~/.config/fish/conf.d/fish_frozen_theme.fish
To restore syntax highlighting in other fish sessions, please restart them.
* The fish_key_bindings variable is no longer set in universal scope by default.
Migrated it to a global variable set in ~/.config/fish/conf.d/fish_frozen_key_bindings.fish
See also the release notes (type `help relnotes`).

View File

@@ -1,3 +1,3 @@
function askllama --description 'answer from llama' function askllama --description 'answer from llama'
~/projects/llama.cpp/build/bin/llama-run ~/projects/llama.cpp/models/llama3 $(string join '+' $argv[1..]) ~/projects/pkgs/llama.cpp/build/bin/llama-simple -m ~/Documents/models/Qwen3-4B-Instruct-2507.Q4_K_M.gguf $(string join '+' $argv[1..])
end end

View File

@@ -39,7 +39,8 @@ exec-once = wl-paste --type image --watch cliphist store # clipboard store image
exec-once = $scrPath/swwwallpaper.sh # start wallpaper daemon exec-once = $scrPath/swwwallpaper.sh # start wallpaper daemon
exec-once = $scrPath/batterynotify.sh # battery notification exec-once = $scrPath/batterynotify.sh # battery notification
exec-once = xremap ~/.config/xremap/config.yml exec-once = xremap ~/.config/xremap/config.yml
exec-once = swayidle -w timeout 180 'swaylock --timestr %H:%M & brightnessctl -s & brightnessctl set 15' resume 'brightnessctl -r' exec-once = swayidle -w timeout 180 'swaylock --timestr %H:%M -i ~/.config/swaylock/dmz.svg & brightnessctl -s & brightnessctl set 15' resume 'brightnessctl -r'
# █▀▀ █▄░█ █░█ # █▀▀ █▄░█ █░█
# ██▄ █░▀█ ▀▄▀ # ██▄ █░▀█ ▀▄▀

View File

@@ -26,7 +26,7 @@ bind = $mainMod, Delete, exit, # kill hyprland session
bind = $mainMod, W, togglefloating, # toggle the window between focus and float bind = $mainMod, W, togglefloating, # toggle the window between focus and float
bind = $mainMod, G, togglegroup, # toggle the window between focus and group bind = $mainMod, G, togglegroup, # toggle the window between focus and group
bind = Alt, Return, fullscreen, # toggle the window between focus and fullscreen bind = Alt, Return, fullscreen, # toggle the window between focus and fullscreen
bind = $mainMod, L, exec, swaylock --timestr %H:%M # launch lock screen bind = $mainMod, L, exec, swaylock --timestr %H:%M -i ~/.config/swaylock/dmz.svg # launch lock screen
bind = Ctrl+Alt, W, exec, killall waybar || waybar # toggle waybar bind = Ctrl+Alt, W, exec, killall waybar || waybar # toggle waybar
# bind = $mainMod+Shift, F, exec, $scrPath/windowpin.sh # toggle pin on focused window # bind = $mainMod+Shift, F, exec, $scrPath/windowpin.sh # toggle pin on focused window
# bind = $mainMod, Backspace, exec, $scrPath/logoutlaunch.sh # launch logout menu # bind = $mainMod, Backspace, exec, $scrPath/logoutlaunch.sh # launch logout menu

View File

@@ -4,25 +4,24 @@ require "nvchad.mappings"
local map = vim.keymap.set local map = vim.keymap.set
map("n", ";", ":", { desc = "CMD enter command mode" }) -- map("n", ";", ":", { desc = "cmd enter command mode" })
map("n", "gd", vim.lsp.buf.definition, { desc = "Go to definition" })
local builtin = require "telescope.builtin" local builtin = require "telescope.builtin"
map("n", "gD", builtin.lsp_definitions, { desc = "Go to definitions" }) map("n", "gd", vim.lsp.buf.definition, { desc = "Go to definition" })
map("n", "gD", builtin.lsp_definitions, { desc = "Go to Definitions" })
map("n", "grr", builtin.lsp_references, { desc = "Go to references" }) map("n", "grr", builtin.lsp_references, { desc = "Go to references" })
map("n", "<leader>dh", ":lua vim.diagnostic.open_float()<cr>", { desc = "Show diagnostics" })
map("n", "<leader>dj", ":lua vim.diagnostic.goto_next()<cr>", { desc = "Go to next" })
map("n", "<leader>dk", ":lua vim.diagnostic.goto_prev()<cr>", { desc = "Go to previous" })
map("n", "<leader>da", ":lua vim.lsp.buf.code_action()<cr>", { desc = "Code actions", noremap = true, silent = true })
-- Telescope
map("n", "<leader>fr", ":Telescope resume<CR>", { desc = "Resume last search" })
map("n", "<leader>fs", ":Telescope grep_string<CR>", { desc = "Find selected string" })
map("n", "<leader>fk", ":Telescope keymaps<CR>", { desc = "Find keymaps" })
map("n", "<leader>fd", ":Telescope diagnostics<CR>", { desc = "Diagnostics" })
map({ "n", "v" }, "<leader>ge", ":Gen<CR>") map({ "n", "v" }, "<leader>ge", "<cmd>:Gen<cr>", { desc = "Gen.nvim" })
map("n", "<leader>gl", "<cmd>lua vim.lsp.buf.code_action()<CR>", { noremap = true, silent = true })
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
-- Diagnostics
map("n", "<leader>da", ":lua vim.lsp.buf.code_action()<CR>", { desc = "Code actions" })
map("n", "<leader>dh", ":lua vim.diagnostic.open_float()<CR>", { desc = "Show diagnostics" })
map("n", "<leader>dj", ":lua vim.diagnostic.goto_next()<CR>", { desc = "Go to next" })
map("n", "<leader>dk", ":lua vim.diagnostic.goto_prev()<CR>", { desc = "Go to previous" })
-- P paste with -- P paste with
-- global marks -- global marks

View File

@@ -1,10 +1,9 @@
daemonize daemonize
show-failed-attempts show-failed-attempts
clock clock
screenshot
effect-blur=10x10 effect-blur=10x10
effect-vignette=1:1 effect-vignette=1:1
color=1f1d2e80 color=1f1d2e
font="Inter" font="Inter"
indicator indicator
indicator-radius=200 indicator-radius=200

231
.config/swaylock/dmz.svg Normal file
View File

@@ -0,0 +1,231 @@
<?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>

After

Width:  |  Height:  |  Size: 13 KiB

21
.inputrc Normal file
View File

@@ -0,0 +1,21 @@
# Vi mode
set editing-mode vi
set keymap vi
set show-mode-in-prompt on
set vi-ins-mode-string "\1\e[32m\2[I] \1\e[0m\2"
set vi-cmd-mode-string "\1\e[31m\2[N] \1\e[0m\2"
# exclude .dotfles
set match-hidden-files off
set show-all-if-ambiguous on
set show-all-if-unmodified on
set colored-stats on
set colored-completion-prefix on
set mark-symlinked-directories on
set completion-ignore-case on
# Ignore duplicates in history where supported
set skip-completed-text on