-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b68cf8e
commit 136550b
Showing
25 changed files
with
831 additions
and
261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,227 +1,4 @@ | ||
$carbon: #161616; | ||
$black: #000000; | ||
$white: #ffffff; | ||
$bright_pink: #ee5396; | ||
$green: #42be65; | ||
$dark_grey: #262626; | ||
$cyan: #3ddbd9; | ||
$blue: #33b1ff; | ||
$light_grey: #525252; | ||
$yellow: #ffe97b; | ||
$magenta: #ff7eb6; | ||
@import './scss/colors'; | ||
@import './scss/bar.scss'; | ||
@import './scss/coldx.scss'; | ||
|
||
* { | ||
all: unset; | ||
} | ||
|
||
.bar{ | ||
background-color: $black; | ||
border-radius: 16px; | ||
} | ||
|
||
.bar_ { | ||
font-family:"DaddyTimeMono"; | ||
font-size: 15px; | ||
color: $white; | ||
border-radius: 16px; | ||
background-color: $black; | ||
border: 3px; | ||
border-style: solid; | ||
border-color: $bright_pink; | ||
} | ||
|
||
.workspace-entry { | ||
font-size: 20px; | ||
padding-left: 10px; | ||
color: $white; | ||
} | ||
|
||
.workspace-entry.current { | ||
color: $white; | ||
} | ||
|
||
.time { | ||
padding-right: 10px; | ||
padding-left: 10px; | ||
} | ||
|
||
.bat { | ||
padding-right: 10px; | ||
color: $green; | ||
} | ||
.volume { | ||
padding-right: 10px; | ||
padding-left: 10px; | ||
color: $white; | ||
} | ||
|
||
.volbar trough highlight { | ||
border-radius: 10px; | ||
background-color: $cyan; | ||
|
||
} | ||
|
||
scale trough { | ||
all: unset; | ||
background-color: #22242b; | ||
border-radius: 16px; | ||
min-height: 10px; | ||
min-width: 70px; | ||
margin-left: 10px; | ||
} | ||
|
||
.volume_icon{ | ||
font-size: 25px; | ||
} | ||
|
||
.brightbar trough highlight { | ||
border-radius: 10px; | ||
background-color: $yellow; | ||
} | ||
|
||
.bright_icon { | ||
font-size: 25px; | ||
} | ||
|
||
.backlight { | ||
padding-right: 10px; | ||
padding-left: 10px; | ||
} | ||
|
||
.wifi { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
|
||
.wifi_btn{ | ||
font-size: 25px; | ||
} | ||
|
||
.clock_time_class, .clock_minute_class { | ||
font-size: 23; | ||
} | ||
|
||
.clock_time_sep { | ||
font-size: 20; | ||
} | ||
|
||
// Calendar | ||
.cal { | ||
background-color: $black; | ||
font-size: 18px; | ||
font-weight: normal; | ||
border-radius: 16px; | ||
|
||
.cal-in { | ||
padding: 0px 10px 0px 10px; | ||
color: $white; | ||
border: 3px; | ||
border-color: $bright_pink; | ||
border-style: solid; | ||
border-radius: 16px; | ||
|
||
.cal { | ||
&.highlight { | ||
padding: 20px; | ||
} | ||
|
||
padding: 5px 5px 5px 5px; | ||
margin-left: 10px; | ||
} | ||
} | ||
} | ||
|
||
calender { | ||
color: $bright_pink; | ||
|
||
} | ||
calendar:selected { | ||
color: $bright_pink; | ||
} | ||
|
||
calendar.header { | ||
color: $white; | ||
font-weight: bold; | ||
} | ||
|
||
calendar.button { | ||
color: $white; | ||
} | ||
|
||
calendar.highlight { | ||
color: $white; | ||
font-weight: bold; | ||
} | ||
|
||
calendar:indeterminate { | ||
color: $white; | ||
} | ||
|
||
.batbar { | ||
color: $green; | ||
background-color: $dark_grey; | ||
border-radius: 10px; | ||
} | ||
|
||
.bat { | ||
border-radius: 16px; | ||
margin: 0px 10px 0px 10px; | ||
} | ||
|
||
.iconbat{ | ||
font-size: 25px; | ||
color: $black; | ||
margin: 5px; | ||
} | ||
|
||
|
||
tooltip.background { | ||
background-color: $black; | ||
font-size: 18; | ||
border-radius: 10px; | ||
color: $white; | ||
border: 3px; | ||
border-radius: 16px; | ||
border-color: $bright_pink; | ||
border-style: solid; | ||
} | ||
|
||
tooltip label { | ||
margin: 6px; | ||
} | ||
|
||
.membar { | ||
color: $yellow; | ||
background-color: $dark_grey; | ||
border-radius: 10px; | ||
} | ||
|
||
.mem { | ||
border-radius: 16px; | ||
margin: 0px 10px 0px 10px; | ||
} | ||
|
||
.iconmem{ | ||
font-size: 25px; | ||
color: $black; | ||
margin: 5px; | ||
} | ||
|
||
.separ { | ||
color: $light_grey; | ||
font-weight: bold; | ||
font-size: 22px; | ||
margin: 0px 8px 0px 8px; | ||
} | ||
|
||
.title { | ||
font-size: 18px; | ||
} | ||
|
||
.ws-box { | ||
color: $white; | ||
} | ||
|
||
.ws-icons{ | ||
padding: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
(include "yuck/bar.yuck") | ||
(include "yuck/menu.yuck") | ||
(include "yuck/coldx.yuck") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
## window list | ||
w_ls=" | ||
coldx \ | ||
profile_window \ | ||
power_menu \ | ||
music_window \ | ||
cpu_window \ | ||
launcher_window \ | ||
qoutes_window \ | ||
" | ||
## Run eww daemon if not running already | ||
if [[ ! `pidof eww` ]]; then | ||
eww daemon | ||
sleep 1 | ||
fi | ||
|
||
|
||
## Open widgets | ||
run_eww() { | ||
eww open-many --toggle $w_ls | ||
} | ||
|
||
run_eww |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.