Updated alacritty config, scripts, polybar, etc
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
# Maintainer: Aditya Shakya <adi1090x@gmail.com>
|
# Maintainer: Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
pkgname=archcraft-berry
|
pkgname=archcraft-berry
|
||||||
pkgver=3.0
|
pkgver=4.0
|
||||||
pkgrel=1
|
pkgrel=0
|
||||||
pkgdesc="Berry Configurations for Archcraft"
|
pkgdesc="Berry Configurations for Archcraft"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
url="https://github.com/archcraft-os/archcraft-berry"
|
url="https://github.com/archcraft-os/archcraft-berry"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ skel_dir='/etc/skel/.config'
|
|||||||
wm_config='berry'
|
wm_config='berry'
|
||||||
wm_name='Berry'
|
wm_name='Berry'
|
||||||
current_config="$config_dir/$wm_config"
|
current_config="$config_dir/$wm_config"
|
||||||
updated_config="$config_dir/${wm_config}_pacnew_`date +%d-%m-%y`"
|
updated_config="$config_dir/${wm_config}_pacnew_`date +%Y-%m-%d`"
|
||||||
|
|
||||||
## -----------------------------------
|
## -----------------------------------
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
## Script Termination
|
## Script Termination
|
||||||
exit_on_signal_SIGINT () {
|
exit_on_signal_SIGINT () {
|
||||||
|
|||||||
@@ -0,0 +1,104 @@
|
|||||||
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
##
|
||||||
|
## Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||||
|
## It's a very basic and simple config file, for full configuration, Run `man 5 alacritty`
|
||||||
|
|
||||||
|
## GENERAL --------------------------------------------------------
|
||||||
|
|
||||||
|
## Import additional configuration files.
|
||||||
|
import = ["~/.config/berry/alacritty/colors.toml", "~/.config/berry/alacritty/fonts.toml"]
|
||||||
|
|
||||||
|
## You can set shell.program to the path of your favorite shell, e.g. /bin/zsh.
|
||||||
|
## Entries in shell.args are passed as arguments to the shell.
|
||||||
|
#shell = { program = "/bin/zsh", args = ["--login"] }
|
||||||
|
|
||||||
|
## Directory the shell is started in. When this is unset, or "None",
|
||||||
|
## the working directory of the parent process will be used.
|
||||||
|
#working_directory = "None"
|
||||||
|
|
||||||
|
## Live config reload
|
||||||
|
live_config_reload = true
|
||||||
|
|
||||||
|
## Offer IPC using alacritty msg
|
||||||
|
ipc_socket = true
|
||||||
|
|
||||||
|
## ENVIRONMENT ----------------------------------------------------
|
||||||
|
|
||||||
|
## All key-value pairs in the [env] section will be added as environment variables for any process spawned
|
||||||
|
## by Alacritty, including its shell. Some entries may override variables set by alacritty itself.
|
||||||
|
[env]
|
||||||
|
TERM = "alacritty"
|
||||||
|
WINIT_X11_SCALE_FACTOR = "1.0"
|
||||||
|
|
||||||
|
## WINDOW ---------------------------------------------------------
|
||||||
|
[window]
|
||||||
|
position = "None"
|
||||||
|
dynamic_padding = true
|
||||||
|
decorations = "full"
|
||||||
|
opacity = 1.0
|
||||||
|
blur = false
|
||||||
|
startup_mode = "Windowed"
|
||||||
|
dynamic_title = true
|
||||||
|
class = { instance = "Alacritty", general = "Alacritty" }
|
||||||
|
decorations_theme_variant = "None"
|
||||||
|
|
||||||
|
## Number of lines/columns (not pixels) in the terminal.
|
||||||
|
[window.dimensions]
|
||||||
|
columns = 82
|
||||||
|
lines = 24
|
||||||
|
|
||||||
|
## Blank space added around the window in pixels.
|
||||||
|
[window.padding]
|
||||||
|
x = 25
|
||||||
|
y = 25
|
||||||
|
|
||||||
|
## SCROLLING ------------------------------------------------------
|
||||||
|
[scrolling]
|
||||||
|
history = 10000
|
||||||
|
multiplier = 3
|
||||||
|
|
||||||
|
## BELL -----------------------------------------------------------
|
||||||
|
[bell]
|
||||||
|
animation = "Linear"
|
||||||
|
duration = 20
|
||||||
|
command = { program = "paplay", args = ["/usr/share/sounds/freedesktop/stereo/dialog-error.oga"] }
|
||||||
|
|
||||||
|
## SELECTION ------------------------------------------------------
|
||||||
|
[selection]
|
||||||
|
save_to_clipboard = true
|
||||||
|
|
||||||
|
## CURSOR ---------------------------------------------------------
|
||||||
|
[cursor]
|
||||||
|
vi_mode_style = "None"
|
||||||
|
blink_interval = 750
|
||||||
|
blink_timeout = 5
|
||||||
|
unfocused_hollow = false
|
||||||
|
thickness = 0.15
|
||||||
|
|
||||||
|
[cursor.style]
|
||||||
|
shape = "Block"
|
||||||
|
blinking = "On"
|
||||||
|
|
||||||
|
## MOUSE ----------------------------------------------------------
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = false
|
||||||
|
|
||||||
|
## HINTS ----------------------------------------------------------
|
||||||
|
[[hints.enabled]]
|
||||||
|
command = "xdg-open"
|
||||||
|
hyperlinks = true
|
||||||
|
post_processing = true
|
||||||
|
persist = false
|
||||||
|
mouse.enabled = true
|
||||||
|
binding = { key = "U", mods = "Control|Shift" }
|
||||||
|
regex = "(ipfs:|ipns:|magnet:|mailto:|gemini://|gopher://|https://|http://|news:|file:|git://|ssh:|ftp://)[^\u0000-\u001F\u007F-\u009F<>\"\\s{-}\\^⟨⟩‘]+"
|
||||||
|
|
||||||
|
## DEBUG ----------------------------------------------------------
|
||||||
|
[debug]
|
||||||
|
render_timer = false
|
||||||
|
persistent_logging = false
|
||||||
|
log_level = "Warn"
|
||||||
|
renderer = "None"
|
||||||
|
print_events = false
|
||||||
|
highlight_damage = false
|
||||||
|
prefer_egl = false
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
||||||
##
|
|
||||||
## Configuration for Alacritty, the GPU enhanced terminal emulator.
|
|
||||||
## It's a very basic and simple config file, for full configuration...
|
|
||||||
## See, /usr/share/doc/alacritty/example/alacritty.yml
|
|
||||||
|
|
||||||
## Import files (Colors, Fonts, Etc)
|
|
||||||
import:
|
|
||||||
- ~/.config/berry/alacritty/colors.yml
|
|
||||||
- ~/.config/berry/alacritty/fonts.yml
|
|
||||||
|
|
||||||
## Set environment variables
|
|
||||||
env:
|
|
||||||
TERM: alacritty
|
|
||||||
WINIT_X11_SCALE_FACTOR: '1.0'
|
|
||||||
|
|
||||||
## Terminal window settings
|
|
||||||
window:
|
|
||||||
dimensions:
|
|
||||||
columns: 82
|
|
||||||
lines: 24
|
|
||||||
|
|
||||||
padding:
|
|
||||||
x: 25
|
|
||||||
y: 25
|
|
||||||
|
|
||||||
decorations: full
|
|
||||||
startup_mode: Windowed
|
|
||||||
dynamic_title: true
|
|
||||||
|
|
||||||
## scrolling
|
|
||||||
history: 10000
|
|
||||||
multiplier: 3
|
|
||||||
|
|
||||||
## Background opacity
|
|
||||||
opacity: 1.0
|
|
||||||
|
|
||||||
## Cursor
|
|
||||||
cursor:
|
|
||||||
style:
|
|
||||||
shape: Block
|
|
||||||
blinking: On
|
|
||||||
|
|
||||||
unfocused_hollow: false
|
|
||||||
|
|
||||||
## Live config reload
|
|
||||||
live_config_reload: true
|
|
||||||
|
|
||||||
## Shell
|
|
||||||
#shell:
|
|
||||||
# program: /bin/zsh
|
|
||||||
# args:
|
|
||||||
# - --login
|
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
##
|
||||||
|
## Colors configuration -------------------------------------
|
||||||
|
|
||||||
|
[colors.primary]
|
||||||
|
background = "#011826"
|
||||||
|
foreground = "#EEEEEE"
|
||||||
|
|
||||||
|
[colors.normal]
|
||||||
|
black = "#152B42"
|
||||||
|
red = "#D97E96"
|
||||||
|
green = "#498653"
|
||||||
|
yellow = "#838649"
|
||||||
|
blue = "#496886"
|
||||||
|
magenta = "#A36584"
|
||||||
|
cyan = "#50A6A8"
|
||||||
|
white = "#ABB2BF"
|
||||||
|
|
||||||
|
[colors.bright]
|
||||||
|
black = "#1E3C5A"
|
||||||
|
red = "#D97E96"
|
||||||
|
green = "#498653"
|
||||||
|
yellow = "#838649"
|
||||||
|
blue = "#496886"
|
||||||
|
magenta = "#A36584"
|
||||||
|
cyan = "#50A6A8"
|
||||||
|
white = "#B5BCC9"
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
||||||
##
|
|
||||||
## Colors configuration
|
|
||||||
|
|
||||||
colors:
|
|
||||||
# Default colors
|
|
||||||
primary:
|
|
||||||
background: '#011826'
|
|
||||||
foreground: '#EEEEEE'
|
|
||||||
|
|
||||||
# Normal colors
|
|
||||||
normal:
|
|
||||||
black: '#152B42'
|
|
||||||
red: '#D97E96'
|
|
||||||
green: '#498653'
|
|
||||||
yellow: '#838649'
|
|
||||||
blue: '#496886'
|
|
||||||
magenta: '#A36584'
|
|
||||||
cyan: '#50A6A8'
|
|
||||||
white: '#ABB2BF'
|
|
||||||
|
|
||||||
# Bright colors
|
|
||||||
bright:
|
|
||||||
black: '#1E3C5A'
|
|
||||||
red: '#D97E96'
|
|
||||||
green: '#498653'
|
|
||||||
yellow: '#838649'
|
|
||||||
blue: '#496886'
|
|
||||||
magenta: '#A36584'
|
|
||||||
cyan: '#50A6A8'
|
|
||||||
white: '#B5BCC9'
|
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
##
|
||||||
|
## Font configuration ---------------------------------------
|
||||||
|
|
||||||
|
[font]
|
||||||
|
## Font size in points.
|
||||||
|
size = 10
|
||||||
|
|
||||||
|
## When true, Alacritty will use a custom built-in font for box drawing characters and powerline symbols.
|
||||||
|
builtin_box_drawing = true
|
||||||
|
|
||||||
|
## Normal font family.
|
||||||
|
[font.normal]
|
||||||
|
family = "JetBrainsMono Nerd Font"
|
||||||
|
|
||||||
|
## If the family is not specified, it will fall back to the value specified for the normal font.
|
||||||
|
[font.bold]
|
||||||
|
family = "JetBrainsMono Nerd Font"
|
||||||
|
|
||||||
|
## If the family is not specified, it will fall back to the value specified for the normal font.
|
||||||
|
[font.italic]
|
||||||
|
family = "JetBrainsMono Nerd Font"
|
||||||
|
|
||||||
|
## If the family is not specified, it will fall back to the value specified for the normal font.
|
||||||
|
[font.bold_italic]
|
||||||
|
family = "JetBrainsMono Nerd Font"
|
||||||
|
|
||||||
|
## Offset is the extra space around each character.
|
||||||
|
## 'y' can be thought of as modifying the line spacing, and 'x' as modifying the letter spacing.
|
||||||
|
[font.offset]
|
||||||
|
x = 0
|
||||||
|
y = 0
|
||||||
|
|
||||||
|
## Glyph offset determines the locations of the glyphs within their cells with the default being at the bottom.
|
||||||
|
## Increasing 'x' moves the glyph to the right, increasing 'y' moves the glyph upward.
|
||||||
|
[font.glyph_offset]
|
||||||
|
x = 0
|
||||||
|
y = 0
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
|
||||||
##
|
|
||||||
## Font configuration
|
|
||||||
|
|
||||||
font:
|
|
||||||
# Normal (roman) font face
|
|
||||||
normal:
|
|
||||||
family: "JetBrainsMono Nerd Font"
|
|
||||||
#style: Regular
|
|
||||||
|
|
||||||
# Bold font face
|
|
||||||
bold:
|
|
||||||
family: "JetBrainsMono Nerd Font"
|
|
||||||
#style: Bold
|
|
||||||
|
|
||||||
# Italic font face
|
|
||||||
italic:
|
|
||||||
family: "JetBrainsMono Nerd Font"
|
|
||||||
#style: Italic
|
|
||||||
|
|
||||||
# Bold italic font face
|
|
||||||
bold_italic:
|
|
||||||
family: "JetBrainsMono Nerd Font"
|
|
||||||
#style: Bold Italic
|
|
||||||
|
|
||||||
# Point size
|
|
||||||
size: 10
|
|
||||||
|
|
||||||
# Offset
|
|
||||||
#offset:
|
|
||||||
# x: 0
|
|
||||||
# y: 0
|
|
||||||
|
|
||||||
# Glyph offset
|
|
||||||
#glyph_offset:
|
|
||||||
# x: 0
|
|
||||||
# y: 0
|
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Config file for berry WM
|
## Config file for berry WM
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
[global]
|
[global]
|
||||||
monitor = 0
|
monitor = 0
|
||||||
|
|||||||
+3
-3
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3
|
## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3
|
||||||
##
|
##
|
||||||
## Original Picom's Config File
|
## Original Picom's Config File
|
||||||
@@ -17,7 +17,7 @@ rounded-corners-exclude = [
|
|||||||
# "window_type = 'dock'",
|
# "window_type = 'dock'",
|
||||||
"window_type = 'desktop'",
|
"window_type = 'desktop'",
|
||||||
# "class_g ?= 'rofi'",
|
# "class_g ?= 'rofi'",
|
||||||
# "class_g ?= 'polybar'",
|
# "class_g ?= 'Polybar'",
|
||||||
"class_g ?= 'tint2'"
|
"class_g ?= 'tint2'"
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ shadow-exclude = [
|
|||||||
"name ?= 'gnome-pie'",
|
"name ?= 'gnome-pie'",
|
||||||
# "class_g = 'Dmenu'",
|
# "class_g = 'Dmenu'",
|
||||||
# "class_g ?= 'rofi'",
|
# "class_g ?= 'rofi'",
|
||||||
# "class_g ?= 'polybar'",
|
# "class_g ?= 'Polybar'",
|
||||||
"class_g ?= 'Plank'",
|
"class_g ?= 'Plank'",
|
||||||
"name *= 'recordmydesktop'",
|
"name *= 'recordmydesktop'",
|
||||||
"name = 'Notification'",
|
"name = 'Notification'",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Autostart Programs
|
## Autostart Programs
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Script to manage brightness on Archcraft.
|
## Script to manage brightness on Archcraft.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Simple script to pick color quickly.
|
## Simple script to pick color quickly.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,15 +1,14 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Run ncmpcpp with alternate config
|
## Run ncmpcpp with alternate config
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|
||||||
CONFIG="$DIR/alacritty/alacritty.yml"
|
CONFIG="$DIR/alacritty/alacritty.toml"
|
||||||
|
|
||||||
alacritty --class 'Music,Music' --config-file "$CONFIG" \
|
alacritty --class 'Music,Music' --config-file "$CONFIG" \
|
||||||
-o window.dimensions.columns=109 window.dimensions.lines=22 \
|
-o window.dimensions.columns=105 window.dimensions.lines=22 \
|
||||||
-e ~/.ncmpcpp/scripts/ncmpcpp-art
|
-e ~/.ncmpcpp/scripts/ncmpcpp-art
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Script to take screenshots on Archcraft.
|
## Script to take screenshots on Archcraft.
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## launch alacritty with berry config
|
## launch alacritty with berry config
|
||||||
|
|
||||||
# berry directory
|
# berry directory
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
CONFIG="$DIR/alacritty/alacritty.yml"
|
CONFIG="$DIR/alacritty/alacritty.toml"
|
||||||
|
|
||||||
if [ "$1" == "--float" ]; then
|
if [ "$1" == "--float" ]; then
|
||||||
alacritty --class 'alacritty-float,alacritty-float' --config-file "$CONFIG"
|
alacritty --class 'alacritty-float,alacritty-float' --config-file "$CONFIG"
|
||||||
elif [ "$1" == "--full" ]; then
|
elif [ "$1" == "--full" ]; then
|
||||||
alacritty --class 'Fullscreen,Fullscreen' --config-file "$CONFIG" \
|
alacritty --class 'alacritty-fullscreen,alacritty-fullscreen' --config-file "$CONFIG" \
|
||||||
-o window.startup_mode=fullscreen \
|
-o window.startup_mode="'Fullscreen'" \
|
||||||
window.padding.x=30 window.padding.y=30 \
|
window.padding.x=30 window.padding.y=30 \
|
||||||
window.opacity=0.95 font.size=14
|
window.opacity=0.95 font.size=14
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
##
|
##
|
||||||
## Script to manage speaker volume on Archcraft.
|
## Script to manage speaker volume on Archcraft.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
@@ -10,7 +10,7 @@ ASROOT="$DIR/scripts/berry_asroot"
|
|||||||
# Theme Elements
|
# Theme Elements
|
||||||
prompt='Root'
|
prompt='Root'
|
||||||
mesg="Run Applications As Root"
|
mesg="Run Applications As Root"
|
||||||
term='alacritty --class alacritty-float,alacritty-float --config-file /root/.config/berry/alacritty/alacritty.yml'
|
term='alacritty --class alacritty-float,alacritty-float --config-file /root/.config/berry/alacritty/alacritty.toml'
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
layout=`cat ${RASI} | grep 'USE_ICON' | cut -d'=' -f2`
|
layout=`cat ${RASI} | grep 'USE_ICON' | cut -d'=' -f2`
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
DIR="$HOME/.config/berry"
|
DIR="$HOME/.config/berry"
|
||||||
|
|||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
##---------- Keybindings for berry ----------##
|
##---------- Keybindings for berry ----------##
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ super + {f,w,e}
|
|||||||
|
|
||||||
# Terminal Apps
|
# Terminal Apps
|
||||||
ctrl + alt + {v,r,h}
|
ctrl + alt + {v,r,h}
|
||||||
alacritty --config-file ~/.config/berry/alacritty/alacritty.yml -e {vim,ranger,htop}
|
alacritty --config-file ~/.config/berry/alacritty/alacritty.toml -e {vim,ranger,htop}
|
||||||
|
|
||||||
# Lockscreen
|
# Lockscreen
|
||||||
ctrl + alt + l
|
ctrl + alt + l
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
[dmenu]
|
[dmenu]
|
||||||
dmenu_command = rofi -dmenu -theme ~/.config/berry/theme/rofi/networkmenu.rasi
|
dmenu_command = rofi -dmenu -theme ~/.config/berry/theme/rofi/networkmenu.rasi
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
## Files and Directories
|
## Files and Directories
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
@@ -127,11 +127,11 @@ module-margin-right = 1
|
|||||||
; text
|
; text
|
||||||
font-0 = "JetBrains Mono:size=10;4"
|
font-0 = "JetBrains Mono:size=10;4"
|
||||||
; icons
|
; icons
|
||||||
font-1 = "Iosevka Nerd Font:size=12;4"
|
font-1 = "Symbols Nerd Font:size=12;4"
|
||||||
; glyphs
|
; glyphs
|
||||||
font-2 = "Iosevka Nerd Font:size=22;5"
|
font-2 = "Symbols Nerd Font:size=22;5"
|
||||||
; dot
|
; dot
|
||||||
font-3 = "Iosevka Nerd Font:size=10;4"
|
font-3 = "Symbols Nerd Font:size=10;4"
|
||||||
; clock & mpd
|
; clock & mpd
|
||||||
font-4 = "Iosevka:style=bold:size=12;4"
|
font-4 = "Iosevka:style=bold:size=12;4"
|
||||||
; Archcraft
|
; Archcraft
|
||||||
@@ -145,7 +145,7 @@ font-5 = "archcraft:size=12;3"
|
|||||||
# Default
|
# Default
|
||||||
modules-left = date dot mpd
|
modules-left = date dot mpd
|
||||||
modules-center = berrywm
|
modules-center = berrywm
|
||||||
modules-right = volume backlight bluetooth network battery dot sysmenu
|
modules-right = volume backlight bluetooth network battery dot sysmenu tray
|
||||||
|
|
||||||
# Alternate
|
# Alternate
|
||||||
;modules-left = openbox 2LD cpu 3LD memory 4LD filesystem 5LD
|
;modules-left = openbox 2LD cpu 3LD memory 4LD filesystem 5LD
|
||||||
@@ -172,46 +172,6 @@ wm-name =
|
|||||||
; Expects a valid libc locale, for example: sv_SE.UTF-8
|
; Expects a valid libc locale, for example: sv_SE.UTF-8
|
||||||
locale =
|
locale =
|
||||||
|
|
||||||
; Position of the system tray window
|
|
||||||
; If empty or undefined, tray support will be disabled
|
|
||||||
; NOTE: A center aligned tray will cover center aligned modules
|
|
||||||
;
|
|
||||||
; Available positions:
|
|
||||||
; left
|
|
||||||
; center
|
|
||||||
; right
|
|
||||||
; none
|
|
||||||
tray-position = right
|
|
||||||
|
|
||||||
; If true, the bar will not shift its
|
|
||||||
; contents when the tray changes
|
|
||||||
tray-detached = false
|
|
||||||
|
|
||||||
; Tray icon max size
|
|
||||||
tray-maxsize = 16
|
|
||||||
|
|
||||||
; DEPRECATED! Since 3.3.0 the tray always uses pseudo-transparency
|
|
||||||
; Enable pseudo transparency
|
|
||||||
; Will automatically be enabled if a fully transparent
|
|
||||||
; background color is defined using `tray-background`
|
|
||||||
; tray-transparent = false
|
|
||||||
|
|
||||||
; Background color for the tray container
|
|
||||||
; ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
|
||||||
; By default the tray container will use the bar
|
|
||||||
; background color.
|
|
||||||
tray-background = ${color.BG}
|
|
||||||
|
|
||||||
; Tray offset defined as pixel value (e.g. 35) or percentage (e.g. 50%)
|
|
||||||
tray-offset-x = 10
|
|
||||||
tray-offset-y = 0
|
|
||||||
|
|
||||||
; Pad the sides of each tray icon
|
|
||||||
tray-padding = 0
|
|
||||||
|
|
||||||
; Scale factor for tray clients
|
|
||||||
tray-scale = 1.0
|
|
||||||
|
|
||||||
; Restack the bar window and put it above the
|
; Restack the bar window and put it above the
|
||||||
; selected window manager's root
|
; selected window manager's root
|
||||||
;
|
;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
;; DECOR _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; DECOR _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
CARD="$(light -L | grep 'backlight' | head -n1 | cut -d'/' -f3)"
|
CARD="$(light -L | grep 'backlight' | head -n1 | cut -d'/' -f3)"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
@@ -1053,6 +1053,18 @@ content-padding = 0
|
|||||||
|
|
||||||
click-left = ~/.config/berry/scripts/rofi_powermenu
|
click-left = ~/.config/berry/scripts/rofi_powermenu
|
||||||
|
|
||||||
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
[module/tray]
|
||||||
|
type = internal/tray
|
||||||
|
|
||||||
|
format = <tray>
|
||||||
|
format-background = ${color.BG}
|
||||||
|
tray-background = ${color.BG}
|
||||||
|
tray-foreground = ${color.FG}
|
||||||
|
tray-spacing = 10px
|
||||||
|
tray-size = 50%
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
;; __________ ______
|
;; __________ ______
|
||||||
;; / ____/ __ \/ ____/
|
;; / ____/ __ \/ ____/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Global Properties -----*****/
|
/*****----- Global Properties -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com> */
|
/* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com> */
|
||||||
|
|
||||||
/* Colors */
|
/* Colors */
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com> */
|
/* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com> */
|
||||||
|
|
||||||
/* Text Font */
|
/* Text Font */
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
* Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
**/
|
**/
|
||||||
|
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
;;
|
;;
|
||||||
;; System Variables (Edit according to your system)
|
;; System Variables (Edit according to your system)
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
[system]
|
[system]
|
||||||
sys_adapter = ACAD
|
sys_adapter = ACAD
|
||||||
sys_battery = BAT1
|
sys_battery = BAT1
|
||||||
sys_graphics_card = amdgpu_bl0
|
sys_graphics_card = amdgpu_bl1
|
||||||
sys_network_interface = wlan0
|
sys_network_interface = wlan0
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
## Copyright (C) 2020-2023 Aditya Shakya <adi1090x@gmail.com>
|
## Copyright (C) 2020-2024 Aditya Shakya <adi1090x@gmail.com>
|
||||||
|
|
||||||
Net/ThemeName "Catppuccin-Mocha"
|
Net/ThemeName "Catppuccin-Mocha"
|
||||||
Net/IconThemeName "Luv-Folders-Dark"
|
Net/IconThemeName "Luv-Folders-Dark"
|
||||||
|
|||||||
Reference in New Issue
Block a user