some stuff
2
.bashrc
@ -4,6 +4,6 @@ alias giturl="git config --get remote.origin.url"
|
|||||||
alias push="git push"
|
alias push="git push"
|
||||||
alias commit="git commit"
|
alias commit="git commit"
|
||||||
alias add="git add"
|
alias add="git add"
|
||||||
alias vim="nvim"
|
alias vim="vim -N"
|
||||||
|
|
||||||
PS1="[\[\033[32m\]\w]\[\033[0m\]\n\[\033[1;36m\]\u\[\033[1;33m\] => \[\033[0m\]"
|
PS1="[\[\033[32m\]\w]\[\033[0m\]\n\[\033[1;36m\]\u\[\033[1;33m\] => \[\033[0m\]"
|
||||||
|
12
.config/fuzzel/fuzzel.ini
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
[colors]
|
||||||
|
background=282828dd
|
||||||
|
text=ebdbb2ff
|
||||||
|
match=b8bb26ff
|
||||||
|
selection-match=fb4934ff
|
||||||
|
selection=ebdbb2dd
|
||||||
|
selection-text=282828ff
|
||||||
|
border=b8bb26ff
|
||||||
|
|
||||||
|
[border]
|
||||||
|
width=2
|
||||||
|
radius=0
|
BIN
.config/hypr/.hyprland.conf.swp
Normal file
@ -1,8 +1,12 @@
|
|||||||
exec-once="hyprpaper"
|
exec-once="hyprpaper"
|
||||||
|
|
||||||
|
decoration {
|
||||||
|
rounding = 0
|
||||||
|
}
|
||||||
general {
|
general {
|
||||||
|
col.active_border = rgb(b8bb26)
|
||||||
|
col.inactive_border = rgb(282828)
|
||||||
|
border_size = 2
|
||||||
gaps_in = 10
|
gaps_in = 10
|
||||||
gaps_out = 20
|
gaps_out = 20
|
||||||
}
|
}
|
||||||
@ -52,3 +56,7 @@ bind = SUPER SHIFT, 7, movetoworkspace, 7
|
|||||||
bind = SUPER SHIFT, 8, movetoworkspace, 8
|
bind = SUPER SHIFT, 8, movetoworkspace, 8
|
||||||
bind = SUPER SHIFT, 9, movetoworkspace, 9
|
bind = SUPER SHIFT, 9, movetoworkspace, 9
|
||||||
bind = SUPER SHIFT, 0, movetoworkspace, 10
|
bind = SUPER SHIFT, 0, movetoworkspace, 10
|
||||||
|
|
||||||
|
# Mouse binds
|
||||||
|
bindm = SUPER, mouse:272, movewindow
|
||||||
|
bindm = SUPER, mouse:273, resizewindow
|
||||||
|
32
.config/kitty/gruvbox.conf
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
## name: Gruvbox Dark
|
||||||
|
## author: Pavel Pertsev
|
||||||
|
## license: MIT/X11
|
||||||
|
## upstream: https://raw.githubusercontent.com/gruvbox-community/gruvbox-contrib/master/kitty/gruvbox-dark.conf
|
||||||
|
|
||||||
|
selection_foreground #ebdbb2
|
||||||
|
selection_background #d65d0e
|
||||||
|
|
||||||
|
background #282828
|
||||||
|
foreground #ebdbb2
|
||||||
|
|
||||||
|
color0 #3c3836
|
||||||
|
color1 #cc241d
|
||||||
|
color2 #98971a
|
||||||
|
color3 #d79921
|
||||||
|
color4 #076678
|
||||||
|
color5 #b16286
|
||||||
|
color6 #689d6a
|
||||||
|
color7 #a89984
|
||||||
|
color8 #928374
|
||||||
|
color9 #fb4934
|
||||||
|
color10 #b8bb26
|
||||||
|
color11 #fabd2f
|
||||||
|
color12 #83a598
|
||||||
|
color13 #d3869b
|
||||||
|
color14 #8ec07c
|
||||||
|
color15 #fbf1c7
|
||||||
|
|
||||||
|
cursor #bdae93
|
||||||
|
cursor_text_color #665c54
|
||||||
|
|
||||||
|
url_color #458588
|
7
.config/kitty/kitty.conf
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
confirm_os_window_close 0
|
||||||
|
background_opacity 0.8
|
||||||
|
|
||||||
|
# BEGIN_KITTY_THEME
|
||||||
|
# Gruvbox Dark
|
||||||
|
include gruvbox.conf
|
||||||
|
# END_KITTY_THEME
|
@ -1,3 +1,5 @@
|
|||||||
set clipboard=unnamedplus
|
set clipboard=unnamedplus
|
||||||
|
syntax on
|
||||||
set relativenumber
|
set relativenumber
|
||||||
|
set t_Co=16
|
||||||
|
|
||||||
|
41
.config/waybar/config
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"layer": "top",
|
||||||
|
"height": 30,
|
||||||
|
"modules-left": ["hyprland/workspaces", "custom/lock", "custom/shutdown", "custom/reboot", "custom/temperature", "cpu", "memory"],
|
||||||
|
"modules-center": ["custom/time", "hyprland/window"],
|
||||||
|
"modules-right": ["custom/metar", "battery", "clock"],
|
||||||
|
"clock": {
|
||||||
|
"format": "{:%a, %d %b %Y %H:%M:%S}",
|
||||||
|
"inverval": 1
|
||||||
|
},
|
||||||
|
"custom/temperature": {
|
||||||
|
"format": " {}",
|
||||||
|
"exec": "sensors | grep 'Tctl:' | sed -E 's/Tctl:[ ]+//' | sed -E 's/[ ]+//'",
|
||||||
|
"interval": 1,
|
||||||
|
},
|
||||||
|
"cpu": {
|
||||||
|
"format": "{}% "
|
||||||
|
},
|
||||||
|
"memory": {
|
||||||
|
"format": "{}% "
|
||||||
|
},
|
||||||
|
"custom/time": {
|
||||||
|
"exec": "bash $HOME/scripts/time.sh --hex",
|
||||||
|
"format": "{}",
|
||||||
|
"interval": 1,
|
||||||
|
},
|
||||||
|
"custom/lock": {
|
||||||
|
"on-click": "hyprlock",
|
||||||
|
"format": "",
|
||||||
|
},
|
||||||
|
"custom/shutdown": {
|
||||||
|
"on-click": "shutdown now",
|
||||||
|
"format": "",
|
||||||
|
},
|
||||||
|
"custom/reboot": {
|
||||||
|
"on-click": "reboot",
|
||||||
|
"format": "",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
85
.config/waybar/style.css
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
window#waybar.screenBorder {
|
||||||
|
border: 2px solid #b8bb26;
|
||||||
|
background-color: transparent;
|
||||||
|
box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2;
|
||||||
|
border-radius: 0px;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
window#waybar.top,
|
||||||
|
window#waybar.bottom,
|
||||||
|
window#waybar.right,
|
||||||
|
window#waybar.left {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0px;
|
||||||
|
color: #ebdbb2;
|
||||||
|
background: #282828;
|
||||||
|
}
|
||||||
|
#workspaces button:hover {
|
||||||
|
color: #b8bb26;
|
||||||
|
}
|
||||||
|
#workspaces button.active {
|
||||||
|
color: #8ec07c;
|
||||||
|
}
|
||||||
|
#workspaces button.focuced {
|
||||||
|
color: #282828;
|
||||||
|
background: #ebdbb2;
|
||||||
|
}
|
||||||
|
#workspaces {
|
||||||
|
border: 2px solid #b8bb26;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: 12px 12px 0px 2px #000000;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 6px;
|
||||||
|
padding: 0px 5px 0px 5px;
|
||||||
|
background: #282828;
|
||||||
|
}
|
||||||
|
#custom-caway {
|
||||||
|
color: #ebdbb2;
|
||||||
|
background: #282828;
|
||||||
|
border: 2px solid #b8bb26;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: 12px 12px 0px 2px #000000;
|
||||||
|
margin: 6px;
|
||||||
|
}
|
||||||
|
#custom-clock,
|
||||||
|
#clock,
|
||||||
|
#custom-time,
|
||||||
|
#network,
|
||||||
|
#custom-weather,
|
||||||
|
#custom-browser,
|
||||||
|
#custom-terminal,
|
||||||
|
#custom-anki,
|
||||||
|
#custom-keepassxc,
|
||||||
|
#custom-gimp,
|
||||||
|
#custom-writer,
|
||||||
|
#custom-luanti,
|
||||||
|
#custom-nixpkgs,
|
||||||
|
#custom-email,
|
||||||
|
#custom-irc,
|
||||||
|
#disk,
|
||||||
|
#memory,
|
||||||
|
#cpu,
|
||||||
|
#custom-website,
|
||||||
|
#pulseaudio,
|
||||||
|
#custom-metar,
|
||||||
|
#custom-uptime,
|
||||||
|
#custom-temperature,
|
||||||
|
#custom-fuzzy-time,
|
||||||
|
#custom-cmus-artist,
|
||||||
|
#custom-cmus-song,
|
||||||
|
#custom-playerctl,
|
||||||
|
#custom-cava-waybar-local,
|
||||||
|
#custom-lock,
|
||||||
|
#custom-shutdown,
|
||||||
|
#custom-reboot,
|
||||||
|
#window {
|
||||||
|
color: #ebdbb2;
|
||||||
|
background: #282828;
|
||||||
|
border: 2px solid #b8bb26;
|
||||||
|
border-radius: 0;
|
||||||
|
box-shadow: 12px 12px 0px 2px #000000;
|
||||||
|
padding: 3px;
|
||||||
|
margin: 6px;
|
||||||
|
}
|
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-active.png
Normal file
After Width: | Height: | Size: 145 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-inactive.png
Normal file
After Width: | Height: | Size: 138 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-active.png
Normal file
After Width: | Height: | Size: 194 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-left-inactive.png
Normal file
After Width: | Height: | Size: 183 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-active.png
Normal file
After Width: | Height: | Size: 177 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/bottom-right-inactive.png
Normal file
After Width: | Height: | Size: 172 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/close-active.png
Normal file
After Width: | Height: | Size: 923 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/close-inactive.png
Normal file
After Width: | Height: | Size: 791 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/close-prelight.png
Normal file
After Width: | Height: | Size: 899 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/close-pressed.png
Normal file
After Width: | Height: | Size: 910 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/hide-active.png
Normal file
After Width: | Height: | Size: 801 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/hide-inactive.png
Normal file
After Width: | Height: | Size: 670 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/hide-prelight.png
Normal file
After Width: | Height: | Size: 734 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/hide-pressed.png
Normal file
After Width: | Height: | Size: 777 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/left-active.png
Normal file
After Width: | Height: | Size: 144 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/left-inactive.png
Normal file
After Width: | Height: | Size: 141 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-active.png
Normal file
After Width: | Height: | Size: 912 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-inactive.png
Normal file
After Width: | Height: | Size: 788 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-prelight.png
Normal file
After Width: | Height: | Size: 882 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-pressed.png
Normal file
After Width: | Height: | Size: 897 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-active.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-inactive.png
Normal file
After Width: | Height: | Size: 917 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-prelight.png
Normal file
After Width: | Height: | Size: 1013 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/maximize-toggled-pressed.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/menu-active.png
Normal file
After Width: | Height: | Size: 309 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/menu-inactive.png
Normal file
After Width: | Height: | Size: 304 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/menu-prelight.png
Normal file
After Width: | Height: | Size: 814 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/menu-pressed.png
Normal file
After Width: | Height: | Size: 861 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/right-active.png
Normal file
After Width: | Height: | Size: 145 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/right-inactive.png
Normal file
After Width: | Height: | Size: 141 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-active.png
Normal file
After Width: | Height: | Size: 414 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-inactive.png
Normal file
After Width: | Height: | Size: 354 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-prelight.png
Normal file
After Width: | Height: | Size: 884 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-pressed.png
Normal file
After Width: | Height: | Size: 896 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-active.png
Normal file
After Width: | Height: | Size: 419 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-inactive.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-prelight.png
Normal file
After Width: | Height: | Size: 879 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/shade-toggled-pressed.png
Normal file
After Width: | Height: | Size: 860 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-active.png
Normal file
After Width: | Height: | Size: 685 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-inactive.png
Normal file
After Width: | Height: | Size: 631 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-prelight.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-pressed.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-active.png
Normal file
After Width: | Height: | Size: 775 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-inactive.png
Normal file
After Width: | Height: | Size: 724 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-prelight.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/stick-toggled-pressed.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
23
.themes/Gruvbox-Dark-hdpi/xfwm4/themerc
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
button_offset=9
|
||||||
|
button_spacing=0
|
||||||
|
|
||||||
|
show_app_icon=false
|
||||||
|
|
||||||
|
full_width_title=true
|
||||||
|
|
||||||
|
title_shadow_active=false
|
||||||
|
title_shadow_inactive=false
|
||||||
|
|
||||||
|
title_horizontal_offset=3
|
||||||
|
|
||||||
|
active_text_color=#f0f7fe
|
||||||
|
active_text_shadow_color=#222426
|
||||||
|
|
||||||
|
inactive_text_color=#999da3
|
||||||
|
inactive_text_shadow_color=#222426
|
||||||
|
|
||||||
|
shadow_delta_height=2
|
||||||
|
shadow_delta_width=0
|
||||||
|
shadow_delta_x=0
|
||||||
|
shadow_delta_y=-5
|
||||||
|
shadow_opacity=40
|
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-1-active.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-1-inactive.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-2-active.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-2-inactive.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-3-active.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-3-inactive.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-4-active.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-4-inactive.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-5-active.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/title-5-inactive.png
Normal file
After Width: | Height: | Size: 154 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/top-left-active.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/top-left-inactive.png
Normal file
After Width: | Height: | Size: 239 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/top-right-active.png
Normal file
After Width: | Height: | Size: 328 B |
BIN
.themes/Gruvbox-Dark-hdpi/xfwm4/top-right-inactive.png
Normal file
After Width: | Height: | Size: 271 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-active.png
Normal file
After Width: | Height: | Size: 147 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-inactive.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-active.png
Normal file
After Width: | Height: | Size: 185 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-left-inactive.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-active.png
Normal file
After Width: | Height: | Size: 177 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/bottom-right-inactive.png
Normal file
After Width: | Height: | Size: 169 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/close-active.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/close-inactive.png
Normal file
After Width: | Height: | Size: 999 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/close-prelight.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/close-pressed.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/hide-active.png
Normal file
After Width: | Height: | Size: 984 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/hide-inactive.png
Normal file
After Width: | Height: | Size: 869 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/hide-prelight.png
Normal file
After Width: | Height: | Size: 943 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/hide-pressed.png
Normal file
After Width: | Height: | Size: 961 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/left-active.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/left-inactive.png
Normal file
After Width: | Height: | Size: 141 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-active.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-inactive.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-prelight.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-pressed.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-active.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-inactive.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-prelight.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/maximize-toggled-pressed.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/menu-active.png
Normal file
After Width: | Height: | Size: 399 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/menu-inactive.png
Normal file
After Width: | Height: | Size: 369 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/menu-prelight.png
Normal file
After Width: | Height: | Size: 1018 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/menu-pressed.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/right-active.png
Normal file
After Width: | Height: | Size: 149 B |
BIN
.themes/Gruvbox-Dark-xhdpi/xfwm4/right-inactive.png
Normal file
After Width: | Height: | Size: 141 B |