Initialize repository, adding makefile, packages list, config and colorscheme for vim, config for sway and wofi, scripts for automatic loading of sway via systemd.

This commit is contained in:
Ananke 2024-04-25 20:22:58 +02:00
commit 57bdfa3aff
15 changed files with 765 additions and 0 deletions

48
wofistyles.css Normal file
View file

@ -0,0 +1,48 @@
/* Notes below regarding the purpose of each setting is true to the best of my knowledge. */
#input {
margin: 10px; /* how much padding there is around the input box */
border: none; /* border around the input box */
background-color: #453e3d; /* background color of the text input box itself */
color: #ffffff; /* text color as you type inside the input box */
}
#inner-box {
margin: 5px;
border: none; /* horizontal bar that appears above the search results */
background-color: #1f1f1f; /* background color behind the search results */
color: #ffffff; /* text color of each search result */
}
#outer-box {
margin: 5px; /* margin between the outer edges of the main window and its contents inside */
border: none /* border around all the internal window components */
background-color: #1f1f1f; /* background color of entire inner window */
}
#text {
margin: 5px;
border: none; /* border around each individual item within the search results */
background-color: trans; /* background behind each individual item within the search results */
color: ffffff;
}
/* Remove the search icon */
#input > image.left {
-gtk-icon-transform:scaleX(0);
}
#scroll {
margin: 5px;
border: 2px solid #1f1f1f;
background-color: #1f1f1f; /* background color behind the search slider */
}
window {
margin: 15px;
border: 3px solid green; /* border around the entire window */
background-color: #1f1f1f;
}