This commit is contained in:
coast 2025-06-30 09:52:33 +03:30
parent ee1cf42e44
commit 122984b74d
11 changed files with 8159 additions and 13 deletions

View file

@ -25,7 +25,7 @@
(use-package doom-themes (use-package doom-themes
:config :config
(load-theme 'doom-one t)) (load-theme 'doom-tokyo-night t))
(set-frame-parameter (selected-frame) 'alpha '(90 . 90)) (set-frame-parameter (selected-frame) 'alpha '(90 . 90))
(add-to-list 'default-frame-alist '(alpha . (90 . 90))) (add-to-list 'default-frame-alist '(alpha . (90 . 90)))
@ -36,6 +36,7 @@
(use-package rainbow-mode (use-package rainbow-mode
:hook (prog-mode . rainbow-mode)) :hook (prog-mode . rainbow-mode))
(rainbow-mode)
(global-display-line-numbers-mode t) (global-display-line-numbers-mode t)
(setq ring-bell-function 'ignore) (setq ring-bell-function 'ignore)

View file

@ -36,7 +36,7 @@ monitor=,preferred,auto,1
# Set programs that you use # Set programs that you use
$terminal = kitty $terminal = kitty
$fileManager = kitty -e ranger $fileManager = kitty -e ranger
$menu = rofi -show run $menu = wofi --show drun
$screenie = screenie $screenie = screenie
@ -109,7 +109,7 @@ col.inactive_border = rgba(404040cc)
# https://wiki.hyprland.org/Configuring/Variables/#decoration # https://wiki.hyprland.org/Configuring/Variables/#decoration
decoration { decoration {
rounding = 0 rounding = 12
rounding_power = 2 rounding_power = 2
# Change transparency of focused and unfocused windows # Change transparency of focused and unfocused windows

View file

@ -0,0 +1,21 @@
background #121218
foreground #cef3ff
cursor #ffffff
selection_background #44475a
color0 #000000
color8 #545454
color1 #ff5555
color9 #ff5454
color2 #fa0074
color10 #50fa7b
color3 #7f0a1f
color11 #f0fa8b
color4 #3282ff
color12 #1200f8
color5 #1b3cff
color13 #ff78c5
color6 #0037fc
color14 #8ae9fc
color7 #bbbbbb
color15 #ffffff
selection_foreground #222330

2655
config/kitty/kitty.conf Normal file

File diff suppressed because it is too large Load diff

2718
config/kitty/kitty.conf.bak Normal file

File diff suppressed because it is too large Load diff

2726
config/kitty/kitty.conf~ Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,3 @@
add_newline = false
format = """ format = """
[](#30303E)\ [](#30303E)\
$os\ $os\
@ -40,7 +39,7 @@ style = "bg:#30303E"
disabled = true disabled = true
[directory] [directory]
style = "bg:#f8d87a" style = "fg:#161618 bg:#f8d87a"
format = "[ $path ]($style)" format = "[ $path ]($style)"
truncation_length = 3 truncation_length = 3
truncation_symbol = "…/" truncation_symbol = "…/"

1
config/waybar/.#style.css Symbolic link
View file

@ -0,0 +1 @@
coast@core.397306:1751199772

Binary file not shown.

View file

@ -3,8 +3,8 @@
"layer": "top", "layer": "top",
"position": "top", "position": "top",
"height": 32, "height": 32,
"margin": "4 6 2 6",
"spacing": 4, "spacing": 4,
"margin": "4 6 2 6",
"modules-left": ["hyprland/workspaces"], "modules-left": ["hyprland/workspaces"],
"modules-center": ["clock"], "modules-center": ["clock"],
"modules-right": ["pulseaudio", "cpu", "battery", "tray"], "modules-right": ["pulseaudio", "cpu", "battery", "tray"],

View file

@ -1,35 +1,59 @@
* { * {
all: unset; all: unset;
font-family: "Iosevka Term", "Symbols Nerd Font"; font-family: "Iosevka Term", "Symbols Nerd Font";
font-size: 14px; font-size: 13px;
font-weight: 500; font-weight: 500;
padding-right: 1.5px;
padding-left: 1.5px;
background: transparent;
} }
window#waybar { window#waybar {
background-color: #121218; background-color: #121218;
color: #e0e0e0; color: #e0e0e0;
border-bottom: 1px solid #646496; border-radius: 12px;
margin: 8px; /* pull bar in so corners show properly */
padding: 4px; /* lil inner breathing room */
border: 1px solid #646496;
} }
/* Workspaces */ /* Workspaces */
#workspaces {
border-radius: 8px;
}
#workspaces button { #workspaces button {
color: #6e6a86; color: #5e6a86;
padding: 0 6px; padding: 0 6px;
border-radius: 8px;
margin: 4px;
background: transparent;
border: none;
} }
#workspaces button.active { #workspaces button.active {
color: #ffffff; color: #ffffff;
background: rgba(100, 100, 150, 0.2); background: rgba(100, 100, 150, 0.2);
border: 2px solid #4f4f78;
border-radius: 8px;
} }
#workspaces button.urgent { #workspaces button.urgent {
color: #eb6f92; color: #807fa0;
background: rgba(100, 100, 150, 0.1);
border: 1px dashed #646496;
border-radius: 8px;
} }
/* Modules */ /* Modules */
#clock, #cpu, #battery, #pulseaudio, #tray { #workspaces, #clock, #cpu, #battery, #pulseaudio, #tray {
padding: 0 8px; background-color: rgba(20, 18, 22, 0.2);
margin: 0 2px; margin: 6px;
padding: 2px 8px;
border-radius: 8px;
color: #b8b8d0;
border: 1px solid #30303E;
transition-duration: 120ms;
} }
/* Battery states */ /* Battery states */
@ -50,3 +74,4 @@ window#waybar {
#pulseaudio.muted { #pulseaudio.muted {
color: #6e6a86; color: #6e6a86;
} }