aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordacctal <dacctalyt@gmail.com>2026-04-13 04:34:19 +0000
committerdacctal <dacctalyt@gmail.com>2026-04-13 04:34:19 +0000
commitd19b491454c9f793d2e311dd09f70a88240dda29 (patch)
tree14edd87d5ee055fb5839d52ad925b0191c8d0687
parentfa3034e321c8dc63582b6edfcfb2299fbe627f7f (diff)
removed garbage
-rwxr-xr-x.config/fastfetch/config.jsonc69
-rwxr-xr-x.config/fastfetch/ep-wb-icon-trnsp.pngbin123310 -> 0 bytes
-rwxr-xr-x.config/fastfetch/ganymede.pngbin438219 -> 0 bytes
-rwxr-xr-x.config/fastfetch/ganymede2.pngbin358659 -> 0 bytes
-rwxr-xr-x.config/fastfetch/gentoo.pngbin14804 -> 0 bytes
-rwxr-xr-x.config/fastfetch/pluto-trnsp.pngbin17361800 -> 0 bytes
-rwxr-xr-x.config/fish/config.fish27
7 files changed, 0 insertions, 96 deletions
diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc
deleted file mode 100755
index d655969..0000000
--- a/.config/fastfetch/config.jsonc
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
- "logo": {
- "type": "auto",
- //"source": "~/.config/fastfetch/gentoo.png",
- "source": "~/.config/fastfetch/ep-wb-icon-trnsp.png",
- //"source": "~/.config/fastfetch/pluto-trnsp.png",
- //"source": "~/.config/fastfetch/ganymede2.png",
- "width": 15,
- "height": 7,
- "padding": {
- "top": 0,
- "bottom": 0,
- "right": 3,
- "left": 2,
- },
- },
- "display": {
- "separator": " › ",
- "color": {
- "title": "light_red",
- "format": "{host-name}",
- },
- },
- "modules": [
- {
- "type": "title",
- "key": " ",
- "keyColor": "red",
- "format": "{#38}{2}",
- },
- {
- "type": "os",
- "key": " ",
- "keyColor": "yellow",
- "format": "{name}",
- },
- {
- "type": "packages",
- "format": "{}",
- "key": " ",
- "keyColor": "light_yellow",
- },
- {
- "type": "shell",
- "key": ">_",
- "keyColor": "green",
- "format": "{}",
- },
- {
- "type": "terminal",
- "key": " ",
- "keyColor": "cyan",
- "format": "{}",
- },
- {
- "type": "wm",
- "key": " ",
- "keyColor": "blue",
- "format": "{}",
- },
- {
- "type": "memory",
- "key": " ",
- "keyColor": "magenta",
- "format": "{}",
- },
- ]
-}
diff --git a/.config/fastfetch/ep-wb-icon-trnsp.png b/.config/fastfetch/ep-wb-icon-trnsp.png
deleted file mode 100755
index 1d4bed9..0000000
--- a/.config/fastfetch/ep-wb-icon-trnsp.png
+++ /dev/null
Binary files differ
diff --git a/.config/fastfetch/ganymede.png b/.config/fastfetch/ganymede.png
deleted file mode 100755
index 6d241ec..0000000
--- a/.config/fastfetch/ganymede.png
+++ /dev/null
Binary files differ
diff --git a/.config/fastfetch/ganymede2.png b/.config/fastfetch/ganymede2.png
deleted file mode 100755
index 52f0fab..0000000
--- a/.config/fastfetch/ganymede2.png
+++ /dev/null
Binary files differ
diff --git a/.config/fastfetch/gentoo.png b/.config/fastfetch/gentoo.png
deleted file mode 100755
index c4114f5..0000000
--- a/.config/fastfetch/gentoo.png
+++ /dev/null
Binary files differ
diff --git a/.config/fastfetch/pluto-trnsp.png b/.config/fastfetch/pluto-trnsp.png
deleted file mode 100755
index 13ba452..0000000
--- a/.config/fastfetch/pluto-trnsp.png
+++ /dev/null
Binary files differ
diff --git a/.config/fish/config.fish b/.config/fish/config.fish
deleted file mode 100755
index 4279e25..0000000
--- a/.config/fish/config.fish
+++ /dev/null
@@ -1,27 +0,0 @@
-if status is-interactive
- # commands to run in interactive sessions can go here
-
- # aliases
- alias nv='nvim'
- alias ls='eza --icons=always'
- alias grep='grep --color=auto'
- alias scsh='grim -g "$(slurp)" - | wl-copy'
- alias ff='fastfetch'
- alias dark='sudo ddcutil setvcp 10 5 --display 2 & sudo ddcutil setvcp 10 5 --display 1;'
- alias bright='sudo ddcutil setvcp 10 100 --display 2 & sudo ddcutil setvcp 10 100 --display 1;'
- alias kys='exit'
-end
-
-
-
-# yazi
-function y
- set tmp (mktemp -t "yazi-cwd.XXXXXX")
- yazi --cwd-file="$tmp" $argv
- if test -s "$tmp"
- if test -n (cat -- "$tmp") -a (cat -- "$tmp") != (pwd)
- cd -- (cat -- "$tmp")
- end
- end
- rm -f -- "$tmp"
-end