Skip to content

Commit 6fbdb0e

Browse files
FIXES: Added SDDM themes (finally!), Fixed cursors, Fixed Shortcut problem, Fixed Rofi Theme: Test Ready
1 parent 924a41e commit 6fbdb0e

File tree

173 files changed

+5605
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+5605
-16
lines changed

etc/sddm.conf.d/kde_settings.conf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[Autologin]
2+
Relogin=false
3+
Session=awesome
4+
#User=
5+
6+
[General]
7+
HaltCommand=/usr/bin/systemctl poweroff
8+
RebootCommand=/usr/bin/systemctl reboot
9+
10+
[Theme]
11+
Current=calinix-redrock
12+
13+
[Users]
14+
MaximumUid=60000
15+
MinimumUid=1000
16+

etc/skel/.config/awesome/configuration/apps.lua

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,9 @@ return {
3636
-- Default quake terminal
3737
quake = 'alacritty --name QuakeTerminal',
3838
-- Default rofi global menu
39-
rofi_global = 'rofi -dpi ' .. screen.primary.dpi ..
40-
' -show "Global Search" -modi "Global Search":' .. config_dir ..
41-
'/configuration/rofi/global/rofi-spotlight.sh' ..
42-
' -theme ' .. config_dir ..
43-
'/configuration/rofi/global/rofi.rasi',
39+
rofi_global = 'rofi -combi-modi window,drun -show combi -modi combi',
4440
-- Default app menu
45-
rofi_appmenu = 'rofi -dpi ' .. screen.primary.dpi ..
46-
' -show drun -theme ' .. config_dir ..
47-
'/configuration/rofi/appmenu/rofi.rasi'
41+
rofi_appmenu = 'rofi -combi-modi window,drun -show combi -modi combi'
4842

4943
-- You can add more default applications here
5044
},

etc/skel/.config/awesome/configuration/keys/global.lua

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -324,14 +324,6 @@ local global_keys = awful.util.table.join(
324324
end,
325325
{description = 'area/selected screenshot', group = 'Utility'}
326326
),
327-
awful.key(
328-
{modkey},
329-
'x',
330-
function()
331-
awesome.emit_signal('widget::blur:toggle')
332-
end,
333-
{description = 'toggle blur effects', group = 'Utility'}
334-
),
335327
awful.key(
336328
{modkey},
337329
']',

etc/skel/.config/rofi/config.rasi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
//@theme "/usr/share/rofi/themes/Arc-Dark-Botticelli-transparent.rasi"
2+
@theme "/usr/share/rofi/themes/fancy.rasi"

usr/share/rofi/themes/fancy.rasi

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
/*******************************************************************************
2+
* ROFI Color theme
3+
* Theme designed to show off moving, packing of widgets, icons and more.
4+
* User: DaveDavenport
5+
* Copyright: DaveDavenport
6+
********************************************************************************/
7+
* {
8+
selected-normal-foreground: rgba ( 248, 248, 242, 100 % );
9+
foreground: rgba ( 248, 248, 242, 100 % );
10+
normal-foreground: @foreground;
11+
alternate-normal-background: rgba ( 39, 40, 34, 0 % );
12+
selected-urgent-foreground: rgba ( 248, 248, 242, 100 % );
13+
urgent-foreground: rgba ( 249, 38, 114, 100 % );
14+
alternate-urgent-background: rgba ( 39, 40, 34, 0 % );
15+
active-foreground: rgba ( 166, 226, 42, 100 % );
16+
lightbg: rgba ( 238, 232, 213, 100 % );
17+
selected-active-foreground: rgba ( 166, 226, 42, 100 % );
18+
alternate-active-background: rgba ( 39, 40, 34, 0 % );
19+
background: rgba ( 39, 40, 34, 93 % );
20+
bordercolor: rgba ( 0, 43, 54, 100 % );
21+
alternate-normal-foreground: @foreground;
22+
normal-background: rgba ( 39, 40, 34, 0 % );
23+
selected-normal-background: rgba ( 20, 20, 17, 100 % );
24+
separatorcolor: rgba ( 230, 219, 116, 100 % );
25+
urgent-background: rgba ( 39, 40, 34, 0 % );
26+
selected-urgent-background: rgba ( 249, 38, 114, 100 % );
27+
alternate-urgent-foreground: @urgent-foreground;
28+
background-color: transparent;
29+
alternate-active-foreground: @active-foreground;
30+
active-background: rgba ( 39, 40, 34, 0 % );
31+
selected-active-background: rgba ( 20, 20, 17, 100 % );
32+
}
33+
window {
34+
border-color: black/30%;
35+
background-color: darkgrey/ 95%;
36+
border: 2px;
37+
padding: 0px;
38+
border-radius: 10px;
39+
padding: 0.5em;
40+
spacing: 0px;
41+
42+
anchor: north;
43+
location: center;
44+
y-offset: -15.5em;
45+
46+
47+
children: [ inputbar, message, wrapper-mode-switcher, listview , pagerbox ];
48+
}
49+
50+
51+
pagerbox {
52+
expand: false;
53+
orientation: horizontal;
54+
children: [ icon-left, pad, icon-right ];
55+
}
56+
57+
pad {
58+
expand: true;
59+
}
60+
icon-left {
61+
expand: false;
62+
filename: "go-previous";
63+
size: 24;
64+
vertical-align: 0.5;
65+
action: "kb-page-prev";
66+
}
67+
68+
icon-right {
69+
expand: false;
70+
filename: "go-next";
71+
size: 24;
72+
vertical-align: 0.5;
73+
action: "kb-page-next";
74+
}
75+
76+
77+
78+
wrapper-mode-switcher {
79+
orientation: horizontal;
80+
81+
expand: false;
82+
spacing: 0;
83+
children: [ icon-ms-ic1, mode-switcher, icon-ms-ic2 ];
84+
}
85+
icon-ms-ic1 {
86+
filename: "go-previous";
87+
}
88+
icon-ms-ic2 {
89+
filename: "go-next";
90+
}
91+
icon-ms-ic1,icon-ms-ic2 {
92+
size: 16;
93+
vertical-align: 0.8;
94+
expand: false;
95+
border: 0px 0px 2px ;
96+
border-color: @separatorcolor;
97+
}
98+
99+
mode-switcher {
100+
border: 0px;
101+
spacing: 0px;
102+
expand: true;
103+
}
104+
105+
button {
106+
padding: 2px;
107+
border: 0px 0px 2px ;
108+
border-color: @separatorcolor;
109+
}
110+
button selected.normal {
111+
text-color: white;
112+
background-color: black/50%;
113+
114+
border: 2px 2px 0px ;
115+
border-color: @separatorcolor;
116+
border-radius: 10px 10px 0 0;
117+
}
118+
119+
120+
sidebar {
121+
expand: false;
122+
}
123+
124+
message {
125+
text-color: black;
126+
background-color: lightgrey / 50%;
127+
border-color: grey;
128+
border: 2px;
129+
border-radius: 5px;
130+
padding: 4px;
131+
margin: 0px 0px 0.5em;
132+
expand: false;
133+
}
134+
135+
listview {
136+
spacing: 2px ;
137+
scrollbar: false;
138+
padding: 0.5em;
139+
background-color: black/50%;
140+
141+
expand: true;
142+
border: 0px 2px 2px ;
143+
border-color: @separatorcolor;
144+
border-radius: 0px 0px 10px 10px;
145+
}
146+
element {
147+
border: 1;
148+
border-color: transparent;
149+
padding: 4px ;
150+
}
151+
element-text {
152+
background-color: inherit;
153+
text-color: inherit;
154+
}
155+
element.normal.normal {
156+
background-color: @normal-background;
157+
text-color: @normal-foreground;
158+
}
159+
element.normal.urgent {
160+
background-color: @urgent-background;
161+
text-color: @urgent-foreground;
162+
}
163+
element.normal.active {
164+
background-color: @active-background;
165+
text-color: @active-foreground;
166+
}
167+
element.selected.normal {
168+
border: 1;
169+
border-color: grey/80%;
170+
background-color: @selected-normal-background;
171+
text-color: @selected-normal-foreground;
172+
}
173+
element.selected.urgent {
174+
border: 1;
175+
border-color: grey/80%;
176+
background-color: @selected-urgent-background;
177+
text-color: @selected-urgent-foreground;
178+
}
179+
element.selected.active {
180+
border: 1;
181+
border-color: grey/80%;
182+
background-color: @selected-active-background;
183+
text-color: @selected-active-foreground;
184+
}
185+
element.alternate.normal {
186+
background-color: @alternate-normal-background;
187+
text-color: @alternate-normal-foreground;
188+
}
189+
element.alternate.urgent {
190+
background-color: @alternate-urgent-background;
191+
text-color: @alternate-urgent-foreground;
192+
}
193+
element.alternate.active {
194+
background-color: @alternate-active-background;
195+
text-color: @alternate-active-foreground;
196+
}
197+
scrollbar {
198+
width: 4px ;
199+
border: 0;
200+
handle-width: 8px ;
201+
padding: 0;
202+
}
203+
sidebar {
204+
border: 2px 0px 0px ;
205+
border-color: @separatorcolor;
206+
}
207+
inputbar {
208+
text-color: @normal-foreground;
209+
padding: 0px 0px 0.5em;
210+
}
211+
case-indicator {
212+
text-color: @normal-foreground;
213+
}
214+
215+
wrapper {
216+
orientation: horizontal;
217+
text-color: black;
218+
background-color: white / 70%;
219+
border-color: grey;
220+
221+
border: 2px;
222+
border-radius: 5px;
223+
padding: 4px;
224+
children: [ icon-k, entry, icon-paste];
225+
spacing: 0.5em;
226+
}
227+
button-paste {
228+
expand: false;
229+
str: "gtk-paste";
230+
size: 24;
231+
vertical-align: 0.5;
232+
action: "kb-cancel";
233+
}
234+
icon-paste {
235+
expand: false;
236+
filename: "gtk-paste";
237+
size: 24;
238+
vertical-align: 0.5;
239+
action: "kb-primary-paste";
240+
}
241+
icon-k {
242+
expand: false;
243+
filename: "input-keyboard";
244+
size: 24;
245+
vertical-align: 0.5;
246+
247+
}
248+
entry {
249+
vertical-align: 0.5;
250+
}
251+
inputbar {
252+
children: [ wrapper ];
253+
}
254+
255+
error-message {
256+
background-color: darkred/10%;
257+
border-color: darkred;
258+
border-radius: 10px;
259+
border: 2px;
260+
padding: 0.5em;
261+
262+
}
263+

0 commit comments

Comments
 (0)