This commit is contained in:
ksyasuda 2021-11-03 01:14:21 -07:00
parent 2bada90e42
commit 8eb9630475
26 changed files with 1861 additions and 0 deletions

146
.gitignore vendored Normal file
View File

@ -0,0 +1,146 @@
# Byte-compiled / optimized / DLL files
.git
.idea
.vscode
eww/.coverart
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the
# code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in
# version control.
# However, in case of collaboration, if having platform-specific dependencies
# or dependencies
# having no cross-platform support, pipenv may install dependencies that don't
# work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/

BIN
eww/.coverart/cover.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

377
eww/eww.scss Normal file
View File

@ -0,0 +1,377 @@
/** Global *******************************************/
*{
all: unset;
font-family: feather;
font-family: Iosevka;
}
/** Background ***************************************/
.bg {
background-image: url("images/bg.png");
background-color: #474D59;
opacity: 1;
}
/** Generic window ***********************************/
.genwin {
background-color: #2E3440;
border-radius: 16px;
}
/** Profile ******************************************/
.face {
background-size: 200px;
min-height: 200px;
min-width: 200px;
margin: 65px 0px 0px 0px;
border-radius: 100%;
}
.fullname {
color: #D46389;
font-size : 30px;
font-weight : bold;
}
.username {
color: #8FBCBB;
font-size : 22px;
font-weight : bold;
margin : -15px 0px 0px 0px;
}
/** System ********************************************/
.iconcpu, .iconmem, .iconbright, .iconbat {
font-size : 32px;
font-weight : normal;
}
.iconcpu {
color: #BF616A;
}
.iconmem {
color: #A3BE8C;
}
.iconbright {
color: #EBCB8B;
}
.iconbat {
color: #88C0D0;
}
.cpu_bar, .mem_bar, .bright_bar, .bat_bar, scale trough {
all: unset;
background-color: #3A404C;
border-radius: 16px;
min-height: 28px;
min-width: 240px;
}
.cpu_bar, .mem_bar, .bright_bar, .bat_bar, scale trough highlight {
all: unset;
border-radius: 16px;
}
.cpu_bar scale trough highlight {
background-color: #BF616A;
}
.mem_bar scale trough highlight {
background-color: #A3BE8C;
}
.bright_bar scale trough highlight {
background-color: #EBCB8B;
}
.bat_bar scale trough highlight {
background-color: #88C0D0;
}
/** Clock ********************************************/
.time_hour, .time_min {
color: #81A1C1;
font-size : 70px;
font-weight : bold;
}
.time_hour {
margin : 20px 0px 0px 25px;
}
.time_min {
margin : 0px 0px 10px 0px;
}
.time_mer {
color: #A3BE8C;
font-size : 40px;
font-weight : bold;
margin : 20px 0px 0px 0px;
}
.time_day {
color: #EBCB8B;
font-size : 30px;
font-weight : normal;
margin : 0px 0px 0px 25px;
}
/** Uptime ********************************************/
.icontimer {
color: #B48EAD;
font-size : 90px;
font-weight : normal;
}
.uphour {
color: #E5E9F0;
font-size : 42px;
font-weight : bold;
}
.upmin {
color: #E5E9F0;
font-size : 32px;
font-weight : bold;
}
/** Music ***************************************/
.album_art {
background-size: 240px;
min-height: 240px;
min-width: 240px;
margin: 20px;
border-radius: 14px;
}
.song {
color: #8FBCBB;
font-size : 24px;
font-weight : bold;
margin : 40px 0px 0px 0px;
}
.artist {
color: #EBCB8B;
font-size : 16px;
font-weight : normal;
margin : 0px 0px 15px 0px;
}
.btn_prev, .btn_play, .btn_next {
font-family: Iosevka Nerd Font;
}
.btn_prev {
color: #EBCB8B;
font-size : 32px;
font-weight : normal;
}
.btn_play {
color: #A3BE8C;
font-size : 48px;
font-weight : bold;
}
.btn_next {
color: #EBCB8B;
font-size : 32px;
font-weight : normal;
}
.music_bar scale trough highlight {
all: unset;
background-color: #B48EAD;
border-radius: 8px;
}
.music_bar scale trough {
all: unset;
background-color: #3A404C;
border-radius: 8px;
min-height: 20px;
min-width: 310px;
margin : 10px 0px 0px 0px;
}
/** Weather ***************************************/
.iconweather {
font-family: Iosevka Nerd Font;
font-size : 120px;
font-weight : normal;
margin : 15px 0px 0px 30px;
}
.label_temp {
color : #A6D1DD;
font-size : 80px;
font-weight : bold;
margin : -15px 30px 0px 0px;
}
.label_stat {
color : #BF616A;
font-size : 38px;
font-weight : bold;
}
.label_quote {
color : #E5E5E5;
font-size : 18px;
font-weight : normal;
}
/** Applications ***************************************/
.appbox {
margin : 15px 0px 0px 25px;
}
.app_fox, .app_telegram, .app_discord, .app_terminal,
.app_files, .app_geany, .app_code, .app_gimp, .app_vbox {
background-repeat: no-repeat;
background-size: 64px;
min-height: 64px;
min-width: 64px;
margin: 8px 8px 0px 8px;
}
.app_fox {}
.app_telegram {}
.app_discord {}
.app_terminal {}
.app_files {}
.app_geany {}
.app_code {}
.app_gimp {}
.app_vbox {}
/** Links ***************************************/
.iconweb, .iconmail {
color: #FFFFFF;
font-family: Iosevka Nerd Font;
font-size : 70px;
font-weight : normal;
}
.iconmail {
color: #DF584E;
}
.github {
background-color: #24292E;
border-radius: 16px;
}
.reddit {
background-color: #E46231;
border-radius: 16px;
}
.twitter {
background-color: #61AAD6;
border-radius: 16px;
}
.youtube {
background-color: #DF584E;
border-radius: 16px;
}
.mail {
background-color: #FFFFFF;
border-radius: 16px;
}
.mailbox {
background-color: #E5E5E5;
border-radius: 10px;
margin: 48px 0px 48px 0px;
}
.label_mails {
color: #404040;
font-size : 32px;
font-weight : bold;
margin: 0px 12px 0px 12px;
}
/** Power buttons ***************************************/
.btn_logout, .btn_sleep, .btn_reboot, .btn_poweroff {
font-size : 48px;
font-weight : bold;
}
.btn_logout {
color: #BF616A;
}
.btn_sleep {
color: #A3BE8C;
}
.btn_reboot {
color: #EBCB8B;
}
.btn_poweroff {
color: #88C0D0;
}
/** Home folders ***************************************/
.hddbox {
background-color: #3A404C;
border-radius: 10px;
margin : 15px;
}
.hddicon {
color: #81A1C1;
font-family: Iosevka Nerd Font;
font-size : 70px;
font-weight : normal;
margin : 25px 20px 25px 40px;
}
.hdd_label {
color: #E5E9F0;
font-size : 48px;
font-weight : bold;
margin : 0px 0px 0px 15px;
}
.fs_sep {
color: #2E3440;
font-size : 36px;
font-weight : bold;
}
.iconfolder1, .iconfolder2, .iconfolder3, .iconfolder4, .iconfolder5, .iconfolder6 {
font-family: Iosevka Nerd Font;
font-size : 32px;
font-weight : normal;
margin : 0px 0px 0px 75px;
}
.iconfolder1 {
color: #BF616A;
}
.iconfolder2 {
color: #A3BE8C;
}
.iconfolder3 {
color: #EBCB8B;
}
.iconfolder4 {
color: #81A1C1;
}
.iconfolder5 {
color: #B48EAD;
}
.iconfolder6 {
color: #88C0D0;
}
.label_folder1, .label_folder2, .label_folder3, .label_folder4, .label_folder5, .label_folder6 {
font-size : 22px;
font-weight : normal;
margin : 0px 0px 0px 30px;
}
.label_folder1 {
color: #BF616A;
}
.label_folder2 {
color: #A3BE8C;
}
.label_folder3 {
color: #EBCB8B;
}
.label_folder4 {
color: #81A1C1;
}
.label_folder5 {
color: #B48EAD;
}
.label_folder6 {
color: #88C0D0;
}
/** EOF *************************************************/

433
eww/eww.xml Normal file
View File

@ -0,0 +1,433 @@
<!-- **
** Widgets config for EWW
** Created by : @adi1090x
** -->
<eww>
<variables>
<!-- Profile vars -->
<var name="IMAGE">images/profile.jpg</var>
<var name="NAME">YOUR NAME</var>
<script-var name="UNAME" interval="5m">whoami</script-var>
<!-- System vars -->
<script-var name="HOST" interval="5s">hostname</script-var>
<script-var name="CPU_USAGE" interval="1s">~/.config/eww/scripts/sys_info --cpu</script-var>
<script-var name="MEM_USAGE" interval="1s">~/.config/eww/scripts/sys_info --mem</script-var>
<script-var name="BLIGHT" interval="1s">~/.config/eww/scripts/sys_info --blight</script-var>
<script-var name="BATTERY" interval="5s">~/.config/eww/scripts/sys_info --bat</script-var>
<!-- Time vars -->
<script-var name="HOUR" interval="5s">date +"%I"</script-var>
<script-var name="MIN" interval="5s">date +"%M"</script-var>
<script-var name="MER" interval="5s">date +"%p"</script-var>
<script-var name="DAY" interval="5s">date +"%A"</script-var>
<!-- Uptime vars -->
<script-var name="UPHOUR" interval="5s">uptime -p | awk '{print $2 " " $3}' | sed 's/,//g'</script-var>
<script-var name="UPMIN" interval="5s">uptime -p | awk '{print $4 " " $5}'</script-var>
<!-- Music vars -->
<script-var name="SONG" interval="1s">~/.config/eww/scripts/music_info --song</script-var>
<script-var name="ARTIST" interval="1s">~/.config/eww/scripts/music_info --artist</script-var>
<script-var name="STATUS" interval="1s">~/.config/eww/scripts/music_info --status</script-var>
<script-var name="CURRENT" interval="1s">~/.config/eww/scripts/music_info --time</script-var>
<script-var name="COVER" interval="1s">~/.config/eww/scripts/music_info --cover</script-var>
<script-var name="CTIME" interval="1s">~/.config/eww/scripts/music_info --ctime</script-var>
<script-var name="TTIME" interval="1s">~/.config/eww/scripts/music_info --ttime</script-var>
<!--Weather vars-->
<script-var name="ICON" interval="15m">~/.config/eww/scripts/weather_info --icon</script-var>
<script-var name="STAT" interval="15m">~/.config/eww/scripts/weather_info --stat</script-var>
<script-var name="TEMP" interval="15m">~/.config/eww/scripts/weather_info --temp</script-var>
<script-var name="HEX" interval="15m">~/.config/eww/scripts/weather_info --hex</script-var>
<script-var name="QUOTE" interval="15m">~/.config/eww/scripts/weather_info --quote</script-var>
<script-var name="QUOTE2" interval="15m">~/.config/eww/scripts/weather_info --quote2</script-var>
<!-- Apps vars -->
<script-var name="MAILS" interval="5m">~/.config/eww/scripts/mails</script-var>
<!-- Files vars -->
<script-var name="FREE" interval="5s">df -h / | awk '{print $4}' | tail -n 1 | sed 's/G/GB/'</script-var>
</variables>
<!-- ******************************************************************************** -->
<definitions>
<!-- background -->
<def name="bg">
<box class="bg"></box>
</def>
<!-- profile -->
<def name="user">
<box class="genwin" orientation="v" spacing="35" space-evenly="false" vexpand="false" hexpand="false">
<box style="background-image: url('{{IMAGE}}');" class="face" halign="center"/>
<label class="fullname" halign="center" wrap="true" limit-width="25" text="{{NAME}}"/>
<label class="username" halign="center" wrap="true" limit-width="25" text="{{UNAME}}"/>
</box>
</def>
<!-- system -->
<def name="system">
<box class="genwin" vexpand="false" hexpand="false">
<box orientation="v" spacing="35" halign="center" valign="center" space-evenly="false" vexpand="false" hexpand="false">
<box class="cpu_bar" orientation="h" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<label class="iconcpu" text=""/>
<scale min="0" max="100" value="{{CPU_USAGE}}" active="false"/>
</box>
<box class="mem_bar" orientation="h" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<label class="iconmem" text=""/>
<scale min="0" max="100" value="{{MEM_USAGE}}" active="false"/>
</box>
<box class="bright_bar" orientation="h" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<label class="iconbright" text=""/>
<scale min="0" max="100" value="{{BLIGHT}}" active="false"/>
</box>
<box class="bat_bar" orientation="h" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<label class="iconbat" text=""/>
<scale min="0" max="100" value="{{BATTERY}}" active="false"/>
</box>
</box>
</box>
</def>
<!-- clock -->
<def name="clock">
<box class="genwin" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<label class="time_hour" valign="start" wrap="true" limit-width="25" text="{{HOUR}}"/>
<label class="time_min" valign="end" wrap="true" limit-width="25" text="{{MIN}}"/>
<box orientation="v" spacing="25" space-evenly="false" vexpand="false" hexpand="false">
<label class="time_mer" halign="end" wrap="true" limit-width="25" text="{{MER}}"/>
<label class="time_day" halign="end" wrap="true" limit-width="25" text="{{DAY}}"/>
</box>
</box>
</def>
<!-- uptime -->
<def name="uptime">
<box class="genwin">
<box orientation="h" halign="center" spacing="40" space-evenly="false" vexpand="false" hexpand="false">
<label class="icontimer" valign="center" text="祥"/>
<box orientation="v" valign="center" spacing="0" space-evenly="false" vexpand="false" hexpand="false">
<label class="uphour" halign="start" wrap="true" limit-width="25" text="{{UPHOUR}}"/>
<label class="upmin" halign="start" wrap="true" limit-width="25" text="{{UPMIN}}"/>
</box>
</box>
</box>
</def>
<!-- Music -->
<def name="music">
<box class="genwin" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<box class="album_art" vexpand="false" hexpand="false" style="background-image: url('{{COVER}}');">
</box>
<box orientation="v" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<label halign="center" class="song" wrap="true" limit-width="20" text="{{SONG}}"/>
<label halign="center" class="artist" wrap="true" limit-width="15" text="{{ARTIST}}"/>
<box orientation="h" spacing="20" halign="center" space-evenly="true" vexpand="false" hexpand="false">
<button class="btn_prev" onclick="~/.config/eww/scripts/music_info --prev"></button>
<button class="btn_play" onclick="~/.config/eww/scripts/music_info --toggle">{{STATUS}}</button>
<button class="btn_next" onclick="~/.config/eww/scripts/music_info --next"></button>
</box>
<box class="music_bar" halign="center" vexpand="false" hexpand="false">
<scale onscroll="mpc -q seek +1" min="0" active="true" max="100" value="{{CURRENT}}"/>
</box>
</box>
</box>
</def>
<!-- github -->
<def name="github">
<box class="github" vexpand="false" hexpand="false">
<button class="iconweb" onclick="~/.config/eww/scripts/open_links --gh"></button>
</box>
</def>
<!-- reddit -->
<def name="reddit">
<box class="reddit" vexpand="false" hexpand="false">
<button class="iconweb" onclick="~/.config/eww/scripts/open_links --rd"></button>
</box>
</def>
<!-- twitter -->
<def name="twitter">
<box class="twitter" vexpand="false" hexpand="false">
<button class="iconweb" onclick="~/.config/eww/scripts/open_links --tw"></button>
</box>
</def>
<!-- youtube -->
<def name="youtube">
<box class="youtube" vexpand="false" hexpand="false">
<button class="iconweb" onclick="~/.config/eww/scripts/open_links --yt"></button>
</box>
</def>
<!-- mail -->
<def name="mail">
<box class="mail">
<box orientation="h" halign="center" spacing="20" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconmail" onclick="~/.config/eww/scripts/open_links --mail"></button>
<box class="mailbox" space-evenly="false" vexpand="false" hexpand="false">
<button class="label_mails" onclick="~/.config/eww/scripts/open_links --mail">{{MAILS}}</button>
</box>
</box>
</box>
</def>
<!-- weather -->
<def name="weather">
<box class="genwin">
<box orientation="v" spacing="10" space-evenly="false" vexpand="false" hexpand="false">
<box orientation="h" vexpand="false" hexpand="false">
<label class="iconweather" halign="start" style="color: {{HEX}};" text="{{ICON}}"/>
<label class="label_temp" halign="end" text="{{TEMP}}"/>
</box>
<box orientation="v" spacing="10" halign="center" space-evenly="false" vexpand="false" hexpand="false">
<label class="label_stat" text="{{STAT}}"/>
<label class="label_quote" text="{{QUOTE}}"/>
<label class="label_quote" text="{{QUOTE2}}"/>
</box>
</box>
</box>
</def>
<!-- apps -->
<def name="apps">
<box class="genwin" orientation="v" space-evenly="false" vexpand="false" hexpand="false">
<box class="appbox" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button style="background-image: url('images/icons/firefox.svg');" class="app_fox" onclick="~/.config/eww/scripts/open_apps --ff"/>
<button style="background-image: url('images/icons/telegram.svg');" class="app_telegram" onclick="~/.config/eww/scripts/open_apps --tg"/>
<button style="background-image: url('images/icons/discord.svg');" class="app_discord" onclick="~/.config/eww/scripts/open_apps --dc"/>
</box>
<box class="appbox" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button style="background-image: url('images/icons/terminal.svg');" class="app_terminal" onclick="~/.config/eww/scripts/open_apps --tr"/>
<button style="background-image: url('images/icons/files.svg');" class="app_files" onclick="~/.config/eww/scripts/open_apps --fm"/>
<button style="background-image: url('images/icons/geany.svg');" class="app_geany" onclick="~/.config/eww/scripts/open_apps --ge"/>
</box>
<box class="appbox" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button style="background-image: url('images/icons/code.svg');" class="app_code" onclick="~/.config/eww/scripts/open_apps --cd"/>
<button style="background-image: url('images/icons/gimp.svg');" class="app_gimp" onclick="~/.config/eww/scripts/open_apps --gp"/>
<button style="background-image: url('images/icons/virtualbox.svg');" class="app_vbox" onclick="~/.config/eww/scripts/open_apps --vb"/>
</box>
</box>
</def>
<!-- power buttons -->
<def name="logout">
<box class="genwin" vexpand="false" hexpand="false">
<button class="btn_logout" onclick="openbox --exit"></button>
</box>
</def>
<def name="sleep">
<box class="genwin" vexpand="false" hexpand="false">
<button class="btn_sleep" onclick="systemctl suspend"></button>
</box>
</def>
<def name="reboot">
<box class="genwin" vexpand="false" hexpand="false">
<button class="btn_reboot" onclick="systemctl reboot"></button>
</box>
</def>
<def name="poweroff">
<box class="genwin" vexpand="false" hexpand="false">
<button class="btn_poweroff" onclick="systemctl poweroff"></button>
</box>
</def>
<!-- folders -->
<def name="folders">
<box class="genwin" orientation="v" space-evenly="false" vexpand="false" hexpand="false">
<box class="hddbox" orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<box space-evenly="false" vexpand="false" hexpand="false">
<button class="hddicon" onclick="~/.config/eww/scripts/open_apps --fm"></button>
</box>
<label class="fs_sep" text="|"/>
<box space-evenly="false" vexpand="false" hexpand="false">
<label class="hdd_label" wrap="true" limit-width="25" text="{{FREE}}"/>
</box>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder1" onclick="~/.config/eww/scripts/open_folders --docs"></button>
<button class="label_folder1" onclick="~/.config/eww/scripts/open_folders --docs">Documents</button>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder2" onclick="~/.config/eww/scripts/open_folders --dl"></button>
<button class="label_folder2" onclick="~/.config/eww/scripts/open_folders --dl">Downloads</button>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder3" onclick="~/.config/eww/scripts/open_folders --music"></button>
<button class="label_folder3" onclick="~/.config/eww/scripts/open_folders --music">Music</button>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder4" onclick="~/.config/eww/scripts/open_folders --pics"></button>
<button class="label_folder4" onclick="~/.config/eww/scripts/open_folders --pics">Pictures</button>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder5" onclick="~/.config/eww/scripts/open_folders --cfg"></button>
<button class="label_folder5" onclick="~/.config/eww/scripts/open_folders --cfg">~/.config</button>
</box>
<box orientation="h" space-evenly="false" vexpand="false" hexpand="false">
<button class="iconfolder6" onclick="~/.config/eww/scripts/open_folders --local"></button>
<button class="label_folder6" onclick="~/.config/eww/scripts/open_folders --local">~/.local</button>
</box>
</box>
</def>
</definitions>
<!-- ******************************************************************************** -->
<windows>
<!-- background -->
<window name="background" stacking="fg" focusable="false" screen="1">
<geometry x="0" y="0" width="1920px" height="1080px"/>
<widget>
<bg/>
</widget>
</window>
<!-- profile -->
<window name="profile" stacking="fg" focusable="false" screen="1">
<geometry x="150" y="150" width="350" height="440"/>
<widget>
<user/>
</widget>
</window>
<!-- system -->
<window name="system" stacking="fg" focusable="false" screen="1">
<geometry x="150" y="605" width="350" height="325"/>
<widget>
<system/>
</widget>
</window>
<!-- clock -->
<window name="clock" stacking="fg" focusable="false" screen="1">
<geometry x="515" y="150" width="350" height="155"/>
<widget>
<clock/>
</widget>
</window>
<!-- uptime -->
<window name="uptime" stacking="fg" focusable="false" screen="1">
<geometry x="515" y="320" width="350" height="155"/>
<widget>
<uptime/>
</widget>
</window>
<!-- music -->
<window name="music" stacking="fg" focusable="false" screen="1">
<geometry x="515" y="490" width="610" height="280"/>
<widget>
<music/>
</widget>
</window>
<!-- github -->
<window name="github" stacking="fg" focusable="false" screen="1">
<geometry x="515" y="785" width="141" height="145"/>
<widget>
<github/>
</widget>
</window>
<!-- reddit -->
<window name="reddit" stacking="fg" focusable="false" screen="1">
<geometry x="671" y="785" width="141" height="145"/>
<widget>
<reddit/>
</widget>
</window>
<!-- twitter -->
<window name="twitter" stacking="fg" focusable="false" screen="1">
<geometry x="827" y="785" width="141" height="145"/>
<widget>
<twitter/>
</widget>
</window>
<!-- youtube -->
<window name="youtube" stacking="fg" focusable="false" screen="1">
<geometry x="983" y="785" width="142" height="145"/>
<widget>
<youtube/>
</widget>
</window>
<!-- weather -->
<window name="weather" stacking="fg" focusable="false" screen="1">
<geometry x="880" y="150" width="550" height="325"/>
<widget>
<weather/>
</widget>
</window>
<!-- apps -->
<window name="apps" stacking="fg" focusable="false" screen="1">
<geometry x="1140" y="490" width="290" height="280"/>
<widget>
<apps/>
</widget>
</window>
<!-- mail -->
<window name="mail" stacking="fg" focusable="false" screen="1">
<geometry x="1140" y="785" width="290" height="145"/>
<widget>
<mail/>
</widget>
</window>
<!-- logout -->
<window name="logout" stacking="fg" focusable="false" screen="1">
<geometry x="1445" y="150" width="155" height="155"/>
<widget>
<logout/>
</widget>
</window>
<!-- sleep -->
<window name="sleep" stacking="fg" focusable="false" screen="1">
<geometry x="1615" y="150" width="155" height="155"/>
<widget>
<sleep/>
</widget>
</window>
<!-- reboot -->
<window name="reboot" stacking="fg" focusable="false" screen="1">
<geometry x="1445" y="320" width="155" height="155"/>
<widget>
<reboot/>
</widget>
</window>
<!-- poweroff -->
<window name="poweroff" stacking="fg" focusable="false" screen="1">
<geometry x="1615" y="320" width="155" height="155"/>
<widget>
<poweroff/>
</widget>
</window>
<!-- folders -->
<window name="folders" stacking="fg" focusable="false" screen="1">
<geometry x="1445" y="490" width="325" height="440"/>
<widget>
<folders/>
</widget>
</window>
</windows>
</eww>

311
eww/eww.yuck Normal file
View File

@ -0,0 +1,311 @@
;; **
;; ** Widgets config for EWW
;; ** Created by : @adi1090x
;; **
;; Profile vars
(defvar IMAGE "~/Pictures/KanyeAndLavar.jpg")
(defvar NAME "YOUR NAME")
(defpoll UNAME :interval "5m" "whoami")
;; System vars
(defpoll HOST :interval "5s" "hostname")
(defpoll CPU_USAGE :interval "1s" "~/.config/eww/scripts/sys_info --cpu")
(defpoll MEM_USAGE :interval "1s" "~/.config/eww/scripts/sys_info --mem")
(defpoll BLIGHT :interval "1s" "~/.config/eww/scripts/sys_info --blight")
(defpoll BATTERY :interval "5s" "~/.config/eww/scripts/sys_info --bat")
;; Time vars
(defpoll HOUR :interval "5s" "date +\"%I\"")
(defpoll MIN :interval "5s" "date +\"%M\"")
(defpoll MER :interval "5s" "date +\"%p\"")
(defpoll DAY :interval "5s" "date +\"%A\"")
;; Uptime vars
(defpoll UPHOUR :interval "5s" "uptime -p | awk '{print $2 \" \" $3}' | sed 's/,//g'")
(defpoll UPMIN :interval "5s" "uptime -p | awk '{print $4 \" \" $5}'")
;; Music vars
(defpoll SONG :interval "1s" "~/.config/eww/scripts/music_info --song")
(defpoll ARTIST :interval "1s" "~/.config/eww/scripts/music_info --artist")
(defpoll STATUS :interval "1s" "~/.config/eww/scripts/music_info --status")
(defpoll CURRENT :interval "1s" "~/.config/eww/scripts/music_info --time")
(defpoll COVER :interval "1s" "~/.config/eww/scripts/music_info --cover")
(defpoll CTIME :interval "1s" "~/.config/eww/scripts/music_info --ctime")
(defpoll TTIME :interval "1s" "~/.config/eww/scripts/music_info --ttime")
;; Weather vars
(defpoll ICON :interval "15m" "~/.config/eww/scripts/weather_info --icon")
(defpoll STAT :interval "15m" "~/.config/eww/scripts/weather_info --stat")
(defpoll TEMP :interval "15m" "~/.config/eww/scripts/weather_info --temp")
(defpoll HEX :interval "15m" "~/.config/eww/scripts/weather_info --hex")
(defpoll QUOTE :interval "15m" "~/.config/eww/scripts/weather_info --quote")
(defpoll QUOTE2 :interval "15m" "~/.config/eww/scripts/weather_info --quote2")
;; Apps vars
(defpoll MAILS :interval "5m" "~/.config/eww/scripts/mails")
;; Files vars
(defpoll FREE :interval "5s" "df -h / | awk '{print $4}' | tail -n 1 | sed 's/G/GB/'")
;; ********************************************************************************
;; background
(defwidget bg []
(box :class "bg"))
;; profile
(defwidget user []
(box :class "genwin" :orientation "v" :spacing 35 :space-evenly "false" :vexpand "false" :hexpand "false"
(box :style "background-image: url('{{IMAGE}}');" :class "face" :halign "center")
(label :class "fullname" :halign "center" :wrap "true" :limit-width 25 :text NAME)
(label :class "username" :halign "center" :wrap "true" :limit-width 25 :text UNAME)))
;; system
(defwidget system []
(box :class "genwin" :vexpand "false" :hexpand "false"
(box :orientation "v" :spacing 35 :halign "center" :valign "center" :space-evenly "false" :vexpand "false" :hexpand "false"
(box :class "cpu_bar" :orientation "h" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "iconcpu" :text "")
(scale :min 0 :max 100 :value CPU_USAGE :active "false"))
(box :class "mem_bar" :orientation "h" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "iconmem" :text "")
(scale :min 0 :max 100 :value MEM_USAGE :active "false"))
(box :class "bright_bar" :orientation "h" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "iconbright" :text "")
(scale :min 0 :max 100 :value BLIGHT :active "false"))
(box :class "bat_bar" :orientation "h" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "iconbat" :text "")
(scale :min 0 :max 100 :value BATTERY :active "false")))))
;; clock
(defwidget clock []
(box :class "genwin" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "time_hour" :valign "start" :wrap "true" :limit-width 25 :text HOUR)
(label :class "time_min" :valign "end" :wrap "true" :limit-width 25 :text MIN)
(box :orientation "v" :spacing 25 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "time_mer" :halign "end" :wrap "true" :limit-width 25 :text MER)
(label :class "time_day" :halign "end" :wrap "true" :limit-width 25 :text DAY))))
;; uptime
(defwidget uptime []
(box :class "genwin"
(box :orientation "h" :halign "center" :spacing 40 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "icontimer" :valign "center" :text "祥")
(box :orientation "v" :valign "center" :spacing 0 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "uphour" :halign "start" :wrap "true" :limit-width 25 :text UPHOUR)
(label :class "upmin" :halign "start" :wrap "true" :limit-width 25 :text UPMIN)))))
;; Music
(defwidget music []
(box :class "genwin" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(box :class "album_art" :vexpand "false" :hexpand "false" :style "background-image: url('.coverart/cover.png');")
(box :orientation "v" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(label :halign "center" :class "song" :wrap "true" :limit-width 20 :text SONG)
(label :halign "center" :class "artist" :wrap "true" :limit-width 15 :text ARTIST)
(box :orientation "h" :spacing 20 :halign "center" :space-evenly "true" :vexpand "false" :hexpand "false"
(button :class "btn_prev" :onclick "~/.config/eww/scripts/music_info --prev" "玲")
(button :class "btn_play" :onclick "~/.config/eww/scripts/music_info --toggle" STATUS)
(button :class "btn_next" :onclick "~/.config/eww/scripts/music_info --next" "怜"))
(box :class "music_bar" :halign "center" :vexpand "false" :hexpand "false"
(scale :onscroll "mpc -q seek +1" :min 0 :active "true" :max 100 :value CURRENT)))))
;; github
(defwidget github []
(box :class "github" :vexpand "false" :hexpand "false"
(button :class "iconweb" :onclick "~/.config/eww/scripts/open_links --gh" "")))
;; reddit
(defwidget reddit []
(box :class "reddit" :vexpand "false" :hexpand "false"
(button :class "iconweb" :onclick "~/.config/eww/scripts/open_links --rd" "樓")))
;; twitter
(defwidget twitter []
(box :class "twitter" :vexpand "false" :hexpand "false"
(button :class "iconweb" :onclick "~/.config/eww/scripts/open_links --tw" "")))
;; youtube
(defwidget youtube []
(box :class "youtube" :vexpand "false" :hexpand "false"
(button :class "iconweb" :onclick "~/.config/eww/scripts/open_links --yt" "")))
;; mail
(defwidget mail []
(box :class "mail"
(box :orientation "h" :halign "center" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconmail" :onclick "~/.config/eww/scripts/open_links --mail" "")
(box :class "mailbox" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "label_mails" :onclick "~/.config/eww/scripts/open_links --mail" MAILS)))))
;; weather
(defwidget weather []
(box :class "genwin"
(box :orientation "v" :spacing 10 :space-evenly "false" :vexpand "false" :hexpand "false"
(box :orientation "h" :vexpand "false" :hexpand "false"
(label :class "iconweather" :halign "start" :style "color: ${HEX};" :text ICON)
(label :class "label_temp" :halign "end" :text TEMP))
(box :orientation "v" :spacing 10 :halign "center" :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "label_stat" :text STAT)
(label :class "label_quote" :text QUOTE)
(label :class "label_quote" :text QUOTE2)))))
;; apps
(defwidget apps []
(box :class "genwin" :orientation "v" :space-evenly "false" :vexpand "false" :hexpand "false"
(box :class "appbox" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :style "background-image: url('images/icons/firefox.svg');" :class "app_fox" :onclick "~/.config/eww/scripts/open_apps --ff")
(button :style "background-image: url('images/icons/telegram.svg');" :class "app_telegram" :onclick "~/.config/eww/scripts/open_apps --tg")
(button :style "background-image: url('images/icons/discord.svg');" :class "app_discord" :onclick "~/.config/eww/scripts/open_apps --dc"))
(box :class "appbox" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :style "background-image: url('images/icons/terminal.svg');" :class "app_terminal" :onclick "~/.config/eww/scripts/open_apps --tr")
(button :style "background-image: url('images/icons/files.svg');" :class "app_files" :onclick "~/.config/eww/scripts/open_apps --fm")
(button :style "background-image: url('images/icons/geany.svg');" :class "app_geany" :onclick "~/.config/eww/scripts/open_apps --ge"))
(box :class "appbox" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :style "background-image: url('images/icons/code.svg');" :class "app_code" :onclick "~/.config/eww/scripts/open_apps --cd")
(button :style "background-image: url('images/icons/gimp.svg');" :class "app_gimp" :onclick "~/.config/eww/scripts/open_apps --gp")
(button :style "background-image: url('images/icons/virtualbox.svg');" :class "app_vbox" :onclick "~/.config/eww/scripts/open_apps --vb"))))
;; power buttons
(defwidget logout []
(box :class "genwin" :vexpand "false" :hexpand "false"
(button :class "btn_logout" :onclick "openbox --exit" "")))
(defwidget sleep []
(box :class "genwin" :vexpand "false" :hexpand "false"
(button :class "btn_sleep" :onclick "systemctl suspend" "")))
(defwidget reboot []
(box :class "genwin" :vexpand "false" :hexpand "false"
(button :class "btn_reboot" :onclick "systemctl reboot" "")))
(defwidget poweroff []
(box :class "genwin" :vexpand "false" :hexpand "false"
(button :class "btn_poweroff" :onclick "systemctl poweroff" "")))
;; folders
(defwidget folders []
(box :class "genwin" :orientation "v" :space-evenly "false" :vexpand "false" :hexpand "false"
(box :class "hddbox" :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(box :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "hddicon" :onclick "~/.config/eww/scripts/open_apps --fm" ""))
(label :class "fs_sep" :text "|")
(box :space-evenly "false" :vexpand "false" :hexpand "false"
(label :class "hdd_label" :wrap "true" :limit-width 25 :text FREE)))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder1" :onclick "~/.config/eww/scripts/open_folders --docs" "")
(button :class "label_folder1" :onclick "~/.config/eww/scripts/open_folders --docs" "Documents"))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder2" :onclick "~/.config/eww/scripts/open_folders --dl" "")
(button :class "label_folder2" :onclick "~/.config/eww/scripts/open_folders --dl" "Downloads"))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder3" :onclick "~/.config/eww/scripts/open_folders --music" "")
(button :class "label_folder3" :onclick "~/.config/eww/scripts/open_folders --music" "Music"))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder4" :onclick "~/.config/eww/scripts/open_folders --pics" "")
(button :class "label_folder4" :onclick "~/.config/eww/scripts/open_folders --pics" "Pictures"))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder5" :onclick "~/.config/eww/scripts/open_folders --cfg" "ﮛ")
(button :class "label_folder5" :onclick "~/.config/eww/scripts/open_folders --cfg" "~/.config"))
(box :orientation "h" :space-evenly "false" :vexpand "false" :hexpand "false"
(button :class "iconfolder6" :onclick "~/.config/eww/scripts/open_folders --local" "ﮛ")
(button :class "label_folder6" :onclick "~/.config/eww/scripts/open_folders --local" "~/.local"))))
;; ********************************************************************************
;; background
(defwindow background :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 0 :y 0 :width "1920px" :height "1080px")
(bg))
;; profile
(defwindow profile :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 150 :y 150 :width 350 :height 440)
(user))
;; system
(defwindow system :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 150 :y 605 :width 350 :height 325)
(system))
;; clock
(defwindow clock :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 515 :y 150 :width 350 :height 155)
(clock))
;; uptime
(defwindow uptime :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 515 :y 320 :width 350 :height 155)
(uptime))
;; music
(defwindow music :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 515 :y 490 :width 610 :height 280)
(music))
;; github
(defwindow github :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 515 :y 785 :width 141 :height 145)
(github))
;; reddit
(defwindow reddit :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 671 :y 785 :width 141 :height 145)
(reddit))
;; twitter
(defwindow twitter :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 827 :y 785 :width 141 :height 145)
(twitter))
;; youtube
(defwindow youtube :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 983 :y 785 :width 142 :height 145)
(youtube))
;; weather
(defwindow weather :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 880 :y 150 :width 550 :height 325)
(weather))
;; apps
(defwindow apps :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1140 :y 490 :width 290 :height 280)
(apps))
;; mail
(defwindow mail :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1140 :y 785 :width 290 :height 145)
(mail))
;; logout
(defwindow logout :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1445 :y 150 :width 155 :height 155)
(logout))
;; sleep
(defwindow sleep :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1615 :y 150 :width 155 :height 155)
(sleep))
;; reboot
(defwindow reboot :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1445 :y 320 :width 155 :height 155)
(reboot))
;; poweroff
(defwindow poweroff :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1615 :y 320 :width 155 :height 155)
(poweroff))
;; folders
(defwindow folders :stacking "fg" :focusable "false" :screen 1
:geometry (geometry :x 1445 :y 490 :width 325 :height 440)
(folders))

BIN
eww/images/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 315 KiB

View File

@ -0,0 +1,8 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<circle cx="8.4665" cy="8.4665" r="7.1436" fill="#f9f9f9" style="paint-order:stroke fill markers"/>
<g transform="matrix(1.1855 0 0 1.1855 -14.244 .37886)" fill-rule="evenodd" stroke-width=".26458">
<path d="m21.068 2.6024c-0.09052 0.010102-0.17861 0.04111-0.26664 0.099217 0.13772 0.17144-0.1403 1.7855 0.20785 2.004l0.2717 0.17053v3.8922l-0.42679 0.31977c-0.32895 0.24647 0.02978 1.6662-0.05651 1.8488 0.09533 0.05818 0.23775 0.12029 0.36237 0.10514 0.03992-0.0049 0.08033-0.01602 0.1204-0.03566l1.7368-0.85162c0.18929-0.09277 0.38033-0.16953 0.38033-0.38033v-5.9043c0-0.2108-0.19104-0.28757-0.38033-0.38033l-1.7368-0.85162c-0.04007-0.01964-0.08048-0.030802-0.1204-0.035657-0.03116-0.00379-0.06181-0.00337-0.09198 0z" fill="#35a0f3" style="paint-order:stroke fill markers"/>
<path d="m15.041 8.0035 5.6511-5.2228c0.25656-0.23712 0.58887-0.15304 0.58887 0.33742v1.7579l-5.2244 3.9957c-0.09136 0.07175-0.32943 0.24313-0.53715 0.04563l-0.52855-0.50252c-0.1387-0.13186-0.05988-0.30961 0.0501-0.41126z" fill="#115fb7" style="paint-order:stroke fill markers"/>
<path d="m15.041 5.6381 5.6511 5.2228c0.25656 0.23712 0.58887 0.15304 0.58887-0.33742v-1.7579l-5.2244-3.9957c-0.09136-0.071751-0.32943-0.24313-0.53715-0.045627l-0.52855 0.50251c-0.1387 0.13187-0.05988 0.30961 0.0501 0.41126z" fill="#1a81da" style="paint-order:stroke fill markers"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,6 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<circle cx="8.4665" cy="8.4665" r="7.1436" fill="#867de0" style="paint-order:stroke fill markers"/>
<g transform="matrix(2.2415 0 0 2.2415 3.7221 -652.3)" fill="#fff" stroke-width=".44648">
<path d="m1.5689 293.37c-0.052606 2.2e-4 -0.4878 0.0126-0.94691 0.35371 0 0-0.48972 0.88082-0.48972 1.9657 0 0 0.28566 0.48973 1.0372 0.51353 0 0 0.12583-0.14963 0.22785-0.27887-0.4319-0.12923-0.59514-0.39788-0.59514-0.39788s0.034015 0.0238 0.09523 0.0578c0.003403 0 0.006787 4e-3 0.013593 7e-3 0.010203 7e-3 0.020408 0.0102 0.03061 0.017 0.08502 0.0476 0.17004 0.085 0.24826 0.11563 0.13943 0.0579 0.30608 0.10883 0.49992 0.14623 0.25506 0.0476 0.55433 0.0646 0.88081 4e-3 0.15984-0.0306 0.32309-0.0748 0.49313-0.14623 0.11903-0.0442 0.25166-0.10882 0.39109-0.20064 0 0-0.17004 0.27546-0.61554 0.4013 0.10202 0.12583 0.22446 0.27205 0.22446 0.27205 0.75158-0.0238 1.0372-0.51353 1.0372-0.51013 0-1.0849-0.48972-1.9657-0.48972-1.9657-0.48632-0.36388-0.95224-0.35368-0.95224-0.35368l-0.047602 0.0544c0.57814 0.17343 0.8468 0.42851 0.8468 0.42851-0.35369-0.19044-0.70056-0.28568-1.0236-0.32309-0.24486-0.0272-0.47952-0.0204-0.68697 7e-3 -0.020405 0-0.037404 4e-3 -0.05781 7e-3 -0.11903 0.0136-0.4081 0.0544-0.77198 0.21425-0.12583 0.0544-0.20065 0.0952-0.20065 0.0952s0.27887-0.26868 0.89101-0.44211l-0.034009-0.0408s-0.0018-3e-5 -0.00531-2e-5zm-0.086511 1.2549c0.19385 0 0.35029 0.16664 0.34689 0.37409 0 0.20745-0.15304 0.37409-0.34689 0.37409-0.19045 0-0.34689-0.16664-0.34689-0.37409s0.15304-0.37409 0.34689-0.37409zm1.2413 0c0.19045 0 0.34689 0.16664 0.34689 0.37409s-0.15304 0.37409-0.34689 0.37409c-0.19045 0-0.34689-0.16664-0.34689-0.37409s0.15304-0.37409 0.34689-0.37409z" fill="#fff" stroke-width=".44648"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,16 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="b">
<stop offset="0"/>
<stop stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="c" x1="32" x2="32" y1="13" y2="9" gradientTransform="scale(.26458)" gradientUnits="userSpaceOnUse" xlink:href="#b"/>
<linearGradient id="a" x1="30" x2="57" y1="44" y2="44" gradientUnits="userSpaceOnUse" xlink:href="#b"/>
</defs>
<circle cx="8.4665" cy="8.4665" r="6.6145" fill="#3578c7" style="paint-order:stroke markers fill"/>
<path transform="scale(.26458)" d="m19.398 14a22 22 0 0 0-9.3984 18 22 22 0 0 0 22 22 22 22 0 0 0 22-22 22 22 0 0 0-9.3711-18z" fill="#fff" stroke-width="3.7796" style="paint-order:stroke markers fill"/>
<path d="m8.4665 1.852a6.6145 6.6145 0 0 0-3.9444 1.3229h7.8976a6.6145 6.6145 0 0 0-3.9532-1.3229z" fill="url(#c)" opacity=".15" style="paint-order:stroke markers fill"/>
<path d="m8.466 4.2332c-0.29211 6.879e-4 -0.38134 0.27599-0.52916 0.52967l-0.30799 0.52812-5.5525 5.167e-4a7.1436 7.1436 0 0 0-0.75343 3.1749 7.1436 7.1436 0 0 0 7.1436 7.1436 7.1436 7.1436 0 0 0 7.1436-7.1436 7.1436 7.1436 0 0 0-1.3999-4.2332h-5.7432z" fill="#5294e2" style="paint-order:stroke markers fill"/>
<rect x="9.2599" y="4.762" width="3.969" height=".529" ry=".265" opacity=".25" style="paint-order:stroke markers fill"/>
<path transform="scale(.26458)" d="m59 32-27 27a27 27 0 0 0 27-27z" fill="url(#a)" opacity=".15" stroke-width="3.7796" style="paint-order:stroke markers fill"/>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,14 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<circle cx="296.65" cy="5.7567" r="0" enable-background="new" fill="#d5d3cf" stroke-width=".87152"/>
<g stroke-width=".18455">
<path d="m15.093 5.809c-0.31078-0.74779-0.94116-1.5551-1.4349-1.8104a7.431 7.431 0 0 1 0.72435 2.1711l0.0013 0.012027c-0.80869-2.0162-2.1801-2.8291-3.3001-4.5993-0.056658-0.089506-0.11332-0.17919-0.16849-0.27387-0.03156-0.054034-0.05684-0.1028-0.0788-0.14764a1.3016 1.3016 0 0 1-0.10667-0.28328 0.018455 0.018455 0 0 0-0.01624-0.018476 0.025468 0.025468 0 0 0-0.01347 0c-9.59e-4 0-0.0024 0.001743-0.0035 0.001743-0.0011 3.6604e-4 -0.0035 0.001743-0.0051 0.002615l0.0028-0.005229c-1.7966 1.0519-2.4062 2.9993-2.4623 3.9734a3.5779 3.5779 0 0 0-1.9684 0.75868 2.1384 2.1384 0 0 0-0.18455-0.13989 3.316 3.316 0 0 1-0.020116-1.7483 5.2975 5.2975 0 0 0-1.7217 1.3306h-0.00332c-0.28355-0.35847-0.26362-1.5433-0.24738-1.7907a1.2785 1.2785 0 0 0-0.23881 0.12678 5.2089 5.2089 0 0 0-0.69907 0.59887 6.246 6.246 0 0 0-0.66862 0.80223v8.715e-4 -8.715e-4a6.0408 6.0408 0 0 0-0.95964 2.1671l-0.0096 0.047237c-0.013472 0.062924-0.062008 0.37814-0.070313 0.4466 0 0.00523-0.00111 0.010371-0.00166 0.015688a6.8167 6.8167 0 0 0-0.11608 0.98604v0.036865a7.1529 7.1529 0 0 0 14.201 1.2095c0.01199-0.092277 0.02178-0.18363 0.03248-0.27682a7.3556 7.3556 0 0 0-0.46395-3.5929zm-8.2438 5.5988c0.033403 0.01604 0.064777 0.03338 0.099101 0.04872l0.00499 0.0035q-0.052048-0.02494-0.10409-0.05187zm1.6385-4.314m5.8967-0.91057v-0.00697l0.0013 0.00784z" fill="#ff3944"/>
<path d="m11.618 6.6457c0.0155 0.010894 0.02989 0.021788 0.04447 0.032682a3.894 3.894 0 0 0-0.66438-0.86645c-2.2231-2.2234-0.58262-4.821-0.30598-4.953l0.0028-0.004358c-1.7966 1.0519-2.4062 2.9993-2.4622 3.9734 0.083416-0.0061 0.1661-0.012724 0.25136-0.012724a3.6098 3.6098 0 0 1 3.134 1.8302z" fill="#ffcd34"/>
<path d="m8.4881 7.0901c-0.011811 0.1779-0.64039 0.79153-0.86019 0.79153-2.0339 0-2.3641 1.2304-2.3641 1.2304 0.090063 1.0361 0.81202 1.8894 1.6847 2.3408 0.039863 0.02065 0.080279 0.03931 0.1207 0.05761q0.10501 0.04654 0.21002 0.08602a3.1807 3.1807 0 0 0 0.9307 0.17957c3.565 0.1672 4.2555-4.2631 1.6829-5.5486a2.4693 2.4693 0 0 1 1.7246 0.41874 3.6098 3.6098 0 0 0-3.134-1.8302c-0.084893 0-0.16794 0.00697-0.25136 0.012724a3.5779 3.5779 0 0 0-1.9684 0.75868c0.10907 0.092268 0.23217 0.21555 0.49145 0.47115 0.48536 0.47816 1.7301 0.97349 1.7329 1.0316z" fill="#9a46eb"/>
<path d="m5.9303 5.3471c0.057949 0.036865 0.10575 0.069025 0.14764 0.097994a3.316 3.316 0 0 1-0.020116-1.7483 5.2975 5.2975 0 0 0-1.7217 1.3306c0.03488-8.715e-4 1.0724-0.019522 1.5941 0.31964z" fill="#ff9633"/>
<path d="m1.3883 8.6327c0.55199 3.2617 3.5081 5.7521 6.8641 5.8471 3.1059 0.08784 5.0902-1.7152 5.91-3.4742a6.4777 6.4777 0 0 0 0.22257-4.8275v-0.00697c0-0.00523-0.0011-0.00872 0-0.00697l0.0013 0.012027c0.25375 1.6567-0.5889 3.2617-1.9062 4.3471l-0.0041 0.0092c-2.5667 2.0904-5.023 1.2612-5.5202 0.92277q-0.052031-0.024892-0.10407-0.051822c-1.4965-0.71531-2.1148-2.0788-1.9823-3.2481a1.8368 1.8368 0 0 1-1.6943-1.0658 2.6977 2.6977 0 0 1 2.6296-0.10557 3.5618 3.5618 0 0 0 2.6855 0.10557c-0.0027715-0.058131-1.2476-0.55364-1.7329-1.0316-0.25929-0.2556-0.38238-0.37869-0.49145-0.47115a2.1384 2.1384 0 0 0-0.18455-0.13989c-0.042447-0.028935-0.090246-0.06031-0.14764-0.097994-0.52172-0.3392-1.5592-0.32056-1.5936-0.31963h-0.00332c-0.28345-0.35907-0.26351-1.5439-0.24728-1.7913a1.2785 1.2785 0 0 0-0.23881 0.12678 5.2089 5.2089 0 0 0-0.69907 0.59886 6.246 6.246 0 0 0-0.67139 0.80039v8.715e-4 -8.715e-4a6.0408 6.0408 0 0 0-0.95964 2.1671c-0.0035061 0.014554-0.25763 1.1256-0.13232 1.7017z" fill="#ff6333"/>
<path d="m10.998 5.8177a3.894 3.894 0 0 1 0.66438 0.86738c0.0393 0.029719 0.07603 0.059264 0.10722 0.087841 1.6216 1.4948 0.77197 3.6079 0.70867 3.7584 1.3173-1.0853 2.1592-2.6904 1.9062-4.3471-0.80906-2.0171-2.1805-2.83-3.3005-4.6003-0.05666-0.089506-0.11332-0.17919-0.16849-0.27387-0.03156-0.054034-0.05684-0.1028-0.0788-0.14764a1.3016 1.3016 0 0 1-0.10667-0.28328 0.018455 0.018455 0 0 0-0.01624-0.018476 0.025468 0.025468 0 0 0-0.01347 0c-9.59e-4 0-0.0024 0.001743-0.0035 0.001743-0.0011 3.6604e-4 -0.0035 0.001743-0.0051 0.002615-0.27664 0.13121-1.9171 2.7287 0.30635 4.9522z" fill="#ff8619"/>
<path d="m11.768 6.7677c-0.03119-0.028586-0.06791-0.058131-0.10722-0.08785-0.01458-0.010894-0.02898-0.021788-0.04447-0.032682a2.4693 2.4693 0 0 0-1.7246-0.41874c2.5727 1.2863 1.8824 5.7158-1.6829 5.5486a3.1807 3.1807 0 0 1-0.9307-0.17955q-0.10501-0.039306-0.21002-0.08602c-0.040416-0.01848-0.080832-0.03687-0.1207-0.05761l0.00499 0.0035c0.49718 0.33938 2.9528 1.1685 5.5202-0.92277l0.0041-0.0092c0.06404-0.14948 0.91371-2.2631-0.70867-3.7574z" fill="#ffa316"/>
<path d="m5.2638 9.1121s0.33016-1.2304 2.3641-1.2304c0.2198 0 0.84893-0.61362 0.86019-0.79153a3.5618 3.5618 0 0 1-2.6855-0.10556 2.6977 2.6977 0 0 0-2.6296 0.10556 1.8368 1.8368 0 0 0 1.6943 1.0658c-0.13251 1.1695 0.48574 2.5329 1.9823 3.2481 0.033403 0.01604 0.064777 0.03338 0.099101 0.04872-0.87344-0.45122-1.5947-1.3046-1.6847-2.3407z" fill="#ffbb27"/>
</g>
<circle cx="-15.774" cy="13.461" r="0" enable-background="new" fill="#d5d3cf" stroke-width=".87152"/>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,5 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<path d="m8.3803 1.3234a7.1436 7.1436 0 1 1 0 14.286 7.1436 7.1436 0 0 1 0-14.286z" fill="#f6d32e"/>
<path d="m8.467 2.646a5.82 5.82 0 1 1 0 11.641 5.82 5.82 0 0 1 0-11.641z" fill="#fff" opacity=".15"/>
<path d="M8.404 5.396c-.24.003-.471.108-.54.286-.02.056-.022.073-.008.155.03.17.138.383.265.52.087.094.145.133.228.155.069.018.116.012.192-.023.17-.08.372-.377.424-.629.033-.154-.013-.26-.152-.352a.728.728 0 0 0-.409-.112zm-.74.532c-.017-.01-.295.03-.494.072-.464.098-.793.235-.978.407-.1.093-.132.152-.132.24s.032.147.132.24c.297.277 1.019.476 1.867.515.419.02.916-.012 1.314-.084.765-.137 1.286-.435 1.236-.708-.048-.26-.571-.523-1.27-.64l-.18-.031-.033.092c-.146.398-.416.671-.682.69-.21.015-.416-.12-.593-.386a1.59 1.59 0 0 1-.17-.363c-.004-.02-.012-.04-.018-.044zm3.151.688l-.008.074c-.038.352-.536.657-1.322.81-1.43.278-3.139-.008-3.546-.594l-.04-.058-.01.064c-.017.131-.01.82.01 1.057.011.128.018.235.015.238-.01.01-.256-.097-.324-.142-.23-.153-.336-.383-.376-.815l-.015-.156-.224-.004-.225-.003.01.08c.077.703.328 1.375.704 1.886.582.79 1.51 1.3 2.576 1.418.184.02.562.023.718.006.586-.065 1.056-.28 1.405-.643.424-.44.66-1.018.752-1.841.01-.097.016-.31.015-.61-.002-.501-.008-.547-.079-.694zm1.093.41a.75.75 0 0 0-.692.312c-.064.09-.136.237-.136.28 0 .07.075.142.148.142.068 0 .098-.028.159-.146a.603.603 0 0 1 .249-.274c.296-.15.644.044.7.39.014.078.008.156-.051.715-.076.722-.066.686-.22.778-.199.12-.51.182-1.017.201-.231.01-.233.01-.268.045-.053.053-.05.117.008.175l.044.044h.199c.547 0 .982-.093 1.235-.262a.544.544 0 0 0 .223-.27c.017-.063.144-1.25.144-1.344 0-.1-.035-.235-.089-.343a.793.793 0 0 0-.636-.443zm-5.156.488c.004 0 .094.176.202.39l.196.392-.192.387c-.106.212-.196.388-.2.39a5.234 5.234 0 0 1-.206-.385l-.198-.391.195-.392c.108-.215.2-.391.203-.391zm3.426.007l.2.398.198.397-.194.389a8.469 8.469 0 0 1-.2.388c-.004 0-.096-.176-.203-.392l-.196-.391.198-.395zm-1.711.42c.012 0 .588.936.585.949-.002.007-.133.218-.29.47a8.99 8.99 0 0 1-.295.458c-.01 0-.577-.9-.585-.928-.004-.015.572-.95.585-.949zm1.737 2.137l-.07.059c-.382.318-.872.501-1.467.548a4.085 4.085 0 0 1-1.362-.155 3.677 3.677 0 0 1-.705-.274l-.152-.077-.086.04c-.193.087-.372.232-.426.346a.33.33 0 0 0-.008.253c.104.235.53.455 1.128.583.306.065.507.092.964.129.029.002.215.006.414.007.39.002.603-.01.939-.05 1.411-.175 2.058-.714 1.39-1.158a1.84 1.84 0 0 0-.432-.206l-.127-.044z" fill="#d11616"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

22
eww/images/icons/gimp.svg Normal file
View File

@ -0,0 +1,22 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="d" x1="34.601" x2="34.601" y1="50.4" y2="45.086" gradientUnits="userSpaceOnUse">
<stop offset="0"/>
<stop stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<circle cx="8.4665" cy="8.4665" r="7.1436" fill="#f9f9f9" style="paint-order:stroke fill markers"/>
<g transform="matrix(.69229 0 0 .69229 2.5955 2.9766)">
<path d="m2.57 2.117s-0.982 0-0.982 0.977c0 0-0.053 4.779 0.982 6.838 0.62 1.236 3.927 3.908 3.927 3.908h3.928s3.306-2.672 3.927-3.908c1.035-2.06 0.982-6.838 0.982-6.838 0.139-0.968-0.982-0.977-0.982-0.977 0 1.954-1.964 1.954-1.964 1.954h-7.855s-1.963 0-1.963-1.954z" fill="#5c4e3c"/>
<g transform="matrix(.34395 0 0 .34223 -43.43 -80.23)">
<circle cx="159.87" cy="259.33" r="4" fill="#fff"/>
<path d="m159.74 257.33a3 3 0 0 0-2.874 2.995 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-2.85-2.992 1.5 1.5 0 0 1 1.35 1.492 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.374-1.495z" opacity=".8"/>
</g>
<g transform="matrix(.34395 0 0 .34223 -49.622 -80.23)">
<circle cx="159.87" cy="259.33" r="4" fill="#fff"/>
<path d="m159.74 257.33a3 3 0 0 0-2.874 2.995 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-2.85-2.992 1.5 1.5 0 0 1 1.35 1.492 1.5 1.5 0 0 1-1.5 1.5 1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.374-1.495z" opacity=".8"/>
</g>
<path d="m6.497 13.84s0.575 0.977 1.964 0.977c1.388 0 1.964-0.977 1.964-0.977s-0.491-0.977-1.964-0.977-1.964 0.977-1.964 0.977z" fill="#252525" fill-rule="evenodd"/>
<path transform="matrix(.34395 0 0 .34223 -2.546 -2.432)" d="m34.537 45.086a5.5 5 0 0 1 0.072 0.791 5.5 5 0 0 1-3.117 4.502c0.167 0.01 0.332 0.021 0.508 0.021 4.037 0 5.709-2.855 5.709-2.855s-0.846-1.677-3.172-2.46z" fill="url(#d)" fill-rule="evenodd" opacity=".25"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,20 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="135" x2="160" y1="120" y2="160" gradientTransform="matrix(.05623 0 0 .05623 .071601 -.05278)" gradientUnits="userSpaceOnUse">
<stop stop-color="#eff7fc" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
</defs>
<g transform="matrix(1.1739 0 0 1.1739 -5.5652 -5.5652)" stroke-width=".85185">
<g transform="translate(8,8)" fill="#3db0e3">
<path d="m24 1.0001c12.703 0 23 10.297 23 23 0 12.703-10.297 23-23 23-12.703 0-23-10.297-23-23 0-12.703 10.297-23 23-23z" stroke-width=".85186"/>
</g>
<g transform="matrix(3.5433 0 0 3.5433 27 6.8895)">
<g transform="translate(-5.0801)" stroke-width=".85185">
<path d="m5.582 9.787c-0.219 0-0.181-0.083-0.257-0.291l-0.643-2.116 3.981-2.487 0.465 0.122-0.386 1.058z" fill="#c8daea"/>
<path d="m5.582 9.787c0.169 0 0.243-0.077 0.337-0.169 0.145-0.142 2.024-1.968 2.024-1.968l-1.151-0.279-1.068 0.675-0.142 1.684z" fill="#a7c2d1"/>
<path d="m5.697 8.07 2.719 2.01c0.31 0.171 0.534 0.083 0.612-0.288l1.107-5.216c0.113-0.454-0.173-0.66-0.47-0.526l-6.5 2.507c-0.444 0.178-0.441 0.425-0.081 0.536l1.668 0.521 3.861-2.436c0.182-0.111 0.35-0.051 0.212 0.071z" fill="url(#a)"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,14 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="a" x1="43" x2="49" y1="44" y2="50" gradientTransform="scale(.26458)" gradientUnits="userSpaceOnUse">
<stop offset="0"/>
<stop stop-opacity="0" offset="1"/>
</linearGradient>
</defs>
<g>
<circle cx="8.4665" cy="8.4665" r="7.1436" fill="#72787e" style="paint-order:stroke fill markers"/>
<rect x="5.821" y="9.525" width="4.233" height=".529" ry=".265" fill="#fff" style="paint-order:stroke markers fill"/>
<path d="m4.502 4.725a0.264 0.264 0 0 0-0.262 0.13 0.264 0.264 0 0 0 0.097 0.362l2.842 1.64-2.842 1.641a0.264 0.264 0 0 0-0.097 0.362c0.074 0.127 0.235 0.17 0.362 0.097l3.207-1.852a0.26 0.26 0 0 0 0.127-0.225c0.00201-8e-3 0.00101-0.014999 0.00201-0.022 0-8e-3 0-0.014999-0.00201-0.023a0.26 0.26 0 0 0-0.127-0.224l-3.207-1.853a0.266 0.266 0 0 0-0.1-0.033z" fill="#fff" style="paint-order:stroke markers fill"/>
</g>
<path d="m15.582 9.0235-6.5629 6.5629a7.1437 7.1437 0 0 0 6.5629-6.5629z" fill="url(#a)" opacity=".25" stroke-width=".26458" style="paint-order:stroke fill markers"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,11 @@
<svg width="64" height="64" version="1.1" viewBox="0 0 16.933 16.933" xmlns="http://www.w3.org/2000/svg">
<circle cx="8.4665" cy="8.4665" r="7.1436" fill="#f9f9f9" style="paint-order:stroke fill markers"/>
<g transform="matrix(.68 0 0 .68 2.7093 2.7093)">
<g fill-rule="evenodd" stroke-width=".015243">
<path d="m8.4658 15.671 6.6152-3.7386-0.04503-7.0332-6.5701 3.6002z" fill="#3585f3"/>
<path d="m8.4672 15.686-6.6152-3.7386 0.045025-7.0332 6.5701 3.6002z" fill="#1c69d0"/>
<path d="m1.878 4.9333 6.6205-3.6863 6.5618 3.6878-6.5973 3.6146z" fill="#5997f3"/>
</g>
<path d="m9.4829 5.2897c-0.051527 0.044681-0.14489 0.050032-0.20844 0.011627l-0.70395-0.4256c-0.057483-0.034751-0.071673-0.093824-0.032627-0.13855l0.60212-0.70525-2.1207 1.4692c-0.050056 0.034525-0.12916 0.038571-0.18765 0.00807-0.00344-0.00178-0.00641-0.0032-0.00985-0.00534-0.051323-0.031038-0.069143-0.082186-0.041974-0.12573l0.70895-1.1658-0.93877 0.2713c-0.056427 0.016385-0.12357 0.00653-0.16478-0.02698-0.042914-0.032769-0.053627-0.080369-0.027858-0.12004l0.40426-0.6147-0.86581-0.52345c-0.063261-0.038197-0.07299-0.10597-0.021522-0.15059 0.051705-0.044829 0.1453-0.049788 0.20853-0.011556l0.95538 0.57763c0.052678 0.031851 0.069763 0.085154 0.040742 0.12891l-0.28859 0.43888 0.92318-0.26653c0.05581-0.016515 0.12159-7e-3 0.16307 0.025497 0.042617 0.031702 0.054837 0.07859 0.031405 0.11841l-0.55304 0.9093 2.427-1.6807c0.052868-0.03685 0.13647-0.038571 0.19555-0.00394 0.060188 0.042972 0.073132 0.09461 0.034442 0.13999l-1.1542 1.3504 0.60392 0.36512c0.06332 0.038334 0.072669 0.10582 0.021202 0.15045zm0.70171 0.28666-0.36361-0.21983c-0.06319-0.038203-0.15702-0.033042-0.20849 0.011627-0.051527 0.044681-0.041739 0.1124 0.021451 0.1506l0.36361 0.21983c0.063059 0.038132 0.15695 0.033102 0.20849-0.011627 0.0515-0.044657 0.04162-0.11247-0.02145-0.1506zm0.78297 0.47337-0.38695-0.23394c-0.06306-0.038132-0.15702-0.033042-0.20848 0.011627-0.05154 0.044681-0.04162 0.11247 0.02145 0.1506l0.38695 0.23394c0.06302 0.038096 0.15695 0.033102 0.20848-0.011627 0.0515-0.044657 0.04157-0.1125-0.02145-0.1506z" fill="#fff" stroke-width=".044893"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
eww/images/music.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
eww/images/profile.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

43
eww/launch_eww Executable file
View File

@ -0,0 +1,43 @@
#!/bin/bash
## Files and cmd
FILE="$HOME/.cache/eww_launch.xyz"
EWW="$HOME/.bin/eww"
## Run eww daemon if not running already
if [[ ! `pidof eww` ]]; then
${EWW} daemon
sleep 1
fi
## Open widgets
run_eww() {
${EWW} open-many \
background \
profile \
system \
clock \
uptime \
music \
github \
reddit \
twitter \
youtube \
weather \
apps \
mail \
logout \
sleep \
reboot \
poweroff \
folders
}
## Launch or close widgets accordingly
if [[ ! -f "$FILE" ]]; then
touch "$FILE"
run_eww
else
${EWW} close-all
rm "$FILE"
fi

7
eww/scripts/mails Executable file
View File

@ -0,0 +1,7 @@
#!/bin/python
import imaplib
obj = imaplib.IMAP4_SSL('imap.gmail.com',993)
obj.login('YOU@EMAIL.COM','PASSWORD') # write your email and password
obj.select()
print(len(obj.search(None, 'UnSeen')[1][0].split()))

113
eww/scripts/music_info Executable file
View File

@ -0,0 +1,113 @@
#!/bin/bash
## Get data
STATUS="$(mpc status)"
# COVER="/tmp/.music_cover.jpg"
MUSIC_DIR="$HOME/Music"
## Get status
get_status() {
if [[ $STATUS == *"[playing]"* ]]; then
echo ""
else
echo "喇"
fi
}
## Get song
get_song() {
song=`mpc -f %title% current`
if [[ -z "$song" ]]; then
echo "Offline"
else
echo "$song"
fi
}
## Get artist
get_artist() {
artist=`mpc -f %artist% current`
if [[ -z "$artist" ]]; then
echo "Offline"
else
echo "$artist"
fi
}
## Get time
get_time() {
time=`mpc status | grep "%)" | awk '{print $4}' | tr -d '(%)'`
if [[ -z "$time" ]]; then
echo "0"
else
echo "$time"
fi
}
get_ctime() {
ctime=`mpc status | grep "#" | awk '{print $3}' | sed 's|/.*||g'`
if [[ -z "$ctime" ]]; then
echo "0:00"
else
echo "$ctime"
fi
}
get_ttime() {
ttime=`mpc -f %time% current`
if [[ -z "$ttime" ]]; then
echo "0:00"
else
echo "$ttime"
fi
}
## Get cover
get_cover() {
ffmpeg -i "${MUSIC_DIR}/$(mpc current -f %file%)" "${COVER}" -y &> /dev/null
STATUS=$?
# # Check if the file has a embbeded album art
# if [ "$STATUS" -eq 0 ];then
# echo "$COVER"
# else
# echo "cover.png"
# fi
current=$(mpc current -f '%file%')
artist=$(printf "%s\n" "$current" | awk -F '/' '{print $1}')
album=$(printf "%s\n" "$current" | awk -F '/' '{print $2}')
dir="$MUSIC_DIR/$artist/$album"
cover_path=$(find "$dir/" -type f -name "cover*")
if [[ $(echo "$cover_path" | wc -l) -eq 1 ]]; then
cp "$cover_path" "$HOME/.config/eww/.coverart/cover.png"
return 0
else
song=$(printf "%s\n" "$current" | awk -F "/" '{print $3}')
dir="$MUSIC_DIR/$artist/$album/$song/cover.png"
[ ! -f "$dir" ] && dir="$MUSIC_DIR/$artist/$album/$song/cover.jpg"
[ ! -f "$dir" ] && exit 1
# pth=$(echo "$dir" | sed -E 's/ /\\ /g')
cp "$dir" "$HOME/.config/eww/.coverart/cover.png"
fi
}
## Execute accordingly
if [[ "$1" == "--song" ]]; then
get_song
elif [[ "$1" == "--artist" ]]; then
get_artist
elif [[ "$1" == "--status" ]]; then
get_status
elif [[ "$1" == "--time" ]]; then
get_time
elif [[ "$1" == "--ctime" ]]; then
get_ctime
elif [[ "$1" == "--ttime" ]]; then
get_ttime
elif [[ "$1" == "--cover" ]]; then
get_cover
elif [[ "$1" == "--toggle" ]]; then
mpc -q toggle
elif [[ "$1" == "--next" ]]; then
{ mpc -q next; get_cover; }
elif [[ "$1" == "--prev" ]]; then
{ mpc -q prev; get_cover; }
fi

34
eww/scripts/open_apps Executable file
View File

@ -0,0 +1,34 @@
#!/bin/bash
## Open Applications
FILE="$HOME/.cache/eww_launch.xyz"
EWW="$HOME/.bin/eww"
if [[ "$1" == "--ff" ]]; then
${EWW} close-all && rm -rf "$FILE" && firefox &
elif [[ "$1" == "--tg" ]]; then
${EWW} close-all && rm -rf "$FILE" && telegram-desktop &
elif [[ "$1" == "--dc" ]]; then
${EWW} close-all && rm -rf "$FILE" && discord &
elif [[ "$1" == "--tr" ]]; then
${EWW} close-all && rm -rf "$FILE" && alacritty --working-directory ~ &
elif [[ "$1" == "--fm" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~ &
elif [[ "$1" == "--ge" ]]; then
${EWW} close-all && rm -rf "$FILE" && geany &
elif [[ "$1" == "--cd" ]]; then
${EWW} close-all && rm -rf "$FILE" && code &
elif [[ "$1" == "--gp" ]]; then
${EWW} close-all && rm -rf "$FILE" && gimp &
elif [[ "$1" == "--vb" ]]; then
${EWW} close-all && rm -rf "$FILE" && virtualbox &
fi

25
eww/scripts/open_folders Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
## Open folders in thunar
FILE="$HOME/.cache/eww_launch.xyz"
EWW="$HOME/.bin/eww"
if [[ "$1" == "--dl" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/Downloads &
elif [[ "$1" == "--docs" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/Documents &
elif [[ "$1" == "--music" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/Music &
elif [[ "$1" == "--pics" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/Pictures &
elif [[ "$1" == "--cfg" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/.config &
elif [[ "$1" == "--local" ]]; then
${EWW} close-all && rm -rf "$FILE" && thunar ~/.local/share &
fi

23
eww/scripts/open_links Executable file
View File

@ -0,0 +1,23 @@
#!/bin/bash
## Open links in firefox
FILE="$HOME/.cache/eww_launch.xyz"
EWW="$HOME/.bin/eww"
cmd="firefox --new-tab"
if [[ "$1" == "--mail" ]]; then
${EWW} close-all && rm -rf "$FILE" && ${cmd} "https://mail.google.com"
elif [[ "$1" == "--gh" ]]; then
${EWW} close-all && rm -rf "$FILE" && ${cmd} "https://github.com"
elif [[ "$1" == "--rd" ]]; then
${EWW} close-all && rm -rf "$FILE" && ${cmd} "https://reddit.com"
elif [[ "$1" == "--tw" ]]; then
${EWW} close-all && rm -rf "$FILE" && ${cmd} "https://twitter.com"
elif [[ "$1" == "--yt" ]]; then
${EWW} close-all && rm -rf "$FILE" && ${cmd} "https://youtube.com"
fi

78
eww/scripts/sys_info Executable file
View File

@ -0,0 +1,78 @@
#!/bin/bash
## Files and Data
PREV_TOTAL=0
PREV_IDLE=0
cpuFile="/tmp/.cpu_usage"
## Get CPU usage
get_cpu() {
if [[ -f "${cpuFile}" ]]; then
fileCont=$(cat "${cpuFile}")
PREV_TOTAL=$(echo "${fileCont}" | head -n 1)
PREV_IDLE=$(echo "${fileCont}" | tail -n 1)
fi
CPU=(`cat /proc/stat | grep '^cpu '`) # Get the total CPU statistics.
unset CPU[0] # Discard the "cpu" prefix.
IDLE=${CPU[4]} # Get the idle CPU time.
# Calculate the total CPU time.
TOTAL=0
for VALUE in "${CPU[@]:0:4}"; do
let "TOTAL=$TOTAL+$VALUE"
done
if [[ "${PREV_TOTAL}" != "" ]] && [[ "${PREV_IDLE}" != "" ]]; then
# Calculate the CPU usage since we last checked.
let "DIFF_IDLE=$IDLE-$PREV_IDLE"
let "DIFF_TOTAL=$TOTAL-$PREV_TOTAL"
let "DIFF_USAGE=(1000*($DIFF_TOTAL-$DIFF_IDLE)/$DIFF_TOTAL+5)/10"
echo "${DIFF_USAGE}"
else
echo "?"
fi
# Remember the total and idle CPU times for the next check.
echo "${TOTAL}" > "${cpuFile}"
echo "${IDLE}" >> "${cpuFile}"
}
## Get Used memory
get_mem() {
printf "%.0f\n" $(free -m | grep Mem | awk '{print ($3/$2)*100}')
}
## Get Brightness
get_blight() {
CARD=`ls /sys/class/backlight | head -n 1`
if [[ "$CARD" == *"intel_"* ]]; then
BNESS=`xbacklight -get`
LIGHT=${BNESS%.*}
else
BNESS=`blight -d $CARD get brightness`
PERC="$(($BNESS*100/255))"
LIGHT=${PERC%.*}
fi
echo "$LIGHT"
}
## Get Battery
get_battery() {
BAT=`ls /sys/class/power_supply | grep BAT | head -n 1`
cat /sys/class/power_supply/${BAT}/capacity
}
## Execute accordingly
if [[ "$1" == "--cpu" ]]; then
get_cpu
elif [[ "$1" == "--mem" ]]; then
get_mem
elif [[ "$1" == "--blight" ]]; then
get_blight
elif [[ "$1" == "--bat" ]]; then
get_battery
fi

147
eww/scripts/weather_info Executable file
View File

@ -0,0 +1,147 @@
#!/bin/bash
## Collect data
cache_dir="$HOME/.cache/eww/weather"
cache_weather_stat=${cache_dir}/weather-stat
cache_weather_degree=${cache_dir}/weather-degree
cache_weather_quote=${cache_dir}/weather-quote
cache_weather_hex=${cache_dir}/weather-hex
cache_weather_icon=${cache_dir}/weather-icon
## Weather data
KEY="YOUR_KEY"
ID="YOUR_CITY_ID"
UNIT="metric" # Available options : 'metric' or 'imperial'
## Make cache dir
if [[ ! -d "$cache_dir" ]]; then
mkdir -p ${cache_dir}
fi
## Get data
get_weather_data() {
weather=`curl -sf "http://api.openweathermap.org/data/2.5/weather?APPID="$KEY"&id="$ID"&units="$UNIT""`
echo ${weather}
if [ ! -z "$weather" ]; then
weather_temp=`echo "$weather" | jq ".main.temp" | cut -d "." -f 1`
weather_icon_code=`echo "$weather" | jq -r ".weather[].icon" | head -1`
weather_description=`echo "$weather" | jq -r ".weather[].description" | head -1 | sed -e "s/\b\(.\)/\u\1/g"`
#Big long if statement of doom
if [ "$weather_icon_code" == "50d" ]; then
weather_icon=" "
weather_quote="Forecast says it's misty \nMake sure you don't get lost on your way..."
weather_hex="#84afdb"
elif [ "$weather_icon_code" == "50n" ]; then
weather_icon=" "
weather_quote="Forecast says it's a misty night \nDon't go anywhere tonight or you might get lost..."
weather_hex="#84afdb"
elif [ "$weather_icon_code" == "01d" ]; then
weather_icon=" "
weather_quote="It's a sunny day, gonna be fun! \nDon't go wandering all by yourself though..."
weather_hex="#ffd86b"
elif [ "$weather_icon_code" == "01n" ]; then
weather_icon=" "
weather_quote="It's a clear night \nYou might want to take a evening stroll to relax..."
weather_hex="#fcdcf6"
elif [ "$weather_icon_code" == "02d" ]; then
weather_icon=" "
weather_quote="It's cloudy, sort of gloomy \nYou'd better get a book to read..."
weather_hex="#adadff"
elif [ "$weather_icon_code" == "02n" ]; then
weather_icon=" "
weather_quote="It's a cloudy night \nHow about some hot chocolate and a warm bed?"
weather_hex="#adadff"
elif [ "$weather_icon_code" == "03d" ]; then
weather_icon=" "
weather_quote="It's cloudy, sort of gloomy \nYou'd better get a book to read..."
weather_hex="#adadff"
elif [ "$weather_icon_code" == "03n" ]; then
weather_icon=" "
weather_quote="It's a cloudy night \nHow about some hot chocolate and a warm bed?"
weather_hex="#adadff"
elif [ "$weather_icon_code" == "04d" ]; then
weather_icon=" "
weather_quote="It's cloudy, sort of gloomy \nYou'd better get a book to read..."
weather_hex="#adadff"
elif [ "$weather_icon_code" == "04n" ]; then
weather_icon=" "
weather_quote="It's a cloudy night \nHow about some hot chocolate and a warm bed?"
weather_hex="#adadff"
elif [ "$weather_icon_code" == "09d" ]; then
weather_icon=" "
weather_quote="It's rainy, it's a great day! \nGet some ramen and watch as the rain falls..."
weather_hex="#6b95ff"
elif [ "$weather_icon_code" == "09n" ]; then
weather_icon=" "
weather_quote=" It's gonna rain tonight it seems \nMake sure your clothes aren't still outside..."
weather_hex="#6b95ff"
elif [ "$weather_icon_code" == "10d" ]; then
weather_icon=" "
weather_quote="It's rainy, it's a great day! \nGet some ramen and watch as the rain falls..."
weather_hex="#6b95ff"
elif [ "$weather_icon_code" == "10n" ]; then
weather_icon=" "
weather_quote=" It's gonna rain tonight it seems \nMake sure your clothes aren't still outside..."
weather_hex="#6b95ff"
elif [ "$weather_icon_code" == "11d" ]; then
weather_icon=""
weather_quote="There's storm for forecast today \nMake sure you don't get blown away..."
weather_hex="#ffeb57"
elif [ "$weather_icon_code" == "11n" ]; then
weather_icon=""
weather_quote="There's gonna be storms tonight \nMake sure you're warm in bed and the windows are shut..."
weather_hex="#ffeb57"
elif [ "$weather_icon_code" == "13d" ]; then
weather_icon=" "
weather_quote="It's gonna snow today \nYou'd better wear thick clothes and make a snowman as well!"
weather_hex="#e3e6fc"
elif [ "$weather_icon_code" == "13n" ]; then
weather_icon=" "
weather_quote="It's gonna snow tonight \nMake sure you get up early tomorrow to see the sights..."
weather_hex="#e3e6fc"
elif [ "$weather_icon_code" == "40d" ]; then
weather_icon=" "
weather_quote="Forecast says it's misty \nMake sure you don't get lost on your way..."
weather_hex="#84afdb"
elif [ "$weather_icon_code" == "40n" ]; then
weather_icon=" "
weather_quote="Forecast says it's a misty night \nDon't go anywhere tonight or you might get lost..."
weather_hex="#84afdb"
else
weather_icon=" "
weather_quote="Sort of odd, I don't know what to forecast \nMake sure you have a good time!"
weather_hex="#adadff"
fi
echo "$weather_icon" > ${cache_weather_icon}
echo "$weather_description" > ${cache_weather_stat}
echo "$weather_temp""°C" > ${cache_weather_degree}
echo -e "$weather_quote" > ${cache_weather_quote}
echo "$weather_hex" > ${cache_weather_hex}
else
echo "Weather Unavailable" > ${cache_weather_stat}
echo " " > ${cache_weather_icon}
echo -e "Ah well, no weather huh? \nEven if there's no weather, it's gonna be a great day!" > ${cache_weather_quote}
echo "-" > ${cache_weather_degree}
echo "#adadff" > ${tcache_weather_hex}
fi
}
## Execute
if [[ "$1" == "--getdata" ]]; then
get_weather_data
elif [[ "$1" == "--icon" ]]; then
cat ${cache_weather_icon}
elif [[ "$1" == "--temp" ]]; then
cat ${cache_weather_degree}
elif [[ "$1" == "--hex" ]]; then
cat ${cache_weather_hex}
elif [[ "$1" == "--stat" ]]; then
cat ${cache_weather_stat}
elif [[ "$1" == "--quote" ]]; then
cat ${cache_weather_quote} | head -n1
elif [[ "$1" == "--quote2" ]]; then
cat ${cache_weather_quote} | tail -n1
fi

8
eww/test.sh Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
teststr=$(mpc current -f "%file%")
echo "$teststr"
artist=$(echo "$teststr" | awk -F "/" '{print $1}')
album=$(echo "$teststr" | awk -F "/" '{print $2}')
echo "ARTIST: $artist ALBUM: $album"