Add kitty, rofi, zsh, hyprland, clang_format to configs

This commit is contained in:
Thraix
2026-05-19 22:47:43 +02:00
parent aecdb34116
commit 8e28f60c91
14 changed files with 1372 additions and 5 deletions
+22
View File
@@ -0,0 +1,22 @@
* {
white: #f8bf9f;
whiteAlt: #f6a678;
black: #5f2606;
blackAlt: #863608;
red: #f78787;
redAlt: #770707;
green: #87f787;
greenAlt: #077707;
yellow: #f7f787;
yellowAlt: #777707;
blue: #8787f7;
blueAlt: #070777;
purple: #f787f7;
purpleAlt: #770777;
cyan: #87f7f7;
cyanAlt: #077777;
foreground: #f8bf9f;
foregroundAlt: #f6a678;
background: #5f2606;
backgroundAlt: #863608;
}
+82
View File
@@ -0,0 +1,82 @@
@import "colors.rasi"
* {
background-color: @background;
border-color: @background;
spacing: 2;
}
configuration
{
hover-select: true;
me-select-entry: "";
me-accept-entry: [ MousePrimary, MouseSecondary, MouseDPrimary ];
kb-cancel: "Escape,MousePrimary";
}
#window {
location: North West;
background-color: @background;
border-color: @foreground;
border: 1;
padding: 2.5ch;
y-offset: 0px;
x-offset: 10px;
border-radius: 10px;
}
#mainbox {
border: 0;
padding: 0;
background-color: transparent;
}
entry {
background-color: transparent;
}
listview {
background-color: transparent;
}
element {
padding: 2px 7px;
border-radius: 10px;
}
prompt {
text-color: @foreground;
padding: 0 6px 0 0;
}
entry {
text-color: @foreground;
placeholder-color: @foregroundAlt;
padding: 0 6px 0 0;
}
textbox-prompt-colon {
text-color: @foreground;
padding: 0 6px 0 0;
}
element-text {
text-color: inherit;
}
element selected.normal {
background-color: @foreground;
text-color: @background;
}
element normal.normal {
background-color: @background;
text-color: @foreground;
}
element alternate.normal {
background-color: @backgroundAlt;
text-color: @foreground;
}
scrollbar {
background-color: @background;
handle-color: @foreground;
}
+171
View File
@@ -0,0 +1,171 @@
/**
*
* Author : Aditya Shakya (adi1090x)
* Github : @adi1090x
*
* Rofi Theme File
* Rofi Version: 1.7.3
**/
/*****----- Configuration -----*****/
configuration {
show-icons: false;
hover-select: true;
me-select-entry: "";
me-accept-entry: [ MousePrimary, MouseSecondary, MouseDPrimary ];
kb-cancel: "Escape,MousePrimary";
}
/*****----- Global Properties -----*****/
@import "~/.config/rofi/colors.rasi"
/*****----- Main Window -----*****/
window {
/* properties for window widget */
transparency: "real";
location: North East;
anchor: center;
fullscreen: false;
width: 440px;
x-offset: -10px;
y-offset: 0px;
/* properties for all widgets */
enabled: true;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 10px;
border-color: @foreground;
cursor: "default";
background-color: @background;
}
/*****----- Main Box -----*****/
mainbox {
enabled: true;
spacing: 10px;
margin: 0px;
padding: 10px;
border: 0px solid;
border-radius: 0px;
border-color: @foreground;
background-color: transparent;
children: [ "inputbar", "message", "listview" ];
}
/*****----- Inputbar -----*****/
inputbar {
enabled: false;
spacing: 10px;
margin: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: @foreground;
background-color: transparent;
text-color: @foreground;
children: [ "textbox-prompt-colon", dummy, "prompt"];
}
dummy {
background-color: transparent;
}
textbox-prompt-colon {
enabled: false;
expand: false;
str: "";
padding: 0px 0px;
border-radius: 4px;
background-color: @red;
text-color: @background;
}
prompt {
enabled: false;
padding: 0px;
border-radius: 4px;
background-color: @foreground;
text-color: @background;
}
/*****----- Message -----*****/
message {
enabled: true;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 4px;
border-color: @foreground;
background-color: @background;
text-color: @foreground;
}
textbox {
background-color: inherit;
text-color: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
placeholder-color: @foreground;
blink: true;
markup: true;
}
error-message {
padding: 10px;
border: 0px solid;
border-radius: 0px;
border-color: @foreground;
background-color: @background;
text-color: @foreground;
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 3;
lines: 2;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 10px;
margin: 0px;
padding: 0px;
border: 0px solid;
border-radius: 0px;
border-color: @foreground;
background-color: transparent;
text-color: @foreground;
cursor: "default";
}
/*****----- Elements -----*****/
element {
enabled: true;
spacing: 0px;
margin: 0px;
padding: 10px;
border: 0px solid;
border-radius: 4px;
border-color: @foreground;
background-color: @backgroundAlt;
text-color: @foreground;
cursor: pointer;
}
element-text {
background-color: transparent;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
}
element selected.normal {
border: 0px 2px 0px 2px;
border-radius: 4px;
background-color: @foreground;
text-color: @background;
}