Some updates
2
.bashrc
@ -1,6 +1,6 @@
|
|||||||
# ~/.bashrc
|
# ~/.bashrc
|
||||||
eval "$(starship init bash)"
|
|
||||||
clear && myfetch -c 8 -C " █"
|
clear && myfetch -c 8 -C " █"
|
||||||
|
eval "$(starship init bash)"
|
||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
alias lsd='eza --icons'
|
alias lsd='eza --icons'
|
||||||
alias pacup='sudo pacman -Rns $(pacman -Qdtq)'
|
alias pacup='sudo pacman -Rns $(pacman -Qdtq)'
|
||||||
|
@ -5,7 +5,7 @@ monitor = auto, 2560x1440@165, 0x0, 1
|
|||||||
$terminal = kitty
|
$terminal = kitty
|
||||||
$fileManager = thunar
|
$fileManager = thunar
|
||||||
# $menu = wofi --show drun -n
|
# $menu = wofi --show drun -n
|
||||||
$menu = rofi -show drun
|
$menu = wofi -n
|
||||||
|
|
||||||
exec-once = hypridle
|
exec-once = hypridle
|
||||||
exec-once = waybar
|
exec-once = waybar
|
||||||
@ -51,7 +51,7 @@ general {
|
|||||||
}
|
}
|
||||||
decoration {
|
decoration {
|
||||||
rounding = 10
|
rounding = 10
|
||||||
active_opacity = 0.85
|
active_opacity = 0.78
|
||||||
inactive_opacity = 0.7
|
inactive_opacity = 0.7
|
||||||
fullscreen_opacity = 1
|
fullscreen_opacity = 1
|
||||||
blur {
|
blur {
|
||||||
@ -73,11 +73,11 @@ decoration {
|
|||||||
animations {
|
animations {
|
||||||
enabled = true
|
enabled = true
|
||||||
|
|
||||||
bezier = fluid, 0.15, 0.85, 0.25, 1.1
|
bezier = fluid, 0.15, 0.85, 0.25, 1
|
||||||
bezier = snappy, 0.3, 1, 0.4, 1
|
bezier = snappy, 0.3, 1, 0.4, 1
|
||||||
animation = windows, 1, 3.5, fluid, popin 5%
|
animation = windows, 1, 3, fluid, popin 5%
|
||||||
animation = windowsOut, 1, 2.5, snappy
|
animation = windowsOut, 1, 2.5, snappy
|
||||||
animation = fade, 1, 4, fluid
|
animation = fade, 1, 4, snappy
|
||||||
animation = workspaces, 1, 1.7, snappy, slide
|
animation = workspaces, 1, 1.7, snappy, slide
|
||||||
animation = specialWorkspace, 1, 4, fluid, slidefadevert -35%
|
animation = specialWorkspace, 1, 4, fluid, slidefadevert -35%
|
||||||
animation = layers, 1, 2, snappy, popin 70%
|
animation = layers, 1, 2, snappy, popin 70%
|
||||||
@ -112,6 +112,7 @@ $mainMod = SUPER
|
|||||||
bind = $mainMod, Q, exec, $terminal
|
bind = $mainMod, Q, exec, $terminal
|
||||||
bind = $mainMod, B, killactive
|
bind = $mainMod, B, killactive
|
||||||
bind = $mainMod, E, exec, $fileManager
|
bind = $mainMod, E, exec, $fileManager
|
||||||
|
# bind = $mainMod, V, exec, hyprctl --batch "dispatch togglefloating; dispatch resizeactive exact 800 800; dispatch centerwindow 1;"
|
||||||
bind = $mainMod, V, togglefloating
|
bind = $mainMod, V, togglefloating
|
||||||
bind = $mainMod, R, exec, $menu
|
bind = $mainMod, R, exec, $menu
|
||||||
bind = $mainMod, P, pseudo
|
bind = $mainMod, P, pseudo
|
||||||
@ -166,6 +167,7 @@ bindm = $mainMod, mouse:273, resizewindow
|
|||||||
bind = ALT, TAB, exec, wlogout -b 2
|
bind = ALT, TAB, exec, wlogout -b 2
|
||||||
bind = ALT, w, exec, ~/.config/hypr/wallpaper.sh
|
bind = ALT, w, exec, ~/.config/hypr/wallpaper.sh
|
||||||
bind = ALT, a, exec, ~/.config/waybar/refresh.sh
|
bind = ALT, a, exec, ~/.config/waybar/refresh.sh
|
||||||
|
bind = ALT, B, exec, ~/.config/waybar/select.sh
|
||||||
bind = ALT, r, exec, ~/.config/swaync/refresh.sh
|
bind = ALT, r, exec, ~/.config/swaync/refresh.sh
|
||||||
bind = $mainMod, M, exit
|
bind = $mainMod, M, exit
|
||||||
bind = $mainMod, SPACE, exec, pypr toggle term
|
bind = $mainMod, SPACE, exec, pypr toggle term
|
||||||
@ -185,3 +187,4 @@ layerrule = ignorezero, swaync-notification-window
|
|||||||
layerrule = ignorealpha 0.5, swaync-control-center
|
layerrule = ignorealpha 0.5, swaync-control-center
|
||||||
layerrule = ignorealpha 0.5, swaync-notification-window
|
layerrule = ignorealpha 0.5, swaync-notification-window
|
||||||
layerrule = noanim, selection
|
layerrule = noanim, selection
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ menu() {
|
|||||||
find "${WALLPAPER_DIR}" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" \) | awk '{print "img:"$0}'
|
find "${WALLPAPER_DIR}" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" \) | awk '{print "img:"$0}'
|
||||||
}
|
}
|
||||||
main() {
|
main() {
|
||||||
choice=$(menu | wofi -c ~/.config/wofi/config1 -s ~/.config/wofi/style1.css --show dmenu --prompt "Select Wallpaper:" -n)
|
choice=$(menu | wofi -c ~/.config/wofi/wallpaper -s ~/.config/wofi/style-wallpaper.css --show dmenu --prompt "Select Wallpaper:" -n)
|
||||||
selected_wallpaper=$(echo "$choice" | sed 's/^img://')
|
selected_wallpaper=$(echo "$choice" | sed 's/^img://')
|
||||||
swww img "$selected_wallpaper" --transition-type any --transition-fps 60 --transition-duration .5
|
swww img "$selected_wallpaper" --transition-type any --transition-fps 60 --transition-duration .5
|
||||||
wal -i "$selected_wallpaper" -n --cols16
|
wal -i "$selected_wallpaper" -n --cols16
|
||||||
@ -17,7 +17,8 @@ main() {
|
|||||||
cava_config="$HOME/.config/cava/config"
|
cava_config="$HOME/.config/cava/config"
|
||||||
sed -i "s/^gradient_color_1 = .*/gradient_color_1 = '$color1'/" $cava_config
|
sed -i "s/^gradient_color_1 = .*/gradient_color_1 = '$color1'/" $cava_config
|
||||||
sed -i "s/^gradient_color_2 = .*/gradient_color_2 = '$color2'/" $cava_config
|
sed -i "s/^gradient_color_2 = .*/gradient_color_2 = '$color2'/" $cava_config
|
||||||
pkill -USR2 cava || cava -p $cava_config
|
pkill -USR2 cava 2>/dev/null
|
||||||
source ~/.cache/wal/colors.sh && cp -r $wallpaper ~/wallpapers/pywallpaper.jpg
|
source ~/.cache/wal/colors.sh && cp -r $wallpaper ~/wallpapers/pywallpaper.jpg
|
||||||
}
|
}
|
||||||
main
|
main
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
|
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
|
||||||
"friendly-snippets": { "branch": "main", "commit": "efff286dd74c22f731cdec26a70b46e5b203c619" },
|
"friendly-snippets": { "branch": "main", "commit": "efff286dd74c22f731cdec26a70b46e5b203c619" },
|
||||||
"gitsigns.nvim": { "branch": "main", "commit": "9b36d497495436c135659902054ee637e0ba6021" },
|
"gitsigns.nvim": { "branch": "main", "commit": "9b36d497495436c135659902054ee637e0ba6021" },
|
||||||
|
"gruvbox": { "branch": "main", "commit": "089b60e92aa0a1c6fa76ff527837cd35b6f5ac81" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "7527af40ddd4a93a02911be570b32609b9d4ea53" },
|
"lazy.nvim": { "branch": "main", "commit": "7527af40ddd4a93a02911be570b32609b9d4ea53" },
|
||||||
"lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" },
|
"lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" },
|
||||||
"markview.nvim": { "branch": "main", "commit": "68902d7cba78a7fe331c13d531376b4be494a05c" },
|
"markview.nvim": { "branch": "main", "commit": "68902d7cba78a7fe331c13d531376b4be494a05c" },
|
||||||
@ -19,7 +20,6 @@
|
|||||||
"nvim-treesitter": { "branch": "master", "commit": "4988b7068001b3a772c7cc738708341e612e3c26" },
|
"nvim-treesitter": { "branch": "master", "commit": "4988b7068001b3a772c7cc738708341e612e3c26" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "402377242b04be3f4f0f3720bd952df86e946c30" },
|
"nvim-web-devicons": { "branch": "master", "commit": "402377242b04be3f4f0f3720bd952df86e946c30" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" },
|
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" },
|
||||||
"pywal.nvim": { "branch": "main", "commit": "d11b673c0e3d6eb8cbee7ea8cf4a8911f6ee24b9" },
|
|
||||||
"snacks.nvim": { "branch": "main", "commit": "c2310c6d1ecb4d5fad701ed0aeb92adc2f0db385" },
|
"snacks.nvim": { "branch": "main", "commit": "c2310c6d1ecb4d5fad701ed0aeb92adc2f0db385" },
|
||||||
"tabline.nvim": { "branch": "main", "commit": "ff33d12a20d52daafa5393162cae4108faf8128b" },
|
"tabline.nvim": { "branch": "main", "commit": "ff33d12a20d52daafa5393162cae4108faf8128b" },
|
||||||
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
|
"telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" },
|
||||||
|
@ -1,23 +1,23 @@
|
|||||||
-- return {
|
|
||||||
-- "ellisonleao/gruvbox.nvim",
|
|
||||||
-- lazy = false,
|
|
||||||
-- name = "gruvbox",
|
|
||||||
-- priority = 997,
|
|
||||||
-- config = function()
|
|
||||||
-- vim.cmd.colorscheme("gruvbox")
|
|
||||||
-- end,
|
|
||||||
-- }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"AlphaTechnolog/pywal.nvim",
|
"ellisonleao/gruvbox.nvim",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
priority = 1000,
|
name = "gruvbox",
|
||||||
config = function()
|
priority = 997,
|
||||||
-- Set up pywal and load the colors
|
config = function()
|
||||||
require("pywal").setup()
|
vim.cmd.colorscheme("gruvbox")
|
||||||
|
end,
|
||||||
end,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- return {
|
||||||
|
-- "AlphaTechnolog/pywal.nvim",
|
||||||
|
-- lazy = false,
|
||||||
|
-- priority = 1000,
|
||||||
|
-- config = function()
|
||||||
|
-- -- Set up pywal and load the colors
|
||||||
|
-- require("pywal").setup()
|
||||||
|
--
|
||||||
|
-- end,
|
||||||
|
-- }
|
||||||
|
|
||||||
|
@ -1,188 +0,0 @@
|
|||||||
configuration {
|
|
||||||
font: "JetBrainsMono Nerd Font SemiBold 12";
|
|
||||||
modi: "drun,run,filebrowser";
|
|
||||||
show-icons: true;
|
|
||||||
display-drun: "Apps";
|
|
||||||
display-run: "Run";
|
|
||||||
display-filebrowser: "Files";
|
|
||||||
display-window: "Windows";
|
|
||||||
drun-display-format: "{name}";
|
|
||||||
hover-select: true;
|
|
||||||
me-select-entry: "MouseSecondary";
|
|
||||||
me-accept-entry: "MousePrimary";
|
|
||||||
window-format: "{w} · {c} · {t}";
|
|
||||||
dpi: 1;
|
|
||||||
}
|
|
||||||
@theme "../../.cache/wal/colors-rofi-dark.rasi"
|
|
||||||
* {
|
|
||||||
background-alt: @selected-active-background;
|
|
||||||
selected: @selected-urgent-background;
|
|
||||||
active: @selected-normal-background;
|
|
||||||
urgent: @selected;
|
|
||||||
text-selected: @background;
|
|
||||||
text-color: @foreground;
|
|
||||||
border-color: @selected;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---- Window ---- */
|
|
||||||
window {
|
|
||||||
border: 0px;
|
|
||||||
border-radius: 10px;
|
|
||||||
location: center;
|
|
||||||
anchor: center;
|
|
||||||
width: 50%;
|
|
||||||
background-color: @background;
|
|
||||||
}
|
|
||||||
mainbox {
|
|
||||||
enabled: true;
|
|
||||||
orientation: vertical;
|
|
||||||
children: [ "inputbar", "listbox" ];
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
inputbar {
|
|
||||||
enabled: true;
|
|
||||||
padding: 10px 10px 50px 10px;
|
|
||||||
margin: 10px;
|
|
||||||
background-color: transparent;
|
|
||||||
border-radius: 25px;
|
|
||||||
orientation: horizontal;
|
|
||||||
children: ["entry", "dummy", "mode-switcher" ];
|
|
||||||
}
|
|
||||||
entry {
|
|
||||||
enabled: true;
|
|
||||||
expand: false;
|
|
||||||
width: 20%;
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 12px;
|
|
||||||
background-color: @selected;
|
|
||||||
text-color: @text-selected;
|
|
||||||
cursor: text;
|
|
||||||
placeholder: "Search "; // << Search symbol
|
|
||||||
placeholder-color: inherit;
|
|
||||||
}
|
|
||||||
listbox {
|
|
||||||
spacing: 10px;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: transparent;
|
|
||||||
orientation: vertical;
|
|
||||||
children: [ "message", "listview" ];
|
|
||||||
}
|
|
||||||
listview {
|
|
||||||
enabled: true;
|
|
||||||
columns: 2;
|
|
||||||
lines: 6;
|
|
||||||
scrollbar: false;
|
|
||||||
layout: vertical;
|
|
||||||
reverse: false;
|
|
||||||
fixed-height: false;
|
|
||||||
fixed-columns: false;
|
|
||||||
spacing: 10px;
|
|
||||||
background-color: transparent;
|
|
||||||
border: 0px;
|
|
||||||
scroll-method: 1;
|
|
||||||
}
|
|
||||||
dummy {
|
|
||||||
expand: true;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
mode-switcher{
|
|
||||||
enabled: true;
|
|
||||||
spacing: 10px;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
button {
|
|
||||||
width: 5%;
|
|
||||||
padding: 12px;
|
|
||||||
border-radius: 12px;
|
|
||||||
background-color: @text-selected;
|
|
||||||
text-color: @text-color;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
button selected {
|
|
||||||
background-color: @selected;
|
|
||||||
text-color: @text-selected;
|
|
||||||
}
|
|
||||||
scrollbar {
|
|
||||||
border: 0;
|
|
||||||
handle-color: @background-alt;
|
|
||||||
handle-width: 2px ;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
element {
|
|
||||||
enabled: true;
|
|
||||||
spacing: 10px;
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 12px;
|
|
||||||
background-color: transparent;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
element normal.normal {
|
|
||||||
background-color: inherit;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element normal.urgent {
|
|
||||||
background-color: @urgent;
|
|
||||||
text-color: @foreground;
|
|
||||||
}
|
|
||||||
element normal.active {
|
|
||||||
background-color: @active;
|
|
||||||
text-color: @foreground;
|
|
||||||
}
|
|
||||||
element selected.normal {
|
|
||||||
border: 1px;
|
|
||||||
border-radius: 16px;
|
|
||||||
border-color: @selected;
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: @background-alt;
|
|
||||||
}
|
|
||||||
element selected.urgent {
|
|
||||||
background-color: @urgent;
|
|
||||||
text-color: @text-selected;
|
|
||||||
}
|
|
||||||
element selected.active {
|
|
||||||
background-color: @urgent;
|
|
||||||
text-color: @text-selected;
|
|
||||||
}
|
|
||||||
element alternate.normal {
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element alternate.urgent {
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element alternate.active {
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: inherit;
|
|
||||||
}
|
|
||||||
element-icon {
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: inherit;
|
|
||||||
cursor: inherit;
|
|
||||||
}
|
|
||||||
element-text {
|
|
||||||
font: "JetBrainsMono Nerd Font SemiBold 12";
|
|
||||||
background-color: transparent;
|
|
||||||
text-color: inherit;
|
|
||||||
cursor: inherit;
|
|
||||||
vertical-align: 0.5;
|
|
||||||
horizontal-align: 0.0;
|
|
||||||
}
|
|
||||||
message {
|
|
||||||
background-color: transparent;
|
|
||||||
border: 0px;
|
|
||||||
}
|
|
||||||
textbox {
|
|
||||||
padding: 12px;
|
|
||||||
border-radius: 10px;
|
|
||||||
background-color: @background-alt;
|
|
||||||
text-color: @background;
|
|
||||||
vertical-align: 0.5;
|
|
||||||
horizontal-align: 0.0;
|
|
||||||
}
|
|
||||||
error-message {
|
|
||||||
padding: 12px;
|
|
||||||
border-radius: 20px;
|
|
||||||
background-color: @background-alt;
|
|
||||||
text-color: @background;
|
|
||||||
}
|
|
@ -1,50 +0,0 @@
|
|||||||
@import "~/.config/rofi/config.rasi"
|
|
||||||
|
|
||||||
/* ---- Configuration ---- */
|
|
||||||
configuration {
|
|
||||||
modi: "drun";
|
|
||||||
}
|
|
||||||
|
|
||||||
window {
|
|
||||||
width: 60%;
|
|
||||||
height: 80%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---- Imagebox ---- */
|
|
||||||
imagebox {
|
|
||||||
orientation: vertical;
|
|
||||||
children:
|
|
||||||
[ "entry", "listbox"];
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
entry {
|
|
||||||
expand: false;
|
|
||||||
placeholder: "Choose Wallpaper";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---- Listview ---- */
|
|
||||||
listview {
|
|
||||||
columns: 3;
|
|
||||||
lines: 3;
|
|
||||||
flow: horizontal;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ---- Element ---- */
|
|
||||||
element {
|
|
||||||
orientation: vertical;
|
|
||||||
padding: 0px;
|
|
||||||
spacing: 0px;
|
|
||||||
border-radius: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-icon {
|
|
||||||
size: 25%;
|
|
||||||
}
|
|
||||||
|
|
||||||
element-text {
|
|
||||||
color: transparent;
|
|
||||||
font: "JetBrainsMono Nerd Font SemiBold 12";
|
|
||||||
vertical-align: 0.5;
|
|
||||||
horizontal-align: 0.5;
|
|
||||||
}
|
|
BIN
.config/waybar/experimental.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
.config/waybar/main.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
@ -9,3 +9,4 @@ else
|
|||||||
waybar &
|
waybar &
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
23
.config/waybar/select.sh
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
WAYBAR_DIR="$HOME/.config/waybar"
|
||||||
|
STYLECSS="$WAYBAR_DIR/style.css"
|
||||||
|
|
||||||
|
menu() {
|
||||||
|
find "${WAYBAR_DIR}" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" \) | awk '{print "img:"$0}'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
main() {
|
||||||
|
choice=$(menu | wofi -c ~/.config/wofi/waybar -s ~/.config/wofi/style-waybar.css --show dmenu --prompt " Select Waybar (Scroll with Arrows)" -n)
|
||||||
|
selected_wallpaper=$(echo "$choice" | sed 's/^img://')
|
||||||
|
echo $selected_wallpaper
|
||||||
|
if [[ "$selected_wallpaper" == "/home/$USER/.config/waybar/experimental.png" ]]; then
|
||||||
|
cat $WAYBAR_DIR/style-experimental.css > $STYLECSS
|
||||||
|
pkill waybar && waybar
|
||||||
|
elif [[ "$selected_wallpaper" == "/home/$USER/.config/waybar/main.png" ]]; then
|
||||||
|
cat $WAYBAR_DIR/style-main.css > $STYLECSS
|
||||||
|
pkill waybar && waybar
|
||||||
|
fi
|
||||||
|
|
||||||
|
}
|
||||||
|
main
|
@ -20,6 +20,7 @@ window#waybar{
|
|||||||
border-radius:10px;
|
border-radius:10px;
|
||||||
background: alpha(@background,.5);
|
background: alpha(@background,.5);
|
||||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||||
|
min-width: 150.1px;
|
||||||
}
|
}
|
||||||
.modules-right {
|
.modules-right {
|
||||||
padding:7px;
|
padding:7px;
|
||||||
@ -64,7 +65,8 @@ tooltip {
|
|||||||
text-shadow:none;
|
text-shadow:none;
|
||||||
background: @color2;
|
background: @color2;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
transition: all .3s ease-in-out;
|
transition: all .3s;
|
||||||
|
min-width: 15px;
|
||||||
}
|
}
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
color:rgba(0,0,0,0);
|
color:rgba(0,0,0,0);
|
||||||
@ -72,11 +74,9 @@ tooltip {
|
|||||||
background: @color1;
|
background: @color1;
|
||||||
}
|
}
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
color:rgba(0,0,0,0);
|
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0px 2px;
|
padding: 0px 2px;
|
||||||
border-radius:10px;
|
border-radius:10px;
|
||||||
transition: all .3s ease-in-out;
|
|
||||||
background: @color1;
|
background: @color1;
|
||||||
min-width: 30px;
|
min-width: 30px;
|
||||||
}
|
}
|
||||||
@ -84,23 +84,20 @@ tooltip {
|
|||||||
background: @color2;
|
background: @color2;
|
||||||
}
|
}
|
||||||
#workspaces button.empty {
|
#workspaces button.empty {
|
||||||
color: rgba(0,0,0,0);
|
color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
text-shadow: 0px 0px 2px rgba(0, 0, 0, .3);
|
background: alpha(@background,.5) ;
|
||||||
transition: all .3s ease-in-out;
|
|
||||||
background: rgba(0,0,0,0);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#workspaces button.empty:hover {
|
#workspaces button.empty:hover {
|
||||||
color: rgba(0,0,0,0);
|
color: rgba(0,0,0,0);
|
||||||
border: none;
|
border: none;
|
||||||
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, 1);
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||||
}
|
}
|
||||||
#workspaces button.empty.active {
|
#workspaces button.empty.active {
|
||||||
color: rgba(0,0,0,0);
|
color: rgba(0,0,0,0);
|
||||||
border: none;
|
border: none;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
transition: all .3s ease-in-out;
|
|
||||||
background: @color1;
|
background: @color1;
|
||||||
}
|
}
|
||||||
#workspaces button.empty.active:hover{
|
#workspaces button.empty.active:hover{
|
167
.config/waybar/style-main.css
Executable file
@ -0,0 +1,167 @@
|
|||||||
|
@import url('../../.cache/wal/colors-waybar.css');
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-size:15px;
|
||||||
|
font-family: "CodeNewRoman Nerd Font Propo";
|
||||||
|
}
|
||||||
|
window#waybar{
|
||||||
|
all:unset;
|
||||||
|
}
|
||||||
|
.modules-left {
|
||||||
|
padding:7px;
|
||||||
|
margin:10 0 5 10;
|
||||||
|
border-radius:10px;
|
||||||
|
background: alpha(@background,.6);
|
||||||
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
|
}
|
||||||
|
.modules-center {
|
||||||
|
padding:7px;
|
||||||
|
margin:10 0 5 0;
|
||||||
|
border-radius:10px;
|
||||||
|
background: alpha(@background,.6);
|
||||||
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
|
}
|
||||||
|
.modules-right {
|
||||||
|
padding:7px;
|
||||||
|
margin: 10 10 5 0;
|
||||||
|
border-radius:10px;
|
||||||
|
background: alpha(@background,.6);
|
||||||
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
|
}
|
||||||
|
tooltip {
|
||||||
|
background:@background;
|
||||||
|
color: @color7;
|
||||||
|
}
|
||||||
|
#clock:hover, #custom-pacman:hover, #custom-notification:hover,#bluetooth:hover,#network:hover,#battery:hover, #cpu:hover,#memory:hover,#temperature:hover{
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color9;
|
||||||
|
}
|
||||||
|
#custom-notification {
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
}
|
||||||
|
#clock{
|
||||||
|
padding: 0px 5px;
|
||||||
|
color:@color7;
|
||||||
|
transition: all .3s ease;
|
||||||
|
}
|
||||||
|
#custom-pacman{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
|
||||||
|
}
|
||||||
|
#workspaces {
|
||||||
|
padding: 0px 5px;
|
||||||
|
}
|
||||||
|
#workspaces button {
|
||||||
|
all:unset;
|
||||||
|
padding: 0px 5px;
|
||||||
|
color: alpha(@color9,.4);
|
||||||
|
transition: all .2s ease;
|
||||||
|
}
|
||||||
|
#workspaces button:hover {
|
||||||
|
color:rgba(0,0,0,0);
|
||||||
|
border: none;
|
||||||
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||||
|
transition: all 1s ease;
|
||||||
|
}
|
||||||
|
#workspaces button.active {
|
||||||
|
color: @color9;
|
||||||
|
border: none;
|
||||||
|
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
#workspaces button.empty {
|
||||||
|
color: rgba(0,0,0,0);
|
||||||
|
border: none;
|
||||||
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .2);
|
||||||
|
}
|
||||||
|
#workspaces button.empty:hover {
|
||||||
|
color: rgba(0,0,0,0);
|
||||||
|
border: none;
|
||||||
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, .5);
|
||||||
|
transition: all 1s ease;
|
||||||
|
}
|
||||||
|
#workspaces button.empty.active {
|
||||||
|
color: @color9;
|
||||||
|
border: none;
|
||||||
|
text-shadow: 0px 0px 2px rgba(0, 0, 0, .5);
|
||||||
|
}
|
||||||
|
#bluetooth{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
|
||||||
|
}
|
||||||
|
#network{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
|
||||||
|
}
|
||||||
|
#battery{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
#battery.charging {
|
||||||
|
color: #26A65B;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.warning:not(.charging) {
|
||||||
|
color: #ffbe61;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.critical:not(.charging) {
|
||||||
|
color: #f53c3c;
|
||||||
|
animation-name: blink;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-direction: alternate;
|
||||||
|
}
|
||||||
|
#group-expand{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
}
|
||||||
|
#custom-expand{
|
||||||
|
padding: 0px 5px;
|
||||||
|
color:alpha(@foreground,.2);
|
||||||
|
text-shadow: 0px 0px 2px rgba(0, 0, 0, .7);
|
||||||
|
transition: all .3s ease;
|
||||||
|
}
|
||||||
|
#custom-expand:hover{
|
||||||
|
color:rgba(255,255,255,.2);
|
||||||
|
text-shadow: 0px 0px 2px rgba(255, 255, 255, .5);
|
||||||
|
}
|
||||||
|
#custom-colorpicker{
|
||||||
|
padding: 0px 5px;
|
||||||
|
}
|
||||||
|
#cpu,#memory,#temperature{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
color:@color7;
|
||||||
|
|
||||||
|
}
|
||||||
|
#custom-endpoint{
|
||||||
|
color:transparent;
|
||||||
|
text-shadow: 0px 0px 1.5px rgba(0, 0, 0, 1);
|
||||||
|
|
||||||
|
}
|
||||||
|
#tray{
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
|
||||||
|
}
|
||||||
|
#tray menu * {
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tray menu separator {
|
||||||
|
padding: 0px 5px;
|
||||||
|
transition: all .3s ease;
|
||||||
|
}
|
6
.config/waybar/style.css
Executable file → Normal file
@ -11,21 +11,21 @@ window#waybar{
|
|||||||
padding:7px;
|
padding:7px;
|
||||||
margin:10 0 5 10;
|
margin:10 0 5 10;
|
||||||
border-radius:10px;
|
border-radius:10px;
|
||||||
background: alpha(@background,.5);
|
background: alpha(@background,.6);
|
||||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
}
|
}
|
||||||
.modules-center {
|
.modules-center {
|
||||||
padding:7px;
|
padding:7px;
|
||||||
margin:10 0 5 0;
|
margin:10 0 5 0;
|
||||||
border-radius:10px;
|
border-radius:10px;
|
||||||
background: alpha(@background,.5);
|
background: alpha(@background,.6);
|
||||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
}
|
}
|
||||||
.modules-right {
|
.modules-right {
|
||||||
padding:7px;
|
padding:7px;
|
||||||
margin: 10 10 5 0;
|
margin: 10 10 5 0;
|
||||||
border-radius:10px;
|
border-radius:10px;
|
||||||
background: alpha(@background,.5);
|
background: alpha(@background,.6);
|
||||||
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, .6);
|
||||||
}
|
}
|
||||||
tooltip {
|
tooltip {
|
||||||
|
@ -4,10 +4,10 @@ width=500
|
|||||||
show=drun
|
show=drun
|
||||||
prompt=Search
|
prompt=Search
|
||||||
height=400
|
height=400
|
||||||
always_parse_args=true
|
|
||||||
show_all=true
|
|
||||||
term=kitty
|
term=kitty
|
||||||
hide_scroll=true
|
hide_scroll=true
|
||||||
print_command=true
|
print_command=true
|
||||||
insensitive=true
|
insensitive=true
|
||||||
columns=1
|
columns=1
|
||||||
|
no_actions=true
|
||||||
|
|
||||||
|
@ -70,9 +70,7 @@ window {
|
|||||||
}
|
}
|
||||||
#entry {
|
#entry {
|
||||||
all:unset;
|
all:unset;
|
||||||
padding-left:35px;
|
padding: 20 0 20 45;
|
||||||
padding-top: 35px;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#entry arrow {
|
#entry arrow {
|
||||||
border: none;
|
border: none;
|
||||||
@ -80,6 +78,9 @@ window {
|
|||||||
|
|
||||||
}
|
}
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
|
border: none;
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: alpha(@background,.2);
|
||||||
}
|
}
|
||||||
#entry:selected #text {
|
#entry:selected #text {
|
||||||
color: @mauve;
|
color: @mauve;
|
97
.config/wofi/style-waybar.css
Executable file
@ -0,0 +1,97 @@
|
|||||||
|
@import url('/home/eli/.cache/wal/colors-waybar.css');
|
||||||
|
|
||||||
|
@define-color mauve @color9;
|
||||||
|
@define-color red @color9;
|
||||||
|
@define-color lavender @color7;
|
||||||
|
@define-color text @color7;
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% {
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
all: unset;
|
||||||
|
font-family: 'CodeNewRoman Nerd Font Mono', monospace;
|
||||||
|
font-size: 18px;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
text-shadow:none;
|
||||||
|
background-color:transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
all:unset;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 0px;
|
||||||
|
background-color: alpha(@background,.5);
|
||||||
|
}
|
||||||
|
#inner-box {
|
||||||
|
margin: 2px;
|
||||||
|
padding: 5px
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
#outer-box {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
#scroll {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 30px;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
#input {
|
||||||
|
all:unset;
|
||||||
|
margin-left:20px;
|
||||||
|
margin-right:20px;
|
||||||
|
margin-top:20px;
|
||||||
|
padding: 20px;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
color: @text;
|
||||||
|
box-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
|
||||||
|
border-radius:10;
|
||||||
|
background-color: alpha(@background,.2);
|
||||||
|
}
|
||||||
|
#input image {
|
||||||
|
border: none;
|
||||||
|
color: @red;
|
||||||
|
}
|
||||||
|
#input * {
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#input:focus {
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
border-radius:10;
|
||||||
|
}
|
||||||
|
#text {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: @text;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
#entry {
|
||||||
|
border: none;
|
||||||
|
padding: 30;
|
||||||
|
}
|
||||||
|
#entry arrow {
|
||||||
|
border: none;
|
||||||
|
color: @lavender;
|
||||||
|
|
||||||
|
}
|
||||||
|
#entry:selected {
|
||||||
|
padding: 30;
|
||||||
|
border: none;
|
||||||
|
border-radius: 20px;
|
||||||
|
background-color: alpha(@background,.2);
|
||||||
|
}
|
||||||
|
#entry:selected #text {
|
||||||
|
color: @mauve;
|
||||||
|
}
|
||||||
|
#entry:drop(active) {
|
||||||
|
background-color: @lavender !important;
|
||||||
|
}
|
||||||
|
|
@ -12,13 +12,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
|
all:unset;
|
||||||
font-family: 'CodeNewRoman Nerd Font Mono', monospace;
|
font-family: 'CodeNewRoman Nerd Font Mono', monospace;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
outline: none;
|
outline: none;
|
||||||
border: none;
|
border: none;
|
||||||
text-shadow:none;
|
text-shadow:none;
|
||||||
background-color:transparent;
|
background-color:transparent;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window {
|
||||||
@ -49,13 +49,14 @@ window {
|
|||||||
border: none;
|
border: none;
|
||||||
outline: none;
|
outline: none;
|
||||||
color: @text;
|
color: @text;
|
||||||
box-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
|
box-shadow: 1px 1px 5px rgba(0,0,0, .5);
|
||||||
border-radius:10;
|
border-radius:10;
|
||||||
background-color: alpha(@background,.2);
|
background-color: alpha(@background,.2);
|
||||||
}
|
}
|
||||||
#input image {
|
#input image {
|
||||||
border: none;
|
border: none;
|
||||||
color: @red;
|
color: @red;
|
||||||
|
padding-right:10px;
|
||||||
}
|
}
|
||||||
#input * {
|
#input * {
|
||||||
border: none;
|
border: none;
|
||||||
@ -65,6 +66,7 @@ window {
|
|||||||
#input:focus {
|
#input:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
border-radius:10;
|
border-radius:10;
|
||||||
}
|
}
|
||||||
#text {
|
#text {
|
||||||
@ -73,10 +75,16 @@ window {
|
|||||||
color: @text;
|
color: @text;
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
#text {
|
||||||
|
margin: 5px;
|
||||||
|
border: none;
|
||||||
|
color: @text;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
#entry {
|
#entry {
|
||||||
border: none;
|
border: none;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
padding-left: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
#entry arrow {
|
#entry arrow {
|
||||||
border: none;
|
border: none;
|
||||||
|
13
.config/wofi/wallpaper
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
[config]
|
||||||
|
allow_images=true
|
||||||
|
show=drun
|
||||||
|
width=800
|
||||||
|
height=600
|
||||||
|
always_parse_args=true
|
||||||
|
show_all=true
|
||||||
|
term=kitty
|
||||||
|
hide_scroll=true
|
||||||
|
print_command=true
|
||||||
|
insensitive=true
|
||||||
|
columns=4
|
||||||
|
image_size=150
|
5
.config/wofi/config1 → .config/wofi/waybar
Executable file → Normal file
@ -9,5 +9,6 @@ term=kitty
|
|||||||
hide_scroll=true
|
hide_scroll=true
|
||||||
print_command=true
|
print_command=true
|
||||||
insensitive=true
|
insensitive=true
|
||||||
columns=3
|
columns=1
|
||||||
image_size=300
|
image_size=1050
|
||||||
|
|
@ -7,7 +7,7 @@ wal -i ~/Dotfiles/wallpapers/walls/r82.jpg -n
|
|||||||
yay -S waybar swaync starship myfetch neovim python-pywalfox hypridle hyprpicker hyprshot hyprlock pyprland wlogout fd cava brightnessctl clock-rs-git
|
yay -S waybar swaync starship myfetch neovim python-pywalfox hypridle hyprpicker hyprshot hyprlock pyprland wlogout fd cava brightnessctl clock-rs-git
|
||||||
yay -S nerd-fonts
|
yay -S nerd-fonts
|
||||||
yay -S nwg-look qogir-icon-theme materia-gtk-theme illogical-impulse-bibata-modern-classic-bin
|
yay -S nwg-look qogir-icon-theme materia-gtk-theme illogical-impulse-bibata-modern-classic-bin
|
||||||
yay -S thunar gvfs tumbler eza bottom htop imagemagick
|
yay -S thunar gvfs tumbler eza bottom htop
|
||||||
yay -S libreoffice-fresh
|
yay -S libreoffice-fresh
|
||||||
yay -S spotify ncspot discord code
|
yay -S spotify ncspot discord code
|
||||||
yay -S blueman bluez
|
yay -S blueman bluez
|
||||||
|
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 820 KiB |
Before Width: | Height: | Size: 1002 KiB |
Before Width: | Height: | Size: 486 KiB |
Before Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 779 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 3.5 MiB |
Before Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 4.8 MiB |
Before Width: | Height: | Size: 594 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 970 KiB |
Before Width: | Height: | Size: 790 KiB |
Before Width: | Height: | Size: 304 KiB |
Before Width: | Height: | Size: 238 KiB |
Before Width: | Height: | Size: 2.6 MiB |
Before Width: | Height: | Size: 953 KiB |
Before Width: | Height: | Size: 123 KiB |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 824 KiB |
Before Width: | Height: | Size: 992 KiB |
Before Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 921 KiB |
Before Width: | Height: | Size: 3.6 MiB |
Before Width: | Height: | Size: 234 KiB |
Before Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 3.1 MiB |
Before Width: | Height: | Size: 205 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 540 KiB |
Before Width: | Height: | Size: 678 KiB |
Before Width: | Height: | Size: 451 KiB |
Before Width: | Height: | Size: 885 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 540 KiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 849 KiB |
Before Width: | Height: | Size: 265 KiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 974 KiB |
Before Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 5.7 MiB |
Before Width: | Height: | Size: 2.6 MiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 341 KiB |
Before Width: | Height: | Size: 5.2 MiB |
Before Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 170 KiB |
Before Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 841 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 9.4 MiB |
Before Width: | Height: | Size: 4.0 MiB |
Before Width: | Height: | Size: 849 KiB |
Before Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 3.2 MiB |
Before Width: | Height: | Size: 7.4 MiB |
Before Width: | Height: | Size: 4.4 MiB |
Before Width: | Height: | Size: 4.8 MiB |
Before Width: | Height: | Size: 4.4 MiB |
Before Width: | Height: | Size: 7.9 MiB |