some stuff

This commit is contained in:
deadvey 2025-01-12 17:24:29 +00:00
parent 1e23f17f50
commit 31244362b5
499 changed files with 50582 additions and 3 deletions

View File

@ -4,6 +4,6 @@ alias giturl="git config --get remote.origin.url"
alias push="git push"
alias commit="git commit"
alias add="git add"
alias vim="nvim"
alias vim="vim -N"
PS1="[\[\033[32m\]\w]\[\033[0m\]\n\[\033[1;36m\]\u\[\033[1;33m\] => \[\033[0m\]"

12
.config/fuzzel/fuzzel.ini Normal file
View File

@ -0,0 +1,12 @@
[colors]
background=282828dd
text=ebdbb2ff
match=b8bb26ff
selection-match=fb4934ff
selection=ebdbb2dd
selection-text=282828ff
border=b8bb26ff
[border]
width=2
radius=0

Binary file not shown.

View File

@ -1,8 +1,12 @@
exec-once="hyprpaper"
decoration {
rounding = 0
}
general {
col.active_border = rgb(b8bb26)
col.inactive_border = rgb(282828)
border_size = 2
gaps_in = 10
gaps_out = 20
}
@ -52,3 +56,7 @@ bind = SUPER SHIFT, 7, movetoworkspace, 7
bind = SUPER SHIFT, 8, movetoworkspace, 8
bind = SUPER SHIFT, 9, movetoworkspace, 9
bind = SUPER SHIFT, 0, movetoworkspace, 10
# Mouse binds
bindm = SUPER, mouse:272, movewindow
bindm = SUPER, mouse:273, resizewindow

View File

@ -0,0 +1,32 @@
## name: Gruvbox Dark
## author: Pavel Pertsev
## license: MIT/X11
## upstream: https://raw.githubusercontent.com/gruvbox-community/gruvbox-contrib/master/kitty/gruvbox-dark.conf
selection_foreground #ebdbb2
selection_background #d65d0e
background #282828
foreground #ebdbb2
color0 #3c3836
color1 #cc241d
color2 #98971a
color3 #d79921
color4 #076678
color5 #b16286
color6 #689d6a
color7 #a89984
color8 #928374
color9 #fb4934
color10 #b8bb26
color11 #fabd2f
color12 #83a598
color13 #d3869b
color14 #8ec07c
color15 #fbf1c7
cursor #bdae93
cursor_text_color #665c54
url_color #458588

7
.config/kitty/kitty.conf Normal file
View File

@ -0,0 +1,7 @@
confirm_os_window_close 0
background_opacity 0.8
# BEGIN_KITTY_THEME
# Gruvbox Dark
include gruvbox.conf
# END_KITTY_THEME

View File

@ -1,3 +1,5 @@
set clipboard=unnamedplus
syntax on
set relativenumber
set t_Co=16

41
.config/waybar/config Normal file
View File

@ -0,0 +1,41 @@
[
{
"layer": "top",
"height": 30,
"modules-left": ["hyprland/workspaces", "custom/lock", "custom/shutdown", "custom/reboot", "custom/temperature", "cpu", "memory"],
"modules-center": ["custom/time", "hyprland/window"],
"modules-right": ["custom/metar", "battery", "clock"],
"clock": {
"format": "{:%a, %d %b %Y %H:%M:%S}",
"inverval": 1
},
"custom/temperature": {
"format": " {}",
"exec": "sensors | grep 'Tctl:' | sed -E 's/Tctl:[ ]+//' | sed -E 's/[ ]+//'",
"interval": 1,
},
"cpu": {
"format": "{}% "
},
"memory": {
"format": "{}% "
},
"custom/time": {
"exec": "bash $HOME/scripts/time.sh --hex",
"format": "{}",
"interval": 1,
},
"custom/lock": {
"on-click": "hyprlock",
"format": "",
},
"custom/shutdown": {
"on-click": "shutdown now",
"format": "",
},
"custom/reboot": {
"on-click": "reboot",
"format": "",
}
}
]

85
.config/waybar/style.css Normal file
View File

@ -0,0 +1,85 @@
window#waybar.screenBorder {
border: 2px solid #b8bb26;
background-color: transparent;
box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2;
border-radius: 0px;
margin: 20px;
}
window#waybar.top,
window#waybar.bottom,
window#waybar.right,
window#waybar.left {
background-color: transparent;
}
#workspaces button {
padding: 0px;
color: #ebdbb2;
background: #282828;
}
#workspaces button:hover {
color: #b8bb26;
}
#workspaces button.active {
color: #8ec07c;
}
#workspaces button.focuced {
color: #282828;
background: #ebdbb2;
}
#workspaces {
border: 2px solid #b8bb26;
border-radius: 0;
box-shadow: 12px 12px 0px 2px #000000;
padding: 0px;
margin: 6px;
padding: 0px 5px 0px 5px;
background: #282828;
}
#custom-caway {
color: #ebdbb2;
background: #282828;
border: 2px solid #b8bb26;
border-radius: 0;
box-shadow: 12px 12px 0px 2px #000000;
margin: 6px;
}
#custom-clock,
#clock,
#custom-time,
#network,
#custom-weather,
#custom-browser,
#custom-terminal,
#custom-anki,
#custom-keepassxc,
#custom-gimp,
#custom-writer,
#custom-luanti,
#custom-nixpkgs,
#custom-email,
#custom-irc,
#disk,
#memory,
#cpu,
#custom-website,
#pulseaudio,
#custom-metar,
#custom-uptime,
#custom-temperature,
#custom-fuzzy-time,
#custom-cmus-artist,
#custom-cmus-song,
#custom-playerctl,
#custom-cava-waybar-local,
#custom-lock,
#custom-shutdown,
#custom-reboot,
#window {
color: #ebdbb2;
background: #282828;
border: 2px solid #b8bb26;
border-radius: 0;
box-shadow: 12px 12px 0px 2px #000000;
padding: 3px;
margin: 6px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 923 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 791 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 899 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 910 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 801 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 670 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 777 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 788 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 882 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 897 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 917 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 884 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 896 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 419 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 879 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 860 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,23 @@
button_offset=9
button_spacing=0
show_app_icon=false
full_width_title=true
title_shadow_active=false
title_shadow_inactive=false
title_horizontal_offset=3
active_text_color=#f0f7fe
active_text_shadow_color=#222426
inactive_text_color=#999da3
inactive_text_shadow_color=#222426
shadow_delta_height=2
shadow_delta_width=0
shadow_delta_x=0
shadow_delta_y=-5
shadow_opacity=40

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Some files were not shown because too many files have changed in this diff Show More