new eww
This commit is contained in:
230
home/programs/eww/src/bar.yuck
Normal file
230
home/programs/eww/src/bar.yuck
Normal file
@@ -0,0 +1,230 @@
|
||||
;; /-- Variables -->
|
||||
(defpoll windows
|
||||
:interval "1s"
|
||||
:initial "-"
|
||||
`sh ~/.config/eww/scripts/xmonad_logs.sh`)
|
||||
|
||||
(defpoll micClass
|
||||
:interval "1s"
|
||||
:initial "micOff"
|
||||
`sh ~/.config/eww/scripts/mic_class.sh`)
|
||||
|
||||
(defpoll micIcon
|
||||
:interval "1s"
|
||||
:initial ""
|
||||
`sh ~/.config/eww/scripts/mic_icon.sh`)
|
||||
|
||||
(defpoll speakerClass
|
||||
:interval "1s"
|
||||
:initial "speakerOff"
|
||||
`sh ~/.config/eww/scripts/speaker_class.sh`)
|
||||
|
||||
(defpoll speakerIcon
|
||||
:interval "1s"
|
||||
:initial ""
|
||||
`sh ~/.config/eww/scripts/speaker_icon.sh`)
|
||||
|
||||
(defpoll speakerVolume
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/speaker_volume.sh`)
|
||||
|
||||
(defpoll backlight
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`xbacklight -get`)
|
||||
|
||||
(defpoll cpu
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/cpu.sh`)
|
||||
|
||||
(defpoll memory
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/memory.sh`)
|
||||
|
||||
(defpoll batteryClass
|
||||
:interval "1s"
|
||||
:initial "speakerOff"
|
||||
`sh ~/.config/eww/scripts/battery_class.sh`)
|
||||
|
||||
(defpoll batteryIcon
|
||||
:interval "1s"
|
||||
:initial ""
|
||||
`sh ~/.config/eww/scripts/battery_icon.sh`)
|
||||
|
||||
(defpoll batteryVolume
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/battery_volume.sh`)
|
||||
|
||||
(defpoll networkDown
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/network_down.sh`)
|
||||
|
||||
(defpoll networkUp
|
||||
:interval "1s"
|
||||
:initial "0"
|
||||
`sh ~/.config/eww/scripts/network_up.sh`)
|
||||
|
||||
(defpoll date
|
||||
:interval "1s"
|
||||
:initial "-"
|
||||
`date '+ %a %d.%m.%y %H:%M'`)
|
||||
|
||||
(defvar ws1 "ws-empty")
|
||||
(defvar ws2 "ws-empty")
|
||||
(defvar ws3 "ws-empty")
|
||||
(defvar ws4 "ws-empty")
|
||||
(defvar ws5 "ws-empty")
|
||||
(defvar ws6 "ws-empty")
|
||||
(defvar ws7 "ws-empty")
|
||||
(defvar ws8 "ws-empty")
|
||||
(defvar ws9 "ws-empty")
|
||||
|
||||
;; /-- Blocks -->
|
||||
(defwidget widgetWorkspaces []
|
||||
(box
|
||||
:orientation "horizontal"
|
||||
:class "workspace-buttons"
|
||||
(button
|
||||
:onclick "wmctrl -s 0"
|
||||
:class "workspace-button ${ws1}"
|
||||
(label
|
||||
:text "1"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 1"
|
||||
:class "workspace-button ${ws2}"
|
||||
(label
|
||||
:text "2"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 2"
|
||||
:class "workspace-button ${ws3}"
|
||||
(label
|
||||
:text "3"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 3"
|
||||
:class "workspace-button ${ws4}"
|
||||
(label
|
||||
:text "4"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 4"
|
||||
:class "workspace-button ${ws5}"
|
||||
(label
|
||||
:text "5"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 5"
|
||||
:class "workspace-button ${ws6}"
|
||||
(label
|
||||
:text "6"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 6"
|
||||
:class "workspace-button ${ws7}"
|
||||
(label
|
||||
:text "7"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 7"
|
||||
:class "workspace-button ${ws8}"
|
||||
(label
|
||||
:text "8"))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "wmctrl -s 8"
|
||||
:class "workspace-button ${ws9}"
|
||||
(label
|
||||
:text "9"))
|
||||
(label
|
||||
:text " ")))
|
||||
|
||||
(defwidget widgetWindows []
|
||||
(label
|
||||
:text "| ${windows}"))
|
||||
|
||||
(defwidget widgetMic []
|
||||
(label
|
||||
:class micClass
|
||||
:text "${micIcon} "))
|
||||
|
||||
(defwidget widgetSpeaker []
|
||||
(label
|
||||
:class speakerClass
|
||||
:text "${speakerIcon} ${speakerVolume}% "))
|
||||
|
||||
(defwidget widgetBacklight []
|
||||
(label
|
||||
:class "backlight"
|
||||
:text " ${backlight}% "))
|
||||
|
||||
(defwidget widgetCpu []
|
||||
(label
|
||||
:class "cpu"
|
||||
:text " ${cpu}% "))
|
||||
|
||||
(defwidget widgetMemory []
|
||||
(label
|
||||
:class "memory"
|
||||
:text " ${memory}% "))
|
||||
|
||||
(defwidget widgetBattery []
|
||||
(label
|
||||
:class batteryClass
|
||||
:text "${batteryIcon} ${batteryVolume}% "))
|
||||
|
||||
(defwidget widgetNetworkDown []
|
||||
(label
|
||||
:class "networkDown"
|
||||
:text " ${networkDown}KiB "))
|
||||
|
||||
(defwidget widgetNetworkUp []
|
||||
(label
|
||||
:class "networkUp"
|
||||
:text " ${networkUp}KiB "))
|
||||
|
||||
;; /-- Bar -->
|
||||
(defwindow bar []
|
||||
:geometry (geometry
|
||||
:x "0px"
|
||||
:y "0px"
|
||||
:width "100%"
|
||||
:height "25px"
|
||||
:anchor "top center"
|
||||
)
|
||||
:reserve (struts
|
||||
:distance "25px"
|
||||
:side "top")
|
||||
:windowtype "dock"
|
||||
(box
|
||||
:orientation "horizontal"
|
||||
:space-evenly false
|
||||
:class "bar"
|
||||
(widgetWorkspaces)
|
||||
(widgetWindows)
|
||||
(box :hexpand true)
|
||||
(widgetMic)
|
||||
(widgetSpeaker)
|
||||
(widgetBacklight)
|
||||
(widgetCpu)
|
||||
(widgetMemory)
|
||||
(widgetBattery)
|
||||
(widgetNetworkDown)
|
||||
(widgetNetworkUp)
|
||||
(label :text date)
|
||||
)
|
||||
)
|
||||
@@ -0,0 +1,76 @@
|
||||
// <-- Preamble -->
|
||||
// <-- Colors -->
|
||||
$white-text: #f5e0dc;
|
||||
$grey-text: #6c7086;
|
||||
$grey-background: #1e1e2e;
|
||||
$green: #a6e3a1;
|
||||
$red: #f38ba8;
|
||||
$yellow: #f9e2af;
|
||||
$violet: #cba6f7;
|
||||
$blue: #89b4fa;
|
||||
$gold: #fab387;
|
||||
// <-- Prepare all -->
|
||||
* { all: unset; }
|
||||
// <-- Bar -->
|
||||
// <-- Widgets -->
|
||||
// <-- Audio -->
|
||||
.micOn {color: $green;}
|
||||
.micOff {color: $red;}
|
||||
.speakerOn {color: $green;}
|
||||
.speakerOff {color: $red;}
|
||||
// <-- Backlight -->
|
||||
.backlight {color: $yellow;}
|
||||
// <-- CPU & Memory -->
|
||||
.cpu {color: $violet;}
|
||||
.memory {color: $blue;}
|
||||
// <-- Battery -->
|
||||
.batteryFull {color: $gold;}
|
||||
.batteryHalf {color: $green;}
|
||||
.batteryEmpty {color: $red;}
|
||||
.batteryCharging {color: $violet;}
|
||||
.networkDown {color: $red;}
|
||||
// <-- Network -->
|
||||
.networkUp {color: $blue;}
|
||||
// <-- Workspaces -->
|
||||
.workspace-button {
|
||||
background: $grey-background;
|
||||
}
|
||||
.ws-current {
|
||||
color: $green;
|
||||
}
|
||||
.ws-visible {
|
||||
color: $red;
|
||||
}
|
||||
.ws-hidden {
|
||||
color: $white-text;
|
||||
}
|
||||
.ws-empty {
|
||||
color: $grey-text;
|
||||
}
|
||||
// <-- Window -->
|
||||
.bar {
|
||||
padding: 0.2em 1em;
|
||||
background: $grey-background;
|
||||
color: $white-text;
|
||||
font-family: "Fira Code";
|
||||
font-size: 12px;
|
||||
}
|
||||
// <-- Powermenu -->
|
||||
.powermenu-button {
|
||||
background-color: #313244;
|
||||
color: $white-text;
|
||||
padding: 15px;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
}
|
||||
// <-- Window -->
|
||||
.powermenu {
|
||||
background-color: $grey-background;
|
||||
padding: 20px;
|
||||
}
|
||||
.powermenuWindow {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@@ -1,50 +1,2 @@
|
||||
<<<<<<< HEAD
|
||||
(defwindow bar-primary
|
||||
:monitor 0
|
||||
:geometry (geometry :x "0px"
|
||||
:y "0px"
|
||||
:width "100%"
|
||||
:height "25px"
|
||||
:anchor "top center")
|
||||
:stacking "fg"
|
||||
:reserve (struts :distance 25px" :side "top")
|
||||
:windowtype "dock"
|
||||
:wm-ignore false
|
||||
(box
|
||||
:orientation "horizontal"
|
||||
:halign "right"
|
||||
(eventbox :onclick "notify-send Left"
|
||||
:onrightclick "notify-send Right"
|
||||
"Click Me!")
|
||||
(rightSideBar)))
|
||||
=======
|
||||
(defwidget workspaces-and-windows []
|
||||
(let content (split " " (file "/tmp/xmonad-eww-log"))
|
||||
(let ws-list (take 9 content)
|
||||
(let win-list (drop 9 content)
|
||||
(box :orientation "vertical" :class "bar"
|
||||
>>>>>>> test
|
||||
|
||||
;; Workspaces
|
||||
(box :orientation "horizontal"
|
||||
(for ws in ws-list
|
||||
(let class (if (starts-with ws "[[")
|
||||
"ws-current"
|
||||
(if (starts-with ws "(")
|
||||
"ws-visible"
|
||||
"ws-hidden")))
|
||||
(let name (string-trim ws "[]()")
|
||||
(button :onclick (format "wmctrl -s %s" name)
|
||||
:class class
|
||||
(label :text name))))))
|
||||
|
||||
;; Open windows
|
||||
(box :orientation "horizontal" :class "window-list"
|
||||
(for win in win-list
|
||||
(let class (if (starts-with win "*") "win-focused" "win")
|
||||
(label :class class :text (string-trim win "*")))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(include "./bar.yuck")
|
||||
(include "./powerpopup.yuck")
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
<<<<<<< HEAD
|
||||
(defwindow bar-primary
|
||||
:monitor 0
|
||||
:geometry (geometry :x "0px"
|
||||
:y "0px"
|
||||
:width "100%"
|
||||
:height "25px"
|
||||
:anchor "top center")
|
||||
:stacking "fg"
|
||||
:reserve (struts :distance 25px" :side "top")
|
||||
:windowtype "dock"
|
||||
:wm-ignore false
|
||||
(box
|
||||
:orientation "horizontal"
|
||||
:halign "right"
|
||||
(eventbox :onclick "notify-send Left"
|
||||
:onrightclick "notify-send Right"
|
||||
"Click Me!")
|
||||
(rightSideBar)))
|
||||
=======
|
||||
(defwidget workspaces-and-windows []
|
||||
(let content (split " " (file "/tmp/xmonad-eww-log"))
|
||||
(let ws-list (take 9 content)
|
||||
(let win-list (drop 9 content)
|
||||
(box :orientation "vertical" :class "bar"
|
||||
>>>>>>> test
|
||||
|
||||
;; Workspaces
|
||||
(box :orientation "horizontal"
|
||||
(for ws in ws-list
|
||||
(let class (if (starts-with ws "[[")
|
||||
"ws-current"
|
||||
(if (starts-with ws "(")
|
||||
"ws-visible"
|
||||
"ws-hidden")))
|
||||
(let name (string-trim ws "[]()")
|
||||
(button :onclick (format "wmctrl -s %s" name)
|
||||
:class class
|
||||
(label :text name))))))
|
||||
|
||||
;; Open windows
|
||||
(box :orientation "horizontal" :class "window-list"
|
||||
(for win in win-list
|
||||
(let class (if (starts-with win "*") "win-focused" "win")
|
||||
(label :class class :text (string-trim win "*")))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
49
home/programs/eww/src/powerpopup.yuck
Normal file
49
home/programs/eww/src/powerpopup.yuck
Normal file
@@ -0,0 +1,49 @@
|
||||
(defwidget powerpopup []
|
||||
(box
|
||||
:class "powermenu"
|
||||
(button
|
||||
:onclick "systemctl poweroff"
|
||||
:class "powermenu-button"
|
||||
(label
|
||||
:text "⏻ "))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "loginctl lock-session"
|
||||
:class "powermenu-button"
|
||||
(label
|
||||
:text ""))
|
||||
(label
|
||||
:text " ")
|
||||
(button
|
||||
:onclick "systemctl reboot"
|
||||
:class "powermenu-button"
|
||||
(label
|
||||
:text ""))
|
||||
(label
|
||||
:text "")
|
||||
(button
|
||||
:onclick "loginctl terminate-user $USER"
|
||||
:class "powermenu-button"
|
||||
(label
|
||||
:text ""))))
|
||||
(defwidget powermenu [shutdown shutdown_icon reboot
|
||||
reboot_icon logout logout_icon]
|
||||
(box :class "powermenu" :spacing 5
|
||||
:vexpand true :hexpand true
|
||||
:valign "end" :halign "end"
|
||||
:space-evenly false
|
||||
(button :onclick shutdown shutdown_icon)
|
||||
(button :onclick reboot reboot_icon)
|
||||
(button :onclick logout logout_icon)))
|
||||
|
||||
(defwindow power []
|
||||
:class "powermenuWindow"
|
||||
:geometry (geometry
|
||||
:width "200px"
|
||||
:height "50px"
|
||||
:anchor "center center"
|
||||
:x "0%"
|
||||
:y "0%")
|
||||
(powerpopup)
|
||||
)
|
||||
14
home/programs/eww/src/scripts/battery_class.sh
Executable file
14
home/programs/eww/src/scripts/battery_class.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
bat=$(cat /sys/class/power_supply/BAT0/capacity)
|
||||
stat=$(cat /sys/class/power_supply/BAT0/status)
|
||||
|
||||
class="batteryFull"
|
||||
|
||||
if [[ $stat == "Charging" ]]; then
|
||||
class="batteryCharging"
|
||||
elif [[ $bat -le 10 ]]; then
|
||||
class="batteryEmpty"
|
||||
elif [[ $bat -le 80 ]]; then
|
||||
class="batteryHalf"
|
||||
fi
|
||||
|
||||
echo "$class"
|
||||
16
home/programs/eww/src/scripts/battery_icon.sh
Executable file
16
home/programs/eww/src/scripts/battery_icon.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
bat=$(cat /sys/class/power_supply/BAT0/capacity)
|
||||
stat=$(cat /sys/class/power_supply/BAT0/status)
|
||||
|
||||
icon=""
|
||||
|
||||
if [[ $stat == "Charging" ]]; then
|
||||
icon=""
|
||||
elif [[ $bat -le 10 ]]; then
|
||||
icon=""
|
||||
elif [[ $bat -le 50 ]]; then
|
||||
icon=""
|
||||
elif [[ $bat -le 80 ]]; then
|
||||
icon=""
|
||||
fi
|
||||
|
||||
echo "$icon"
|
||||
2
home/programs/eww/src/scripts/battery_volume.sh
Executable file
2
home/programs/eww/src/scripts/battery_volume.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
bat=$(cat /sys/class/power_supply/BAT0/capacity)
|
||||
echo "$bat"
|
||||
5
home/programs/eww/src/scripts/cpu.sh
Executable file
5
home/programs/eww/src/scripts/cpu.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
cpu_idle=$(top -bn1 | awk '/Cpu\(s\)/ {print $8}')
|
||||
cpu_used=$(awk "BEGIN {print 100 - $cpu_idle}")
|
||||
|
||||
# Print only the numeric result
|
||||
printf "%.0f\n" "$cpu_used"
|
||||
6
home/programs/eww/src/scripts/memory.sh
Executable file
6
home/programs/eww/src/scripts/memory.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
mem_info=$(free | grep Mem)
|
||||
used=$(echo "$mem_info" | awk '{print $3}')
|
||||
total=$(echo "$mem_info" | awk '{print $2}')
|
||||
mem_used=$(awk "BEGIN {print int($used/$total * 100)}")
|
||||
|
||||
echo "$mem_used"
|
||||
5
home/programs/eww/src/scripts/mic_class.sh
Executable file
5
home/programs/eww/src/scripts/mic_class.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
if pactl get-source-mute @DEFAULT_SOURCE@ | grep -q "yes"; then
|
||||
echo "micOff"
|
||||
else
|
||||
echo "micOn"
|
||||
fi
|
||||
5
home/programs/eww/src/scripts/mic_icon.sh
Executable file
5
home/programs/eww/src/scripts/mic_icon.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
if pactl get-source-mute @DEFAULT_SOURCE@ | grep -q "yes"; then
|
||||
echo "" # muted
|
||||
else
|
||||
echo "" # unmuted
|
||||
fi
|
||||
11
home/programs/eww/src/scripts/network_down.sh
Executable file
11
home/programs/eww/src/scripts/network_down.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
# You can change this if your interface is named differently (e.g., eth0, enp3s0)
|
||||
INTERFACE=$(ip route get 1.1.1.1 | awk '{print $5; exit}')
|
||||
RX_PREV=$(cat /sys/class/net/$INTERFACE/statistics/rx_bytes)
|
||||
sleep 1
|
||||
RX_CUR=$(cat /sys/class/net/$INTERFACE/statistics/rx_bytes)
|
||||
|
||||
# Calculate download/upload in KiB/s
|
||||
RX_RATE=$(((RX_CUR - RX_PREV) / 1024))
|
||||
|
||||
# Output formatted for Eww
|
||||
echo "${RX_RATE}"
|
||||
8
home/programs/eww/src/scripts/network_up.sh
Executable file
8
home/programs/eww/src/scripts/network_up.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
# You can change this if your interface is named differently (e.g., eth0, enp3s0)
|
||||
INTERFACE=$(ip route get 1.1.1.1 | awk '{print $5; exit}')
|
||||
TX_PREV=$(cat /sys/class/net/$INTERFACE/statistics/tx_bytes)
|
||||
sleep 1
|
||||
TX_CUR=$(cat /sys/class/net/$INTERFACE/statistics/tx_bytes)
|
||||
TX_RATE=$(((TX_CUR - TX_PREV) / 1024))
|
||||
|
||||
echo "${TX_RATE}"
|
||||
8
home/programs/eww/src/scripts/speaker_class.sh
Executable file
8
home/programs/eww/src/scripts/speaker_class.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
mute=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
|
||||
volume=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}' | tr -d '%')
|
||||
|
||||
if [[ "$mute" == "yes" ]]; then
|
||||
echo "speakerOff" # muted icon
|
||||
else
|
||||
echo "speakerOn" # high volume
|
||||
fi
|
||||
10
home/programs/eww/src/scripts/speaker_icon.sh
Executable file
10
home/programs/eww/src/scripts/speaker_icon.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
mute=$(pactl get-sink-mute @DEFAULT_SINK@ | awk '{print $2}')
|
||||
volume=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}' | tr -d '%')
|
||||
|
||||
if [[ "$mute" == "yes" ]]; then
|
||||
echo "" # muted icon
|
||||
elif [[ "$volume" -le 100 ]]; then
|
||||
echo "" # low volume
|
||||
else
|
||||
echo "" # high volume
|
||||
fi
|
||||
4
home/programs/eww/src/scripts/speaker_volume.sh
Executable file
4
home/programs/eww/src/scripts/speaker_volume.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
volume=$(pactl get-sink-volume @DEFAULT_SINK@ | awk '{print $5}' | tr -d '%')
|
||||
half_volume=$((volume / 2))
|
||||
|
||||
echo "$half_volume"
|
||||
@@ -1,4 +0,0 @@
|
||||
tail -F /tmp/xmonad-eww-log | while read -r line; do
|
||||
clean_line=$(echo "$line" | sed -E 's/<[^>]+>//g')
|
||||
eww update xmonad_log="$clean_line"
|
||||
done
|
||||
19
home/programs/eww/src/scripts/xmonad_logs.sh
Executable file
19
home/programs/eww/src/scripts/xmonad_logs.sh
Executable file
@@ -0,0 +1,19 @@
|
||||
line=$(cat /tmp/xmonad-eww-log)
|
||||
IFS='|' read -r workspaces windows <<<"$line"
|
||||
# Workspaces
|
||||
workspaceArray=($workspaces)
|
||||
i=0
|
||||
for ws in "${workspaceArray[@]}"; do
|
||||
i=$((i + 1))
|
||||
if [[ "$ws" == [\[]* ]]; then
|
||||
eww update ws$i="ws-current"
|
||||
elif [[ "$ws" == [\(]* ]]; then
|
||||
eww update ws$i="ws-visible"
|
||||
elif [[ "$ws" == [\{]* ]]; then
|
||||
eww update ws$i="ws-hidden"
|
||||
else
|
||||
eww update ws$i="ws-empty"
|
||||
fi
|
||||
done
|
||||
# Windows
|
||||
echo "${windows}"
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 6.0 MiB |
Reference in New Issue
Block a user