-
Notifications
You must be signed in to change notification settings - Fork 30
/
.aether-corevar
executable file
·53 lines (44 loc) · 1.67 KB
/
.aether-corevar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ******************************* #
# Aether dotfiles global variable #
# Inspirated from owl4ce dotfiles #
# ******************************* #
# ************************************ #
# DON'T EDIT THIS VARIABLE BY YOURSELF #
# ************************************ #
THEME="aetherDark"
WALLPAPER="DEFAULT"
SSFRAME="#21252B"
WALLPAPER_LIGHT="$HOME/.wallpaper/aether-light.png"
WALLPAPER_DARK="$HOME/.wallpaper/aether-dark.png"
WALLPAPER_LIGHT_MIN="$HOME/.wallpaper/aether-light.png"
WALLPAPER_DARK_MIN="$HOME/.wallpaper/aether-dark.png"
THEME_MODE="MINIMALISM"
ICON_LIGHT_DIR=".icons/aether/light"
ICON_DARK_DIR=".icons/aether/dark"
if [[ $THEME == "aetherDark" ]]; then ICONDIR="$HOME/$ICON_DARK_DIR"; elif [[ $THEME == "aetherLight" ]]; then ICONDIR="$HOME/$ICON_LIGHT_DIR"; fi
# ****************** #
# Notifier directory #
# ****************** #
NOTIFIER="$HOME/.scripts/notify/notify-send.sh"
# ************************************************** #
# Customize this to your variable value to your own #
# ************************************************** #
# ************************************************** #
# Network interface #
# if this variable doesn't work, feel free to change #
# ************************************************** #
ETHERNETINT=$(ls /sys/class/net | grep ^e) # this will capture enpX or ethX
WIRELESSINT=$(ls /sys/class/net | grep wl) # this will capture wlpX or wloX
# ****************** #
# Power Menu Command #
# ****************** #
POWEROFF="poweroff"
REBOOT="reboot"
LOCK="dm-tool lock"
SLEEP="suspend"
# ********** #
# WM Margins #
# ********** #
# Order : top right bottom left
COMFY_MARGINS=(5 5 5 40)
MINIMALISM_MARGINS=(30 2 2 2)