huge eww changes
|
|
@ -8,14 +8,10 @@
|
|||
border: 2px solid #80A0C0;
|
||||
}
|
||||
|
||||
.notes {
|
||||
padding: 10px 20px 10px 5px;
|
||||
}
|
||||
|
||||
window {
|
||||
background: #2e3440;
|
||||
color: #ebcb8b;
|
||||
//border-radius: 2rem;
|
||||
border-radius: 1rem;
|
||||
border: 3px solid #80A0C0;
|
||||
}
|
||||
|
||||
|
|
@ -68,21 +64,12 @@ window {
|
|||
color: #BF616A;
|
||||
}
|
||||
|
||||
.appbar{
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.cal {
|
||||
color: #8fbcbb;
|
||||
padding: 5px;
|
||||
padding-bottom: 1px;
|
||||
}
|
||||
|
||||
.favs {
|
||||
color: #ECEFF4;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.small-date {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
;;;; QUOTE
|
||||
(defvar hostname "")
|
||||
|
||||
(defpoll quote_text :interval "3600s" `./scripts/quote.sh`)
|
||||
(defpoll quote_text :interval "3600s" `fortune -n 90 -s`)
|
||||
|
||||
;;;; FETCH AND DATE
|
||||
(defpoll gpu_load :interval "1s" `gpustat --json | jq '.gpus[]."utilization.gpu"'`)
|
||||
|
||||
(defpoll host
|
||||
:initial-value ""
|
||||
|
|
@ -17,15 +17,9 @@
|
|||
"date +'%H:%M:%S'"
|
||||
)
|
||||
|
||||
(defpoll TODAY :interval "1s" `date +%m/%d/%y`)
|
||||
(defpoll distro :interval "12h" "awk '/^ID=/' /etc/*-release | awk -F'=' '{ print tolower($2) }'")
|
||||
(defpoll de :interval "12h" "echo $XDG_CURRENT_DESKTOP")
|
||||
(defpoll shell :interval "5m" "echo $SHELL | awk -F'/' '{print $NF}'")
|
||||
(defpoll packages :interval "5m" "pacman -Q | wc -l")
|
||||
(defpoll TODAY :interval "1s" `date +'%d %b %y'`)
|
||||
(defpoll distro :interval "12h" `nixos-version | sed -r 's/^(.....).*?\\((.*?)\\)/NixOS \\1/'`)
|
||||
|
||||
;;;; NOTES, MUSIC, NETWORKING
|
||||
|
||||
(defpoll NOTES :interval "1s" "cat -s ~/Documents/notes.txt")
|
||||
(defpoll music_current :interval "1s" "mpc current")
|
||||
(defpoll ssid :interval "1s" "iwgetid -r || echo 'Disconnected'")
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
(include "/home/horseman/.config/eww/eww_variables.yuck")
|
||||
|
||||
;;;; Metric (cpu, ram, etc bars) constructor widget
|
||||
(defwidget metric [label value onchange]
|
||||
(defwidget metric [label value ?onchange]
|
||||
(box :orientation "h" :class "metric" :space-evenly false
|
||||
(box :class "label" label)
|
||||
(scale :min 0 :max 101 :active {onchange != ""} :value value :onchange onchange)))
|
||||
|
|
@ -14,27 +14,12 @@
|
|||
(defwidget bg []
|
||||
(box :class "bg-box" :orientation "v" :space-evenly false))
|
||||
|
||||
|
||||
;;;; Favorite App Locations
|
||||
|
||||
(defwidget favorites[]
|
||||
(box :class "favs" :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||
(button :onclick "pcmanfm ~ &" "")
|
||||
(button :onclick "pcmanfm ~/.config/ &" "漣")
|
||||
(button :onclick "pcmanfm ~/Downloads &" "")
|
||||
(button :onclick "pcmanfm ~/Pictures &" "")))
|
||||
|
||||
;;;; Small date in mm/dd/yy format
|
||||
|
||||
(defwidget smalldate []
|
||||
(label :class "small-date" :valign "center" :halign "center" :text TODAY))
|
||||
|
||||
;;;; User information fetch widget
|
||||
|
||||
(defwidget uinfo []
|
||||
(box :class "uinfo" :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||
(label :style "color: #5e81ac;" :text {host} :halign "center" :valign "center" :wrap "false" :limit-width 25)
|
||||
(label :style "color: #efefef;" :text "⎯⎯⎯⎯⎯⎯⎯⎯" :halign "center" :valign "center" :wrap "false" :limit-width 25)
|
||||
(label :style "color: #efefef;" :text "─────────────" :halign "center" :valign "center" :wrap "false" :limit-width 25)
|
||||
|
||||
;; Tags for values
|
||||
(box :orientation "h" :space-evenly "false" :spacing 10
|
||||
|
|
@ -48,7 +33,7 @@
|
|||
(box :orientation "v" :class "fetch"
|
||||
(label :style "color: #b48ead;" :halign "start" :text ": ${distro}")
|
||||
(label :style "color: #ebcb8b;" :halign "start" :text ": Hyprland")
|
||||
(label :style "color: #80a0c0;" :halign "start" :text ": ${shell}")
|
||||
(label :style "color: #80a0c0;" :halign "start" :text ": ${TODAY}")
|
||||
(label :style "color: #b48ead;" :halign "start" :text ": ${time}")
|
||||
))))
|
||||
|
||||
|
|
@ -56,10 +41,13 @@
|
|||
|
||||
(defwidget sys []
|
||||
(box :class "cpu" :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||
(metric :label "" :value {EWW_CPU.avg} :onchange "")
|
||||
(metric :label "" :value {EWW_RAM.used_mem_perc} :onchange "")
|
||||
(metric :label "龍" :value {(EWW_NET.wlan0.NET_UP)/100} :onchange "")
|
||||
(metric :label "" :value {(EWW_DISK["/"].free / EWW_DISK["/"].total) * 100} :onchange "")))
|
||||
(box :space-evenly false (image :path "images/cpu.svg")(metric :label "" :value {EWW_CPU.avg}) )
|
||||
(box :space-evenly false (image :path "images/ram.svg")(metric :label "" :value {EWW_RAM.used_mem_perc}) )
|
||||
(box :space-evenly false (image :path "images/disk.svg")(metric :label "" :value {EWW_DISK["/"].used_perc}) )
|
||||
(box :space-evenly false :visible { hostname == "luna" } (image :path { EWW_BATTERY.BAT1.status == "Discharging" ? "images/battery.svg" : "images/charging.svg" })(metric :label "" :value {EWW_CPU.avg}) )
|
||||
(box :space-evenly false :visible { hostname == "terra" } (image :path "images/gpu.svg")(metric :label "" :value gpu_load) )
|
||||
)
|
||||
)
|
||||
|
||||
;;;; Random Quote Widget
|
||||
|
||||
|
|
@ -70,26 +58,18 @@
|
|||
;;;; QuickSettings widget
|
||||
(defwidget quicksettings []
|
||||
(box :orientation "h" :space-evenly true :class "quicksettings" :spacing "10" :halign "center" :valign "center"
|
||||
(button :onclick "playerctl previous &" (image :path "images/prev.svg" :width 32 :height 32))
|
||||
(button :onclick "playerctl play-pause &" (image :path "images/play.svg" :width 32 :height 32))
|
||||
(button :onclick "playerctl next &" (image :path "images/next.svg" :width 32 :height 32))))
|
||||
(button :onclick "playerctl previous &" (image :path "images/prev.svg"))
|
||||
(button :onclick "playerctl play-pause &" (image :path "images/play.svg"))
|
||||
(button :onclick "playerctl next &" (image :path "images/next.svg"))))
|
||||
|
||||
;;;; AppBar widget
|
||||
(defwidget appbar []
|
||||
(box :orientation "h" :space-evenly true :class "appbar" :spacing "5" :halign "center" :valign "center"
|
||||
(button :style "color: #5e81ac;" :onclick "krita&" (image :path "images/krita.svg" :width 32 :height 32))
|
||||
(button :style "color: #81a1c1;" :onclick "firefox&" (image :path "images/firefox.svg" :width 32 :height 32))
|
||||
(button :style "color: #b48ead;" :onclick "vscodium&" (image :path "images/vscode.svg" :width 32 :height 32))
|
||||
(button :style "color: #bf616a;" :onclick "gimp&" (image :path "images/gimp.svg" :width 32 :height 32))))
|
||||
|
||||
;;;; TODO Notes Displaying widget
|
||||
|
||||
(defwidget notes []
|
||||
(box :spacing 5 :class "notes" :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||
(label :style "color: #5e81ac;" :text NOTES :halign "center" :valign "center" :wrap true :limit-width 150 :vexpand false :hexpand false)
|
||||
(box :orientation "h"
|
||||
(button :onclick "echo '' > ~/Documents/notes.txt" "[ Empty ]")
|
||||
(button :onclick "pcmanfm ~/Documents/notes.txt" "[ Edit TODO ]"))))
|
||||
(box :orientation "h" :space-evenly false :class "appbar" :spacing "10" :halign "center" :valign "center"
|
||||
(button :onclick "firefox &" (image :path "images/firefox.svg"))
|
||||
(button :onclick "kitty vim &" (image :path "images/vim.svg"))
|
||||
(button :onclick "kitty &" (image :path "images/kitty.svg"))
|
||||
)
|
||||
)
|
||||
|
||||
;;;; Rofi style search
|
||||
(defwidget searchapps []
|
||||
|
|
|
|||
|
|
@ -65,36 +65,10 @@
|
|||
:geometry (geometry :x "20"
|
||||
:y "335px"
|
||||
:width "170px"
|
||||
:height "70px"
|
||||
:height "74px"
|
||||
:anchor "top left")
|
||||
(appbar))
|
||||
|
||||
;;;; Favorite Locations Window
|
||||
|
||||
(defwindow favorites
|
||||
:wm-ignore: true
|
||||
:monitor 0
|
||||
:windowtype "dock"
|
||||
:geometry (geometry :x "270px"
|
||||
:y "415px"
|
||||
:width "100px"
|
||||
:height "160px"
|
||||
:anchor "top left")
|
||||
(favorites))
|
||||
|
||||
;;;; Small date Window
|
||||
|
||||
(defwindow smalldate
|
||||
:wm-ignore: true
|
||||
:monitor 0
|
||||
:windowtype "dock"
|
||||
:geometry (geometry :x "270px"
|
||||
:y "580px"
|
||||
:width "100px"
|
||||
:height "39px"
|
||||
:anchor "top left")
|
||||
(smalldate))
|
||||
|
||||
;;;; Background Container Window
|
||||
(defwindow bg
|
||||
:class "bg"
|
||||
|
|
@ -108,18 +82,6 @@
|
|||
:anchor "top left")
|
||||
(bg))
|
||||
|
||||
;;;; TODO Notes window
|
||||
(defwindow notes
|
||||
:wm-ignore: true
|
||||
:monitor 0
|
||||
:windowtype "dock"
|
||||
:geometry (geometry :x "20px"
|
||||
:y "630px"
|
||||
:width "350px"
|
||||
:height "100px"
|
||||
:anchor "top left")
|
||||
(notes))
|
||||
|
||||
;;;; Searching Windows
|
||||
|
||||
(defwindow searchapps
|
||||
|
|
|
|||
7
modules/wm/hyprland/config/eww/images/battery.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M7.5 10V14M11.5 10V14M15.5 10V14M21 13V11M6.2 18H16.8C17.9201 18 18.4802 18 18.908 17.782C19.2843 17.5903 19.5903 17.2843 19.782 16.908C20 16.4802 20 15.9201 20 14.8V9.2C20 8.0799 20 7.51984 19.782 7.09202C19.5903 6.71569 19.2843 6.40973 18.908 6.21799C18.4802 6 17.9201 6 16.8 6H6.2C5.0799 6 4.51984 6 4.09202 6.21799C3.71569 6.40973 3.40973 6.71569 3.21799 7.09202C3 7.51984 3 8.07989 3 9.2V14.8C3 15.9201 3 16.4802 3.21799 16.908C3.40973 17.2843 3.71569 17.5903 4.09202 17.782C4.51984 18 5.07989 18 6.2 18Z" stroke="#80a0c0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
7
modules/wm/hyprland/config/eww/images/charging.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M11 9L9.5 12H13.5L12 15M21 13V11M6.2 18H16.8C17.9201 18 18.4802 18 18.908 17.782C19.2843 17.5903 19.5903 17.2843 19.782 16.908C20 16.4802 20 15.9201 20 14.8V9.2C20 8.0799 20 7.51984 19.782 7.09202C19.5903 6.71569 19.2843 6.40973 18.908 6.21799C18.4802 6 17.9201 6 16.8 6H6.2C5.0799 6 4.51984 6 4.09202 6.21799C3.71569 6.40973 3.40973 6.71569 3.21799 7.09202C3 7.51984 3 8.07989 3 9.2V14.8C3 15.9201 3 16.4802 3.21799 16.908C3.40973 17.2843 3.71569 17.5903 4.09202 17.782C4.51984 18 5.07989 18 6.2 18Z" stroke="#80a0c0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1 KiB |
7
modules/wm/hyprland/config/eww/images/cpu.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M21 8H17.8174M21 12H18M21 16H17.8174M6.18257 8H3M8 6.18257V3M8 21L8 17.8174M12 6V3M12 21V18M16 6.18257V3M16 21V17.8174M6 12H3M6.18257 16H3M10.8 18H13.2C14.8802 18 15.7202 18 16.362 17.673C16.9265 17.3854 17.3854 16.9265 17.673 16.362C18 15.7202 18 14.8802 18 13.2V10.8C18 9.11984 18 8.27976 17.673 7.63803C17.3854 7.07354 16.9265 6.6146 16.362 6.32698C15.7202 6 14.8802 6 13.2 6H10.8C9.11984 6 8.27976 6 7.63803 6.32698C7.07354 6.6146 6.6146 7.07354 6.32698 7.63803C6 8.27976 6 9.11984 6 10.8V13.2C6 14.8802 6 15.7202 6.32698 16.362C6.6146 16.9265 7.07354 17.3854 7.63803 17.673C8.27976 18 9.11984 18 10.8 18ZM10 10H14V14H10V10Z" stroke="#80a0c0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
7
modules/wm/hyprland/config/eww/images/disk.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M3 8.2C3 7.07989 3 6.51984 3.21799 6.09202C3.40973 5.71569 3.71569 5.40973 4.09202 5.21799C4.51984 5 5.0799 5 6.2 5H9.67452C10.1637 5 10.4083 5 10.6385 5.05526C10.8425 5.10425 11.0376 5.18506 11.2166 5.29472C11.4184 5.4184 11.5914 5.59135 11.9373 5.93726L12.0627 6.06274C12.4086 6.40865 12.5816 6.5816 12.7834 6.70528C12.9624 6.81494 13.1575 6.89575 13.3615 6.94474C13.5917 7 13.8363 7 14.3255 7H17.8C18.9201 7 19.4802 7 19.908 7.21799C20.2843 7.40973 20.5903 7.71569 20.782 8.09202C21 8.51984 21 9.0799 21 10.2V15.8C21 16.9201 21 17.4802 20.782 17.908C20.5903 18.2843 20.2843 18.5903 19.908 18.782C19.4802 19 18.9201 19 17.8 19H6.2C5.07989 19 4.51984 19 4.09202 18.782C3.71569 18.5903 3.40973 18.2843 3.21799 17.908C3 17.4802 3 16.9201 3 15.8V8.2Z" stroke="#80a0c0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
107
modules/wm/hyprland/config/eww/images/firefox.svg
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="32px" height="32px" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C14.1368 8.90428 12.7913 9.42358 11.683 10.298C11.5672 10.1998 11.4461 10.1081 11.3202 10.0232C11.0008 8.9027 10.9873 7.71683 11.2811 6.58931C9.84091 7.24697 8.72095 8.28463 7.90664 9.20303H7.90023C7.34433 8.49742 7.38341 6.17015 7.41491 5.68435C7.40849 5.65395 7.00076 5.89656 6.94826 5.93339C6.45773 6.2841 5.9992 6.67771 5.57805 7.1096C5.0988 7.59655 4.66096 8.12276 4.26909 8.68274C3.36752 9.96323 2.72814 11.4101 2.3879 12.9398C2.38149 12.9702 2.37565 13.0017 2.36924 13.0327C2.34299 13.1561 2.24791 13.7751 2.23099 13.9096V13.9406C2.10704 14.5803 2.02984 15.2282 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM12.8327 21.7239C12.8981 21.7549 12.9599 21.7894 13.027 21.8197L13.0363 21.8256C12.9692 21.7929 12.901 21.759 12.8333 21.7239H12.8327ZM27.6017 11.4642V11.4508V11.466V11.4642Z" fill="url(#paint0_linear_87_7118)"/>
|
||||
<path d="M28.9907 10.7265C28.3818 9.25741 27.1475 7.67141 26.1786 7.17041C26.9672 8.72017 27.4234 10.2746 27.5978 11.4344V11.4631C28.9208 15.0572 28.1998 18.7121 27.1615 20.9452C25.555 24.4002 21.6661 27.9416 15.578 27.7692C9.00581 27.5821 3.21175 22.6885 2.1297 16.2842C1.93254 15.2735 2.1297 14.7608 2.22886 13.9406C2.10812 14.5725 2.06203 14.7555 2.00195 15.8791V15.951C2.00195 23.7098 8.27842 30 16.0202 30C22.954 30 28.7108 24.9549 29.8383 18.328C29.8616 18.1485 29.8809 17.9673 29.9019 17.7861C30.179 15.3764 29.8692 12.8439 28.9907 10.7265Z" fill="url(#paint1_radial_87_7118)"/>
|
||||
<path d="M28.9907 10.7265C28.3818 9.25741 27.1475 7.67141 26.1786 7.17041C26.9672 8.72017 27.4234 10.2746 27.5978 11.4344V11.4631C28.9208 15.0572 28.1998 18.7121 27.1615 20.9452C25.555 24.4002 21.6661 27.9416 15.578 27.7692C9.00581 27.5821 3.21175 22.6885 2.1297 16.2842C1.93254 15.2735 2.1297 14.7608 2.22886 13.9406C2.10812 14.5725 2.06203 14.7555 2.00195 15.8791V15.951C2.00195 23.7098 8.27842 30 16.0202 30C22.954 30 28.7108 24.9549 29.8383 18.328C29.8616 18.1485 29.8809 17.9673 29.9019 17.7861C30.179 15.3764 29.8692 12.8439 28.9907 10.7265Z" fill="url(#paint2_radial_87_7118)"/>
|
||||
<path d="M22.1776 12.3773C22.2085 12.3989 22.2359 12.4205 22.2651 12.4422C21.9133 11.8161 21.4749 11.243 20.9631 10.7398C16.6058 6.37292 19.821 1.27058 20.3629 1.01102L20.3687 1.00342C16.8473 3.07054 15.6526 6.89438 15.543 8.80776C15.7063 8.79665 15.869 8.78262 16.0353 8.78262C18.6631 8.78262 20.952 10.2312 22.1776 12.3773Z" fill="url(#paint3_radial_87_7118)"/>
|
||||
<path d="M16.0446 13.2499C16.0219 13.6006 14.7899 14.8049 14.3589 14.8049C10.3725 14.8049 9.72559 17.2216 9.72559 17.2216C9.90058 19.2572 11.3157 20.9332 13.0277 21.82C13.1059 21.8604 13.1846 21.8966 13.2611 21.9329C13.3981 21.9913 13.5358 22.0498 13.6729 22.1018C14.26 22.3094 14.8748 22.4276 15.4969 22.4526C22.4838 22.7811 23.8383 14.08 18.7955 11.5534C20.0864 11.3283 21.4269 11.8492 22.1753 12.3759C20.9503 10.2299 18.6608 8.78125 16.033 8.78125C15.8667 8.78125 15.704 8.79528 15.5406 8.80639C14.1345 8.90403 12.7903 9.4239 11.6832 10.2983C11.8973 10.4801 12.1388 10.7221 12.6468 11.2237C13.6 12.1661 16.0394 13.1359 16.0446 13.2499Z" fill="url(#paint4_radial_87_7118)"/>
|
||||
<path d="M16.0446 13.2499C16.0219 13.6006 14.7899 14.8049 14.3589 14.8049C10.3725 14.8049 9.72559 17.2216 9.72559 17.2216C9.90058 19.2572 11.3157 20.9332 13.0277 21.82C13.1059 21.8604 13.1846 21.8966 13.2611 21.9329C13.3981 21.9913 13.5358 22.0498 13.6729 22.1018C14.26 22.3094 14.8748 22.4276 15.4969 22.4526C22.4838 22.7811 23.8383 14.08 18.7955 11.5534C20.0864 11.3283 21.4269 11.8492 22.1753 12.3759C20.9503 10.2299 18.6608 8.78125 16.033 8.78125C15.8667 8.78125 15.704 8.79528 15.5406 8.80639C14.1345 8.90403 12.7903 9.4239 11.6832 10.2983C11.8973 10.4801 12.1388 10.7221 12.6468 11.2237C13.6 12.1661 16.0394 13.1359 16.0446 13.2499Z" fill="url(#paint5_radial_87_7118)"/>
|
||||
<path d="M11.0311 9.83093C11.1448 9.90459 11.2382 9.96656 11.3227 10.0233C11.0034 8.90275 10.9899 7.71688 11.2837 6.58936C9.84345 7.24702 8.72349 8.28468 7.90918 9.20308C7.97509 9.20132 10.0085 9.16449 11.0311 9.83093Z" fill="url(#paint6_radial_87_7118)"/>
|
||||
<path d="M2.1297 16.284C3.21175 22.6883 9.00581 27.5819 15.5827 27.769C21.6707 27.9414 25.5574 24.4 27.1661 20.945C28.2044 18.7113 28.9254 15.057 27.6025 11.4629V11.436C27.6025 11.4395 27.6025 11.4442 27.6054 11.4594C28.1024 14.7138 26.451 17.8665 23.8692 19.9986C23.8666 20.0045 23.8641 20.0106 23.8617 20.0167C18.8306 24.1223 14.0165 22.4936 13.0418 21.8289C12.9741 21.7962 12.9059 21.7623 12.8382 21.7272C9.9047 20.3242 8.69316 17.6438 8.95273 15.3469C6.47656 15.3469 5.63192 13.2529 5.63192 13.2529C5.63192 13.2529 7.85552 11.664 10.7861 13.046C13.5003 14.3262 16.0493 13.2535 16.0493 13.2529C16.0441 13.1389 13.6047 12.1662 12.6533 11.2267C12.1452 10.7251 11.9037 10.4831 11.6896 10.3013C11.5738 10.2031 11.4527 10.1114 11.3268 10.0265C11.2434 9.96809 11.1518 9.90963 11.0352 9.83421C10.0126 9.16778 7.97918 9.20461 7.9121 9.20636H7.90568C7.34978 8.50076 7.38886 6.17348 7.42036 5.68769C7.41395 5.65729 7.00621 5.89989 6.95371 5.93672C6.46318 6.28743 6.00465 6.68104 5.58351 7.11293C5.10426 7.59988 4.66642 8.12609 4.27455 8.68607C3.37298 9.96657 2.7336 11.4134 2.39336 12.9431C2.38228 12.97 1.88354 15.1523 2.1297 16.284Z" fill="url(#paint7_radial_87_7118)"/>
|
||||
<path d="M20.9634 10.7399C21.4752 11.2431 21.9135 11.8162 22.2653 12.4423C22.3383 12.4971 22.4083 12.5557 22.4753 12.6176C25.6532 15.55 23.9908 19.7012 23.8642 19.9993C26.446 17.8673 28.0973 14.7146 27.6003 11.4601C26.0155 7.49777 23.3276 5.90065 21.1325 2.42407C21.0211 2.24869 20.9103 2.07331 20.8018 1.88566C20.7406 1.77985 20.691 1.68397 20.6478 1.59336C20.5569 1.41757 20.4866 1.23179 20.4384 1.03975C20.4388 1.03063 20.4358 1.02169 20.43 1.01467C20.4241 1.00765 20.4159 1.00305 20.4069 1.00175C20.3983 0.999416 20.3893 0.999416 20.3807 1.00175C20.3783 1.00281 20.3762 1.00419 20.3742 1.00584C20.3707 1.00584 20.3672 1.00994 20.3637 1.0111C19.8213 1.27066 16.606 6.37301 20.9634 10.7399Z" fill="url(#paint8_radial_87_7118)"/>
|
||||
<path d="M22.4743 12.6146C22.4073 12.5526 22.3372 12.4941 22.2643 12.4392C22.2357 12.4176 22.206 12.396 22.1768 12.3743C21.4284 11.8482 20.088 11.3267 18.7971 11.5518C23.8393 14.0784 22.4854 22.7795 15.4985 22.451C14.8764 22.426 14.2616 22.3078 13.6744 22.1002C13.5374 22.0488 13.3997 21.9921 13.2626 21.9313C13.1833 21.895 13.1045 21.8588 13.0293 21.8185L13.0386 21.8243C14.0133 22.4908 18.8274 24.1194 23.8585 20.0121C23.8585 20.0121 23.8614 20.0045 23.8661 19.9939C23.9909 19.7011 25.6534 15.5499 22.4743 12.6146Z" fill="url(#paint9_radial_87_7118)"/>
|
||||
<path d="M9.72532 17.2215C9.72532 17.2215 10.3722 14.8048 14.3586 14.8048C14.7897 14.8048 16.0216 13.5994 16.0444 13.2498C16.0671 12.9002 13.4953 14.3231 10.7811 13.0428C7.85055 11.6608 5.62695 13.2498 5.62695 13.2498C5.62695 13.2498 6.47159 15.3438 8.94776 15.3438C8.68819 17.6407 9.89973 20.3187 12.8332 21.7241C12.8986 21.755 12.9604 21.7895 13.0275 21.8199C11.3154 20.9349 9.90207 19.2571 9.72532 17.2215Z" fill="url(#paint10_radial_87_7118)"/>
|
||||
<path d="M28.9905 10.7265C28.3816 9.2574 27.1473 7.67139 26.1784 7.17039C26.967 8.72015 27.4232 10.2746 27.5976 11.4344C27.5976 11.4344 27.5976 11.4426 27.6005 11.4578C26.0156 7.49777 23.3277 5.90065 21.1327 2.42407C21.0213 2.24869 20.9105 2.07331 20.802 1.88566C20.7407 1.77985 20.6911 1.68397 20.648 1.59336C20.557 1.41757 20.4867 1.23179 20.4386 1.03975C20.439 1.03063 20.4359 1.02169 20.4301 1.01467C20.4243 1.00765 20.4161 1.00305 20.4071 1.00175C20.3985 0.999416 20.3894 0.999416 20.3808 1.00175C20.3785 1.00281 20.3763 1.00419 20.3744 1.00584C20.3709 1.00584 20.3674 1.00994 20.3639 1.0111L20.3697 1.0035C16.8483 3.07063 15.6536 6.89446 15.544 8.80784C15.7073 8.79673 15.8701 8.78271 16.0363 8.78271C18.6641 8.78271 20.9531 10.2313 22.1786 12.3774C21.4302 11.8512 20.0898 11.3298 18.7989 11.5549C23.841 14.0815 22.4872 22.7826 15.5002 22.454C14.8782 22.429 14.2633 22.3108 13.6762 22.1033C13.5391 22.0518 13.4015 21.9951 13.2644 21.9343C13.1851 21.8981 13.1063 21.8618 13.0311 21.8215L13.0404 21.8273C12.9727 21.7946 12.9045 21.7607 12.8368 21.7256C12.9021 21.7566 12.964 21.7911 13.0311 21.8215C11.3155 20.9347 9.90216 19.2569 9.72542 17.2213C9.72542 17.2213 10.3723 14.8046 14.3587 14.8046C14.7898 14.8046 16.0217 13.5992 16.0445 13.2496C16.0392 13.1356 13.5998 12.1628 12.6484 11.2234C12.1403 10.7218 11.8988 10.4798 11.6848 10.298C11.5689 10.1998 11.4478 10.1081 11.3219 10.0232C11.0026 8.9027 10.9891 7.71683 11.2829 6.58931C9.84266 7.24697 8.7227 8.28463 7.90839 9.20303H7.90198C7.34608 8.49742 7.38516 6.17015 7.41666 5.68435C7.41024 5.65395 7.00251 5.89656 6.95001 5.93339C6.45948 6.2841 6.00095 6.67771 5.5798 7.1096C5.10055 7.59655 4.66271 8.12276 4.27084 8.68274C3.36927 9.96323 2.72989 11.4101 2.38965 12.9398C2.38324 12.9702 2.3774 13.0017 2.37099 13.0327C2.34474 13.1561 2.22574 13.7839 2.20941 13.9184C2.20941 13.9289 2.20941 13.9084 2.20941 13.9184C2.10019 14.5671 2.03026 15.2219 2 15.8791V15.951C2 23.7097 8.27646 30 16.0182 30C22.9521 30 28.7088 24.9549 29.8364 18.328C29.8597 18.1485 29.8789 17.9673 29.8999 17.786C30.1788 15.3763 29.869 12.8439 28.9905 10.7265ZM27.5999 11.4479V11.4631V11.4479Z" fill="url(#paint11_linear_87_7118)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_87_7118" x1="27.135" y1="5.49261" x2="3.81392" y2="27.9437" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.05" stop-color="#FFF44F"/>
|
||||
<stop offset="0.11" stop-color="#FFE847"/>
|
||||
<stop offset="0.22" stop-color="#FFC830"/>
|
||||
<stop offset="0.37" stop-color="#FF980E"/>
|
||||
<stop offset="0.4" stop-color="#FF8B16"/>
|
||||
<stop offset="0.46" stop-color="#FF672A"/>
|
||||
<stop offset="0.53" stop-color="#FF3647"/>
|
||||
<stop offset="0.7" stop-color="#E31587"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint1_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(26.0596 4.21879) scale(29.2246 29.2888)">
|
||||
<stop offset="0.13" stop-color="#FFBD4F"/>
|
||||
<stop offset="0.19" stop-color="#FFAC31"/>
|
||||
<stop offset="0.25" stop-color="#FF9D17"/>
|
||||
<stop offset="0.28" stop-color="#FF980E"/>
|
||||
<stop offset="0.4" stop-color="#FF563B"/>
|
||||
<stop offset="0.47" stop-color="#FF3750"/>
|
||||
<stop offset="0.71" stop-color="#F5156C"/>
|
||||
<stop offset="0.78" stop-color="#EB0878"/>
|
||||
<stop offset="0.86" stop-color="#E50080"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.3809 16.1925) scale(29.2246 29.2888)">
|
||||
<stop offset="0.3" stop-color="#960E18"/>
|
||||
<stop offset="0.35" stop-color="#B11927" stop-opacity="0.74"/>
|
||||
<stop offset="0.43" stop-color="#DB293D" stop-opacity="0.34"/>
|
||||
<stop offset="0.5" stop-color="#F5334B" stop-opacity="0.09"/>
|
||||
<stop offset="0.53" stop-color="#FF3750" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.904 -2.42815) scale(21.172 21.2184)">
|
||||
<stop offset="0.13" stop-color="#FFF44F"/>
|
||||
<stop offset="0.25" stop-color="#FFDC3E"/>
|
||||
<stop offset="0.51" stop-color="#FF9D12"/>
|
||||
<stop offset="0.53" stop-color="#FF980E"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint4_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12.1487 23.8433) scale(13.915 13.9455)">
|
||||
<stop offset="0.35" stop-color="#3A8EE6"/>
|
||||
<stop offset="0.47" stop-color="#5C79F0"/>
|
||||
<stop offset="0.67" stop-color="#9059FF"/>
|
||||
<stop offset="1" stop-color="#C139E6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint5_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.8005 12.7119) rotate(-13.9265) scale(7.37316 8.67852)">
|
||||
<stop offset="0.21" stop-color="#9059FF" stop-opacity="0"/>
|
||||
<stop offset="0.28" stop-color="#8C4FF3" stop-opacity="0.06"/>
|
||||
<stop offset="0.75" stop-color="#7716A8" stop-opacity="0.45"/>
|
||||
<stop offset="0.97" stop-color="#6E008B" stop-opacity="0.6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint6_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(15.011 3.02041) scale(10.0108 10.0328)">
|
||||
<stop stop-color="#FFE226"/>
|
||||
<stop offset="0.12" stop-color="#FFDB27"/>
|
||||
<stop offset="0.3" stop-color="#FFC82A"/>
|
||||
<stop offset="0.5" stop-color="#FFA930"/>
|
||||
<stop offset="0.73" stop-color="#FF7E37"/>
|
||||
<stop offset="0.79" stop-color="#FF7139"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint7_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(22.8805 -3.34313) scale(42.7109 42.8046)">
|
||||
<stop offset="0.11" stop-color="#FFF44F"/>
|
||||
<stop offset="0.46" stop-color="#FF980E"/>
|
||||
<stop offset="0.62" stop-color="#FF5634"/>
|
||||
<stop offset="0.72" stop-color="#FF3647"/>
|
||||
<stop offset="0.9" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint8_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.7517 1.33374) rotate(84.2447) scale(31.1996 20.4543)">
|
||||
<stop stop-color="#FFF44F"/>
|
||||
<stop offset="0.06" stop-color="#FFE847"/>
|
||||
<stop offset="0.17" stop-color="#FFC830"/>
|
||||
<stop offset="0.3" stop-color="#FF980E"/>
|
||||
<stop offset="0.36" stop-color="#FF8B16"/>
|
||||
<stop offset="0.45" stop-color="#FF672A"/>
|
||||
<stop offset="0.57" stop-color="#FF3647"/>
|
||||
<stop offset="0.74" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint9_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.7757 6.73593) scale(26.6644 26.723)">
|
||||
<stop offset="0.14" stop-color="#FFF44F"/>
|
||||
<stop offset="0.48" stop-color="#FF980E"/>
|
||||
<stop offset="0.59" stop-color="#FF5634"/>
|
||||
<stop offset="0.66" stop-color="#FF3647"/>
|
||||
<stop offset="0.9" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint10_radial_87_7118" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(21.8145 8.30059) scale(29.1844 29.2484)">
|
||||
<stop offset="0.09" stop-color="#FFF44F"/>
|
||||
<stop offset="0.23" stop-color="#FFE141"/>
|
||||
<stop offset="0.51" stop-color="#FFAF1E"/>
|
||||
<stop offset="0.63" stop-color="#FF980E"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint11_linear_87_7118" x1="26.855" y1="5.37218" x2="7.01043" y2="25.1739" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.17" stop-color="#FFF44F" stop-opacity="0.8"/>
|
||||
<stop offset="0.27" stop-color="#FFF44F" stop-opacity="0.63"/>
|
||||
<stop offset="0.49" stop-color="#FFF44F" stop-opacity="0.22"/>
|
||||
<stop offset="0.6" stop-color="#FFF44F" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
7
modules/wm/hyprland/config/eww/images/gpu.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="20px" height="20px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M12 17V21M8 21H16M6.2 17H17.8C18.9201 17 19.4802 17 19.908 16.782C20.2843 16.5903 20.5903 16.2843 20.782 15.908C21 15.4802 21 14.9201 21 13.8V6.2C21 5.0799 21 4.51984 20.782 4.09202C20.5903 3.71569 20.2843 3.40973 19.908 3.21799C19.4802 3 18.9201 3 17.8 3H6.2C5.0799 3 4.51984 3 4.09202 3.21799C3.71569 3.40973 3.40973 3.71569 3.21799 4.09202C3 4.51984 3 5.07989 3 6.2V13.8C3 14.9201 3 15.4802 3.21799 15.908C3.40973 16.2843 3.71569 16.5903 4.09202 16.782C4.51984 17 5.07989 17 6.2 17Z" stroke="#80a0c0" stroke-width="2" stroke-linecap="round"/> </g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1,008 B |
1
modules/wm/hyprland/config/eww/images/kitty.svg
Normal file
|
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="32px" height="32px" viewBox="0 0 240 240"><g transform="translate(0 -812.362)"><rect width="100.446" height="161.551" x="72.824" y="850.13" ry="0" style="fill:#ddd;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.86876726;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path d="M67.896 1029.71h104.208a7.065 7.065 0 0 0 7.065-7.066V918.436a7.065 7.065 0 0 0-7.065-7.065H67.896a7.065 7.065 0 0 0-7.065 7.065v104.208a7.065 7.065 0 0 0 7.065 7.065m55.813-38.35h37.444a4.239 4.239 0 0 1 0 8.479H123.71a4.239 4.239 0 0 1 0-8.478m-45.032-45.71a4.239 4.239 0 0 1 5.991-5.99l26.48 26.464a4.24 4.24 0 0 1 0 5.992l-26.48 26.48a4.239 4.239 0 0 1-5.991-5.992l23.484-23.484z" style="stroke-width:1.41299629"/><path d="M96.085 898.143c1.881 0 3.386-3.574 3.386-8.17 0-4.595-1.505-8.169-3.386-8.169-1.88 0-3.385 3.574-3.385 8.17 0 4.595 1.504 8.17 3.385 8.17" style="clip-rule:evenodd;fill:#c0c81f;fill-opacity:1;fill-rule:evenodd;stroke-width:3.09913683"/><path d="M193.128 836.886c-4.596-4.85-25.53 1.022-38.295 8.936-9.957-5.106-21.956-8.17-34.721-8.17-13.02 0-25.02 3.064-34.977 8.17-12.765-7.914-33.955-14.042-38.295-8.936-4.595 5.106 3.32 26.296 12.765 38.04-.766 3.064-1.276 6.128-1.276 9.446 0 10.212 4.34 19.659 11.744 27.318h42.124c-1.276-2.553.511-4.085 8.17-4.085 7.659.255 9.19 1.532 8.17 4.085h42.124c7.404-7.66 11.744-17.36 11.744-27.318 0-3.318-.51-6.382-1.276-9.446 8.935-11.744 16.594-33.189 11.999-38.04m-97.015 67.4c-8.935 0-16.339-7.404-16.339-16.34s7.404-16.339 16.34-16.339 16.339 7.404 16.339 16.34-7.404 16.339-16.34 16.339m47.997 0c-8.936 0-16.34-7.404-16.34-16.34s7.404-16.339 16.34-16.339 16.34 7.404 16.34 16.34-7.15 16.339-16.34 16.339" style="clip-rule:evenodd;fill:#784421;fill-opacity:1;fill-rule:evenodd;stroke-width:2.55301046"/><g style="fill:#2b1100;fill-opacity:1"><path d="M168.507 903.265c15.318-19.148 46.72-28.339 67.655-15.063-24.509-3.83-46.72 2.553-67.655 15.063" style="clip-rule:evenodd;fill-rule:evenodd;stroke-width:2.55301046;fill:#2b1100;fill-opacity:1"/><path d="M167.486 898.67c8.68-20.425 34.466-33.7 55.145-26.552-21.7 2.808-39.316 11.233-55.145 26.551m-.256 9.957c15.83-15.063 50.806-20.169 61.528-4.34-21.7-6.893-40.593-3.83-61.527 4.34" style="clip-rule:evenodd;fill-rule:evenodd;stroke-width:2.55301046;fill:#2b1100;fill-opacity:1"/></g><g style="fill:#2b1100;fill-opacity:1"><path d="M71.493 903.265c-15.318-19.148-46.72-28.339-67.655-15.063 24.509-3.83 46.72 2.553 67.655 15.063" style="clip-rule:evenodd;fill-rule:evenodd;stroke-width:2.55301046;fill:#2b1100;fill-opacity:1"/><path d="M72.514 898.67c-8.68-20.425-34.466-33.7-55.145-26.552 21.7 2.808 39.316 11.233 55.145 26.551m.256 9.957c-15.83-15.063-50.806-20.169-61.528-4.34 21.7-6.893 40.593-3.83 61.527 4.34" style="clip-rule:evenodd;fill-rule:evenodd;stroke-width:2.55301046;fill:#2b1100;fill-opacity:1"/></g><path d="M52.6 893.563c-6.382 0-11.743 3.32-14.296 8.425h-.766c-6.893 0-12.765 5.106-12.765 11.489 0 8.935 9.19 13.786 17.615 10.722 5.106 7.404 16.084 7.915 20.17 0 6.126-.255 16.083-1.276 17.615-10.722 1.021-6.383-5.617-11.489-12.765-11.489h-.766c-2.042-5.106-7.659-8.425-14.041-8.425m134.8 0c6.382 0 11.743 3.32 14.296 8.425h.766c3.574 0 12.765 5.106 12.765 11.489 0 8.935-9.19 13.786-17.615 10.722-5.107 7.404-16.084 7.915-20.17 0-6.126-.255-16.083-1.276-17.615-10.722-1.021-6.383 9.19-11.489 12.765-11.489h.766c2.042-5.106 7.659-8.425 14.041-8.425" style="clip-rule:evenodd;fill:#483737;fill-opacity:1;fill-rule:evenodd;stroke-width:2.55301046"/><path d="M143.542 898.143c1.881 0 3.386-3.574 3.386-8.17 0-4.595-1.505-8.169-3.386-8.169-1.88 0-3.386 3.574-3.386 8.17 0 4.595 1.505 8.17 3.386 8.17" style="clip-rule:evenodd;fill:#c0c81f;fill-opacity:1;fill-rule:evenodd;stroke-width:3.09913683"/></g></svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
72
modules/wm/hyprland/config/eww/images/ram.svg
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
fill="#80a0c0"
|
||||
version="1.1"
|
||||
id="svg2430"
|
||||
viewBox="0 0 175.5 175.5"
|
||||
xml:space="preserve"
|
||||
width="20px"
|
||||
height="20px"
|
||||
stroke="#80a0c0"
|
||||
sodipodi:docname="ram-alt-svgrepo-com(1).svg"
|
||||
inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="56.45"
|
||||
inkscape:cx="10.008857"
|
||||
inkscape:cy="10"
|
||||
inkscape:window-width="2166"
|
||||
inkscape:window-height="1426"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
|
||||
<g
|
||||
id="SVGRepo_bgCarrier"
|
||||
stroke-width="0" />
|
||||
|
||||
<g
|
||||
id="SVGRepo_tracerCarrier"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round" />
|
||||
|
||||
<g
|
||||
id="SVGRepo_iconCarrier"> <g
|
||||
id="layer1"
|
||||
transform="translate(-274.47006,-427.80075)"> <g
|
||||
id="g12"
|
||||
transform="matrix(1.25,0,0,1.25,317.06281,455.86587)"> <path
|
||||
id="path14"
|
||||
d="M35.3,19.6l-1.9,6.5C26.3,11.8,17.9,4.2,7.8,4.2c-11,0-16.3,7.3-17.9,9.7C-7.3,6.8,0.1,0.6,10,0.6 C23.6,0.6,31.3,11.3,35.3,19.6z" /> </g> <g
|
||||
id="g16"
|
||||
transform="matrix(1.25,0,0,1.25,310.22081,498.04487)"> <path
|
||||
id="path18"
|
||||
d="M-10.1,0.6C-10.1,24.5-3.1,36,7.3,36c4.8,0,8.3-3,8.3-8c0-4.2-1.8-7.5-2.6-8.9c0.3,1.4,0.5,2.9,0.5,4.7 c0,4.1-2.8,5.5-5.1,5.5C1.6,29.4-5.4,15.9-7.3,0.6C-8.2,0.6-10.2,0.6-10.1,0.6z" /> </g> <g
|
||||
id="g20"
|
||||
transform="matrix(1.25,0,0,1.25,376.05456,455.86587)"> <path
|
||||
id="path22"
|
||||
d="M15.1,0.6c9.9,0,17.3,6.2,20.2,13.3c-1.6-2.3-7-9.7-17.9-9.7C7.2,4.2-1.2,11.8-8.2,26.1l-1.9-6.5 C-6.2,11.3,1.5,0.6,15.1,0.6z" /> </g> <g
|
||||
id="g24"
|
||||
transform="matrix(1.25,0,0,1.25,407.54369,498.04487)"> <path
|
||||
id="path26"
|
||||
d="M12.7,0.6C10.8,15.9,3.8,29.4-3.1,29.4c-2.3,0-5-1.3-5-5.5c0-1.8,0.2-3.3,0.5-4.7c-0.7,1.3-2.6,4.7-2.6,8.9 c0,4.9,3.4,8,8.3,8C8.5,36,15.5,24.5,15.5,0.6C15.6,0.6,13.6,0.6,12.7,0.6z" /> </g> <g
|
||||
id="g28"
|
||||
transform="matrix(1.25,0,0,1.25,312.02006,472.3185)"> <path
|
||||
id="path30"
|
||||
d="M75,0.6c-8.9,0-17.6,7.1-22.7,23.4l3.4,2.3l-1.6,8L47.7,37l-1.1,7.9l3.1-3.8l3.3-1.4l-1,5.1l-5.7,2.3l-2,13.7 l1.4,4.4l-5.5,2.2l-5.5-2.2l1.4-4.4l-2-13.7l-5.7-2.3l-1-5.1l3.3,1.4l3.1,3.8L32.6,37l-6.3-2.6l-1.6-8l3.4-2.3 C22.9,7.7,14.2,0.6,5.4,0.6c-11,0-15.5,10.4-14.9,19h2.6C-4.7,31.8,1.4,42,6.1,42c1.4,0,2.2-1.1,2.2-2.9c0-4.3-2.9-8.8-2.9-16.9 c0-3.8,1.2-6.1,4.1-6.1c1.9,0,3.5,2,4.4,4.2c-1.7,6.1-1.5,11.2,3.4,13.4c2.4,1.1,5.3,2.4,5.3,2.4s3.1,13.1,3.3,14.1 c0.2,0.9,0.7,2,1.1,2.8c0.6,1,4.6,8,4.6,8s1.4,6.9,1.7,8.4c0.8,4,3.6,4,6.8,4c3.2,0,6,0,6.8-4c0.3-1.5,1.7-8.4,1.7-8.4 s4.1-7,4.6-8c0.4-0.7,0.9-1.9,1.1-2.8c0.2-0.9,3.3-14.1,3.3-14.1s2.9-1.3,5.3-2.4c4.9-2.2,5.1-7.3,3.4-13.4 c0.9-2.2,2.5-4.2,4.5-4.2c2.8,0,4.1,2.4,4.1,6.1c0,8.2-2.9,12.7-2.9,16.9c0,1.8,0.7,2.9,2.2,2.9c4.6,0,10.8-10.3,13-22.4h2.6 C90.5,11,86,0.6,75,0.6z M19.2,31.4c-3.5-1.5-3.8-5.6-2.7-11l3.8,5.9l1.4,6.1C21.7,32.5,20.3,31.9,19.2,31.4z M61.2,31.4 c-1.2,0.5-2.5,1.1-2.5,1.1l1.4-6.1l3.8-5.9C65,25.8,64.7,29.9,61.2,31.4z" /> </g> </g> </g>
|
||||
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
48
modules/wm/hyprland/config/eww/images/vim.svg
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg width="32px" height="32px" viewBox="-0.5 0 257 257" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
||||
<g>
|
||||
<path d="M128.286,1.952 L1.945,127.885 L128.286,254.4 L254.047,127.885 L128.286,1.952" fill="#019833">
|
||||
</path>
|
||||
<path d="M128.264,13.516 L128.264,2.885 L2.774,127.908 L13.527,127.908 L128.264,13.516" fill="#66FE98">
|
||||
</path>
|
||||
<path d="M128.264,13.516 L128.264,2.885 L254.144,127.908 L242.508,127.908 L128.264,13.516" fill="#45FE02">
|
||||
</path>
|
||||
<path fill="#45FE02">
|
||||
</path>
|
||||
<path d="M128.264,242.836 L128.264,254.605 L2.774,127.908 L13.527,127.908 L128.264,242.836" fill="#017D17">
|
||||
</path>
|
||||
<path d="M128.264,242.836 L128.264,254.605 L254.144,127.908 L242.508,127.908 L128.264,242.836" fill="#005D04">
|
||||
</path>
|
||||
<path d="M65.226,230.591 L40.9,230.591 L31.4,221.333 L31.4,44.55 L23.86,44.55 L17.405,38.086 L17.405,18.325 L24.092,11.072 L109.167,11.072 L116.816,18.73 L116.816,37.486 L110.46,45.233 L104.032,45.233 L104.032,104.991 L164.519,45.233 L161.142,45.233 L154.107,37.646 L154.107,17.758 L161.019,11.413 L246.891,11.413 L253.687,18.218 L253.687,37.028 L65.226,230.591" fill="#000000">
|
||||
</path>
|
||||
<path d="M128.264,256.342 L0,127.908 L128.264,0 L256,127.908 L128.264,256.342 L128.264,256.342 Z M3.929,127.908 L128.264,252.41 L252.069,127.908 L128.264,3.935 L3.929,127.908 L3.929,127.908 Z" fill="#000000">
|
||||
</path>
|
||||
<path d="M108.075,22.742 L111.854,20.301 L107.993,16.293 L26.156,16.293 L21.998,20.457 L21.998,36.207 L26.608,40.823 L28.807,36.207 L25.915,33.31 L25.915,22.207 L28.084,20.276 L105.348,20.371 L108.075,22.742" fill="#FEFEFE">
|
||||
</path>
|
||||
<path d="M41.458,35.833 L41.458,220.167 L44.05,222.635 L41.973,226.56 L36.522,221.191 L36.522,40.612 L41.458,35.833" fill="#FEFEFE">
|
||||
</path>
|
||||
<path d="M28.236,35.833 L26.608,40.823 L36.494,40.823 L42.213,35.833 L28.236,35.833" fill="#808080">
|
||||
</path>
|
||||
<path d="M166.531,35.897 L163.074,33.455 L163.074,23.559 L166.69,19.938 L242.139,19.938 L245.032,23.8 L249.149,20.551 L244.911,16.679 L163.797,16.679 L159.759,20.722 L159.759,36.593 L164.011,40.441 M98.396,116.751 L90.517,135.895 L179.465,46.586 L179.03,35.782 L98.396,116.751" fill="#FEFEFE">
|
||||
</path>
|
||||
<path d="M107.897,22.671 L111.854,20.301 L111.854,35.833 L107.337,40.356 L98.559,40.356 L98.396,116.751 L90.547,135.851 L90.547,35.833 L105.206,35.833 L107.933,33.614 L107.897,22.671" fill="#808080">
|
||||
</path>
|
||||
<path d="M244.764,22.722 L249.149,20.551 L249.149,34.734 L62.408,226.56 L41.973,226.56 L43.967,222.79 L59.662,222.791 L244.791,31.379 L244.764,22.722" fill="#808080">
|
||||
</path>
|
||||
<path d="M179.03,35.782 L174.482,40.351 L164.011,40.441 L166.568,35.851 C166.653,35.851 179.03,35.782 179.03,35.782" fill="#808080">
|
||||
</path>
|
||||
<path d="M165.973,19.79 L163.083,22.683 L163.083,33.307 L165.614,35.841 L178.986,35.841 L178.986,46.106 L90.526,135.889 L90.526,35.968 L105.227,35.968 L108.243,32.948 L108.243,22.197 L105.459,20.043 L28.093,20.043 L25.562,22.578 L25.562,33.56 L28.135,36.137 L41.592,36.137 L41.592,220.139 L44.123,222.673 L59.415,222.673 L244.794,31.131 L244.794,22.683 L241.904,19.79 L165.973,19.79" fill="#CCCCCC">
|
||||
</path>
|
||||
<path d="M59.519,222.918 L44.022,222.918 L41.348,220.24 L41.348,36.381 L28.034,36.381 L25.318,33.661 L25.318,22.476 L27.992,19.799 L105.543,19.799 L108.488,22.077 L108.488,33.049 L105.329,36.212 L90.77,36.212 L90.77,135.293 L178.742,46.005 L178.742,36.086 L165.513,36.086 L162.839,33.408 L162.839,22.582 L165.871,19.545 L242.005,19.545 L245.038,22.582 L245.038,31.23 L244.97,31.301 L59.519,222.918 L59.519,222.918 Z M44.225,222.429 L59.312,222.429 L244.55,31.033 L244.55,22.784 L241.803,20.034 L166.074,20.034 L163.327,22.784 L163.327,33.206 L165.715,35.597 L179.231,35.597 L179.231,46.206 L179.161,46.277 L90.282,136.485 L90.282,35.724 L105.126,35.724 L107.999,32.846 L107.999,22.317 L105.376,20.287 L28.194,20.287 L25.806,22.679 L25.806,33.459 L28.237,35.893 L41.836,35.893 L41.836,220.037 L44.225,222.429 L44.225,222.429 Z" fill="#808080">
|
||||
</path>
|
||||
<path d="M134.566,143.819 C134.425,143.848 134.295,143.914 134.186,144.009 L130.601,147.092 C130.494,147.19 130.414,147.313 130.369,147.451 L126.783,157.505 C126.675,157.806 126.749,158.142 126.973,158.371 L129.715,161.116 C129.874,161.269 130.086,161.352 130.306,161.349 L141.379,161.349 C141.599,161.352 141.811,161.269 141.969,161.116 L144.859,158.202 C144.959,158.102 145.031,157.978 145.07,157.843 L148.15,147.261 C148.235,146.969 148.154,146.653 147.939,146.438 L145.555,144.051 C145.397,143.898 145.184,143.815 144.965,143.819 L134.735,143.819 C134.679,143.813 134.622,143.813 134.566,143.819 L134.566,143.819 Z M114.276,172.162 C113.965,172.229 113.72,172.467 113.643,172.775 L112.272,178.224 C112.161,178.67 112.432,179.123 112.878,179.234 C112.942,179.25 113.007,179.258 113.073,179.259 L119.591,179.259 L103.434,225.449 C103.288,225.886 103.523,226.358 103.959,226.504 C104.041,226.532 104.127,226.547 104.215,226.548 L127.732,226.548 C128.095,226.553 128.419,226.322 128.534,225.977 L130.074,221.014 C130.208,220.574 129.961,220.108 129.521,219.973 C129.441,219.949 129.357,219.936 129.272,219.937 L123.957,219.937 L139.945,173.261 C140.091,172.824 139.856,172.352 139.42,172.206 C139.338,172.178 139.251,172.163 139.164,172.162 L114.444,172.162 C114.388,172.157 114.332,172.157 114.276,172.162 L114.276,172.162 Z M189.111,172.331 C188.93,172.369 188.766,172.465 188.646,172.606 L183.753,178.139 L175.97,178.139 L170.781,172.754 C170.626,172.593 170.414,172.502 170.191,172.5 L151.609,172.5 C151.259,172.501 150.947,172.72 150.828,173.049 L149.12,178.161 C148.974,178.597 149.208,179.069 149.644,179.216 C149.727,179.243 149.813,179.258 149.9,179.259 L154.878,179.259 L139.396,224.942 C139.25,225.379 139.485,225.851 139.921,225.998 C140.003,226.025 140.09,226.04 140.177,226.041 L159.961,226.041 C160.311,226.04 160.622,225.821 160.742,225.492 L162.26,221.035 C162.406,220.599 162.172,220.126 161.736,219.98 C161.653,219.952 161.567,219.938 161.48,219.937 L158.021,219.937 L167.892,188.826 L185.757,188.826 L174.494,224.964 C174.359,225.404 174.606,225.87 175.046,226.004 C175.127,226.029 175.211,226.041 175.295,226.041 L194.383,226.041 C194.715,226.038 195.013,225.839 195.143,225.534 L196.851,221.436 C197.021,221.009 196.812,220.524 196.385,220.355 C196.291,220.318 196.192,220.298 196.092,220.296 L192.633,220.296 L202.673,188.657 L219.673,188.657 L208.241,224.964 C208.107,225.404 208.354,225.87 208.793,226.004 C208.874,226.029 208.958,226.041 209.043,226.041 L230.008,226.041 C230.352,226.043 230.663,225.833 230.789,225.513 L232.497,221.056 C232.655,220.624 232.433,220.146 232.001,219.988 C231.91,219.954 231.814,219.937 231.717,219.937 L227.561,219.937 L240.196,178.858 C240.28,178.598 240.233,178.315 240.069,178.097 L236.146,172.817 C235.984,172.611 235.733,172.493 235.471,172.5 L220.475,172.5 C220.244,172.496 220.023,172.588 219.863,172.754 L215.138,177.949 L206.87,177.949 L201.977,172.585 C201.817,172.419 201.595,172.327 201.365,172.331 L189.279,172.331 C189.223,172.326 189.167,172.326 189.111,172.331 L189.111,172.331 Z" fill="#CCCCCC">
|
||||
</path>
|
||||
<path d="M128.359,162.524 C128.882,163.028 129.566,163.304 130.26,163.304 C130.275,163.304 130.29,163.304 130.306,163.303 L141.345,163.303 C142.087,163.326 142.789,163.04 143.358,162.493 L146.241,159.584 C146.575,159.25 146.82,158.833 146.947,158.389 L150.026,147.809 C150.311,146.83 150.041,145.774 149.321,145.057 L146.912,142.644 C146.377,142.128 145.674,141.844 144.965,141.864 L134.805,141.864 C134.659,141.856 134.513,141.859 134.369,141.874 L134.164,141.906 C133.694,142.005 133.255,142.224 132.912,142.526 L129.326,145.61 L129.285,145.647 C128.936,145.965 128.673,146.367 128.521,146.814 L124.943,156.845 C124.584,157.846 124.834,158.982 125.59,159.752 L128.359,162.524 L128.359,162.524 Z M144.513,145.773 L146.088,147.35 L143.272,157.026 L140.926,159.394 L130.758,159.395 L128.861,157.495 L132.118,148.365 L135.132,145.773 L144.513,145.773 L144.513,145.773 Z" fill="#000000">
|
||||
</path>
|
||||
<path d="M241.638,176.931 L237.715,171.651 L237.68,171.606 C237.146,170.928 236.32,170.535 235.455,170.546 L220.507,170.546 C219.73,170.528 218.993,170.842 218.458,171.394 L214.274,175.995 L207.733,175.995 L203.421,171.268 L203.381,171.225 C202.847,170.673 202.108,170.378 201.365,170.377 L189.349,170.377 C189.204,170.369 189.057,170.372 188.913,170.387 L188.711,170.418 C188.11,170.543 187.559,170.87 187.182,171.311 L182.872,176.185 L176.801,176.185 L172.186,171.395 C171.671,170.862 170.949,170.552 170.191,170.546 L151.603,170.546 C150.438,170.549 149.389,171.287 148.991,172.383 L147.267,177.538 C146.778,178.995 147.565,180.579 149.023,181.069 C149.299,181.161 149.587,181.21 149.9,181.213 L152.152,181.213 L137.542,224.323 C137.056,225.778 137.843,227.361 139.299,227.851 C139.576,227.943 139.864,227.992 140.177,227.995 L159.967,227.995 C161.133,227.992 162.183,227.253 162.592,226.122 L164.114,221.656 C164.601,220.2 163.814,218.617 162.357,218.127 C162.08,218.034 161.792,217.985 161.48,217.982 L160.691,217.982 L169.322,190.781 L183.1,190.781 L172.624,224.392 C172.175,225.862 173.005,227.423 174.471,227.872 C174.742,227.955 175.032,227.989 175.295,227.995 L194.4,227.995 C195.51,227.986 196.508,227.32 196.947,226.286 L198.669,222.156 C199.234,220.727 198.533,219.104 197.111,218.54 C196.794,218.413 196.461,218.347 196.092,218.341 L195.304,218.341 L204.103,190.612 L217.008,190.612 L206.371,224.394 C205.924,225.863 206.754,227.424 208.219,227.872 C208.484,227.954 208.76,227.995 209.028,227.995 L209.043,227.995 L229.995,227.995 C231.153,227.988 232.189,227.293 232.614,226.212 L234.333,221.727 C234.86,220.284 234.116,218.68 232.673,218.152 C232.37,218.041 232.051,217.984 231.717,217.982 L230.207,217.982 L242.054,179.464 C242.336,178.6 242.178,177.649 241.638,176.931 L241.638,176.931 Z M224.915,221.891 L230.084,221.891 L229.242,224.086 L210.566,224.086 L222.338,186.703 L201.242,186.703 L189.962,222.251 L194.394,222.251 L193.629,224.086 L176.814,224.086 L188.413,186.872 L166.461,186.872 L155.35,221.891 L159.904,221.891 L159.156,224.086 L141.75,224.086 L157.604,177.304 L151.467,177.304 L152.419,174.455 L169.706,174.455 L175.139,180.094 L184.634,180.094 L189.769,174.286 L200.883,174.285 L206.007,179.904 L216.003,179.904 L220.958,174.455 L234.928,174.455 L238.164,178.811 L224.915,221.891 L224.915,221.891 Z" fill="#000000">
|
||||
</path>
|
||||
<path d="M130.096,218.105 C129.826,218.022 129.556,217.989 129.272,217.982 L126.692,217.982 L141.798,173.883 C142.287,172.425 141.499,170.842 140.041,170.352 C139.766,170.26 139.478,170.211 139.164,170.208 L114.514,170.208 C114.368,170.2 114.222,170.203 114.077,170.218 L113.864,170.252 C112.818,170.477 112.006,171.262 111.747,172.298 L110.375,177.752 C110.004,179.242 110.914,180.757 112.409,181.132 C112.621,181.184 112.84,181.212 113.073,181.213 L116.836,181.213 L101.581,224.828 C101.092,226.286 101.881,227.869 103.337,228.358 C103.614,228.45 103.902,228.499 104.215,228.502 L127.704,228.502 L127.745,228.502 C128.949,228.502 130.008,227.739 130.401,226.556 L131.943,221.585 C132.392,220.116 131.562,218.554 130.096,218.105 L130.096,218.105 Z M105.804,224.593 L122.345,177.304 L114.519,177.304 L115.321,174.117 L137.585,174.117 L121.221,221.891 L127.755,221.891 L126.917,224.593 L105.804,224.593 L105.804,224.593 Z" fill="#000000">
|
||||
</path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
eww open-many --toggle notes quote smalldate quicksettings favorites appbar fetch sys
|
||||
eww update hostname="$(hostname)"
|
||||
|
||||
eww open-many --toggle quote quicksettings appbar fetch sys
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
$mainMod = SUPER
|
||||
$terminal = kitty
|
||||
$launcher = wofi --show drun
|
||||
$launcher = pkill wofi || wofi --show drun
|
||||
|
||||
bind = ALT, SPACE, exec, $launcher
|
||||
bindr = SUPER, SUPER_L, exec, $launcher
|
||||
|
||||
bind = ALT, Q, exec, $terminal
|
||||
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ in {
|
|||
swaybg
|
||||
jq
|
||||
fortune
|
||||
python312Packages.gpustat
|
||||
];
|
||||
|
||||
services.logind.extraConfig = ''
|
||||
|
|
|
|||