Suckless Submodules & New Rofi Theme

- Add dwm as submodule
- Add slock as submodule
- Add slstatus as submodule
- Add new rofi theme based on slate with dracula theming
- Add new rofi theme based on sidetab with dracula theming
This commit is contained in:
Sravan Balaji 2020-08-01 21:55:48 -04:00
parent 9dbfd80712
commit 0608996875
8 changed files with 195 additions and 2 deletions

1
.config/dwm Submodule

@ -0,0 +1 @@
Subproject commit 4460e3cc91e2d34d15f1787de84f4d804b6e8f3b

View File

@ -143,4 +143,4 @@ configuration {
/* me-accept-entry: "MouseDPrimary";*/
/* me-accept-custom: "Control+MouseDPrimary";*/
}
@import "./themes/dracula.rasi"
@import "./themes/sidetab-dracula.rasi"

View File

@ -1,5 +1,5 @@
/**
* ROFI Color theme
* ROFI Color theme: dmenu-dracula
* User: balajsra
* Copyright: Sravan Balaji
*/

View File

@ -0,0 +1,132 @@
/**
* ROFI Color theme: dmenu-dracula
* User: balajsra
* Copyright: deadguy & Sravan Balaji
*/
configuration {
display-drun: "Activate";
display-run: "Execute";
display-window: "Window";
show-icons: true;
sidebar-mode: true;
}
* {
background-color: #282a36;
text-color: #f8f8f2;
selbg: #bd93f9;
actbg: #44475a;
urgbg: #ff5555;
winbg: #50fa7b;
selected-normal-foreground: @winbg;
normal-foreground: @text-color;
selected-normal-background: @actbg;
normal-background: @background-color;
selected-urgent-foreground: @background-color;
urgent-foreground: @text-color;
selected-urgent-background: @urgbg;
urgent-background: @background-color;
selected-active-foreground: @winbg;
active-foreground: @text-color;
selected-active-background: @actbg;
active-background: @selbg;
line-margin: 2;
line-padding: 2;
separator-style: "none";
hide-scrollbar: "true";
margin: 0;
padding: 0;
}
window {
location: west;
anchor: west;
height: 100%;
width: 22%;
orientation: horizontal;
children: [mainbox];
}
mainbox {
spacing: 0.8em;
children: [ entry,listview,mode-switcher ];
}
button { padding: 5px 2px; }
button selected {
background-color: @active-background;
text-color: @background-color;
}
inputbar {
padding: 5px;
spacing: 5px;
}
listview {
spacing: 0.5em;
dynamic: false;
cycle: true;
}
element { padding: 10px; }
entry {
expand: false;
text-color: @normal-foreground;
vertical-align: 1;
padding: 5px;
}
element normal.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element normal.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element normal.active {
background-color: @active-background;
text-color: @active-foreground;
}
element selected.normal {
background-color: @selected-normal-background;
text-color: @selected-normal-foreground;
border: 0 5px solid 0 0;
border-color: @active-background;
}
element selected.urgent {
background-color: @selected-urgent-background;
text-color: @selected-urgent-foreground;
}
element selected.active {
background-color: @selected-active-background;
text-color: @selected-active-foreground;
}
element alternate.normal {
background-color: @normal-background;
text-color: @normal-foreground;
}
element alternate.urgent {
background-color: @urgent-background;
text-color: @urgent-foreground;
}
element alternate.active {
background-color: @active-background;
text-color: @active-foreground;
}

View File

@ -0,0 +1,49 @@
/**
* ROFI Color theme: dmenu-dracula
* User: balajsra
* Copyright: Sravan Balaji
*/
* {
background-color: #282a36;
border-color: #bd93f9;
text-color: #f8f8f2;
spacing: 0;
width: 1024px;
}
inputbar {
border: 0 0 1px 0; /* top right bottom left */
children: [prompt,entry];
}
prompt {
padding: 16px;
border: 2px 1px 0 2px; /* top right bottom left */
}
textbox {
background-color: #282a36;
border: 0 0 1px 0; /* top right bottom left */
border-color: #bd93f9;
padding: 8px 16px 8px 16px; /* top right bottom left */
}
entry {
border: 2px 2px 0px 0; /* top right bottom left */
padding: 16px;
}
listview {
cycle: true;
margin: 0 0 0px 0; /* top right bottom left */
scrollbar: true;
}
element {
border: 0 2px 1px 2px; /* top right bottom left */
padding: 16px;
}
element selected {
background-color: #44475a;
}

1
.config/slock Submodule

@ -0,0 +1 @@
Subproject commit 76df5beac41980d58811f844249e2af6f577114f

1
.config/slstatus Submodule

@ -0,0 +1 @@
Subproject commit a250d90ce69db506824114408938dd91ffe21dd4

9
.gitmodules vendored
View File

@ -4,3 +4,12 @@
[submodule ".themes/Dracula"]
path = .themes/Dracula
url = git@github.com:dracula/gtk.git
[submodule ".config/dwm"]
path = .config/dwm
url = https://github.com/balajsra/dwm.git
[submodule ".config/slstatus"]
path = .config/slstatus
url = https://github.com/balajsra/slstatus.git
[submodule ".config/slock"]
path = .config/slock
url = https://github.com/balajsra/slock.git