kekl
This commit is contained in:
@ -16,6 +16,8 @@
|
|||||||
".wp/gruvbox-dark-blue.png".source = ./raw/wp/gruvbox-dark-blue.png;
|
".wp/gruvbox-dark-blue.png".source = ./raw/wp/gruvbox-dark-blue.png;
|
||||||
".wp/anime_blue.png".source = ./raw/wp/anime_blue.png;
|
".wp/anime_blue.png".source = ./raw/wp/anime_blue.png;
|
||||||
".wp/fuji.png".source = ./raw/wp/fuji.png;
|
".wp/fuji.png".source = ./raw/wp/fuji.png;
|
||||||
|
".wp/orbit.png".source = ./raw/wp/orbit.png;
|
||||||
|
".wp/hollow_knight.png".source = ./raw/wp/hollow_knight.png;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -55,25 +55,10 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
auto_update = true;
|
auto_update = true;
|
||||||
blacklist = [ ];
|
|
||||||
client_id = "1157438221865717891";
|
|
||||||
debounce_timeout = 10;
|
|
||||||
editing_text = "Editing...";
|
|
||||||
enable_line_number = false;
|
|
||||||
file_assets = null;
|
|
||||||
file_explorer_text = "Browsing...";
|
|
||||||
git_commit_text = "Committing changes...";
|
|
||||||
global_timer = true;
|
global_timer = true;
|
||||||
line_number_text = "Line %s out of %s";
|
|
||||||
log_level = null;
|
log_level = null;
|
||||||
logo = "auto";
|
|
||||||
logo_tooltip = null;
|
|
||||||
main_image = "language";
|
|
||||||
plugin_manager_text = "Managing plugins...";
|
|
||||||
reading_text = "Reading...";
|
|
||||||
show_time = true;
|
show_time = true;
|
||||||
terminal_text = "Using a 1337 Terminal...";
|
workspace_text = "WS: %s";
|
||||||
workspace_text = "Working on %s";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
font = {
|
font = {
|
||||||
|
size = 18;
|
||||||
normal = {
|
normal = {
|
||||||
family = "FantasqueSansMNerdFont";
|
family = "FantasqueSansMNerdFont";
|
||||||
};
|
};
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
home = {
|
home = {
|
||||||
file = {
|
file = {
|
||||||
".config/rofi/rofi.rasi".source = ./raw/rofi.rasi;
|
".config/rofi/config.rasi".source = ./raw/config.rasi;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
77
modules/nix/sway/raw/config.rasi
Normal file
77
modules/nix/sway/raw/config.rasi
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
configuration {
|
||||||
|
display-drun: "Applications:";
|
||||||
|
drun-display-format: "{icon} {name}";
|
||||||
|
font: "JetBrainsMono Nerd Font Medium 10";
|
||||||
|
show-icons: true;
|
||||||
|
modi: "drun";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
* {
|
||||||
|
|
||||||
|
opacity: 0.5;
|
||||||
|
color0: #39305320;
|
||||||
|
color1: #494d6420;
|
||||||
|
color3: #d8dee9;
|
||||||
|
color4: #7b68ee;
|
||||||
|
color5: #cbe3e7;
|
||||||
|
|
||||||
|
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @color3;
|
||||||
|
accent-color: @color5;
|
||||||
|
|
||||||
|
margin: 0px;
|
||||||
|
border: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
spacing: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
background-color: @color0;
|
||||||
|
border-color: @accent-color;
|
||||||
|
|
||||||
|
width: 50%;
|
||||||
|
border: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
padding: 10px 12px;
|
||||||
|
spacing: 12px;
|
||||||
|
children: [ prompt, entry ];
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt, entry, element-text, element-icon {
|
||||||
|
vertical-align: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
text-color: @accent-color;
|
||||||
|
enabled: true;
|
||||||
|
text-color: @color4;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
lines: 8;
|
||||||
|
columns: 2;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
padding: 8px;
|
||||||
|
spacing: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected {
|
||||||
|
text-color: @color4;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
size: 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
@ -1 +0,0 @@
|
|||||||
|
|
@ -15,14 +15,14 @@
|
|||||||
config = rec {
|
config = rec {
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
terminal = "alacritty";
|
terminal = "alacritty";
|
||||||
menu = "${pkgs.rofi}/bin/rofi -show drun -c ~/.config/rofi/rofi.rasi";
|
menu = "${pkgs.rofi}/bin/rofi -show run -c ~/.config/rofi/config.rasi";
|
||||||
bars = [
|
bars = [
|
||||||
{
|
{
|
||||||
command = "wayff";
|
command = "wayff";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
startup = [
|
startup = [
|
||||||
{ command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/fuji.png"; }
|
{ command = "${pkgs.swaybg}/bin/swaybg -i $HOME/.wp/orbit.png"; }
|
||||||
];
|
];
|
||||||
gaps = {
|
gaps = {
|
||||||
outer = 5;
|
outer = 5;
|
||||||
@ -99,7 +99,7 @@
|
|||||||
corner_radius 12
|
corner_radius 12
|
||||||
blur_radius 7
|
blur_radius 7
|
||||||
blur_passes 4
|
blur_passes 4
|
||||||
default_dim_inactive 0.4
|
default_dim_inactive 0.1
|
||||||
for_window [app_id="Alacritty"] blur enable
|
for_window [app_id="Alacritty"] blur enable
|
||||||
for_window [app_id="alacritty"] blur enable
|
for_window [app_id="alacritty"] blur enable
|
||||||
|
|
||||||
|
BIN
modules/raw/wp/hollow_knight.png
Normal file
BIN
modules/raw/wp/hollow_knight.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 754 KiB |
BIN
modules/raw/wp/orbit.png
Normal file
BIN
modules/raw/wp/orbit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 964 KiB |
Reference in New Issue
Block a user