fonts & small fixes (& unexpected formatting)
This commit is contained in:
@@ -57,7 +57,7 @@ activate-linux # :/
|
|||||||
polkit-gnome # polkit authentication agent
|
polkit-gnome # polkit authentication agent
|
||||||
|
|
||||||
# fonts & themes
|
# fonts & themes
|
||||||
maplemonol-nf-cn
|
maplemono-nf-cn
|
||||||
ttf-font-awesome
|
ttf-font-awesome
|
||||||
meslo font # I installed it manually
|
meslo font # I installed it manually
|
||||||
spicetify # spotify tweaks
|
spicetify # spotify tweaks
|
||||||
|
|||||||
21
.scripts/smb-mount.sh
Executable file
21
.scripts/smb-mount.sh
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
[ -z $SMB_CREDENTIALS ] && SMB_CREDENTIALS="$HOME/.smbcredentials"
|
||||||
|
[ ! -f $SMB_CREDENTIALS ] && exit 1
|
||||||
|
|
||||||
|
[ -z $SMB_HOST ] && SMB_HOST="10.8.0.1"
|
||||||
|
[ -z $SMB_DIR ] && SMB_DIR="share"
|
||||||
|
[ -z $SMB_MOUNT_POINT ] && SMB_MOUNT_POINT="/mnt/smb"
|
||||||
|
[ -z $SMB_UID ] && SMB_UID=$(id -u)
|
||||||
|
[ -z $SMB_GID ] && SMB_GID=$(id -g)
|
||||||
|
|
||||||
|
[ ! -d "$SMB_MOUNT_POINT" ] && sudo mkdir -p "$SMB_MOUNT_POINT"
|
||||||
|
|
||||||
|
sudo mount -t cifs //$SMB_HOST/$SMB_DIR "$SMB_MOUNT_POINT" -o credentials=$SMB_CREDENTIALS,uid=$SMB_UID,gid=$SMB_GID
|
||||||
|
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
echo "Mounted $SMB_HOST/$SMB_DIR at $SMB_MOUNT_POINT"
|
||||||
|
else
|
||||||
|
echo "Failed to mount $SMB_HOST/$SMB_DIR at $SMB_MOUNT_POINT"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
@@ -43,7 +43,7 @@ Gathered from internet, based on <s>I don't know who</s> (such config files had
|
|||||||
including:
|
including:
|
||||||
|
|
||||||
- MesloLGM Nerd Font (& Mono)
|
- MesloLGM Nerd Font (& Mono)
|
||||||
- Maple Mono Normal CN
|
- Maple Mono NF CN
|
||||||
- Font Awesome 6 Free
|
- Font Awesome 6 Free
|
||||||
- Noto Sans
|
- Noto Sans
|
||||||
- ...
|
- ...
|
||||||
|
|||||||
@@ -54,19 +54,19 @@ draw_bold_text_with_bright_colors = true
|
|||||||
size = 12
|
size = 12
|
||||||
|
|
||||||
[font.normal]
|
[font.normal]
|
||||||
family = "Meslo LGM Nerd Font"
|
family = "Maple Mono NF CN"
|
||||||
style = "Regular"
|
style = "Regular"
|
||||||
|
|
||||||
[font.bold]
|
[font.bold]
|
||||||
family = "Meslo LGM Nerd Font"
|
family = "Maple Mono NF CN"
|
||||||
style = "Bold"
|
style = "Bold"
|
||||||
|
|
||||||
[font.italic]
|
[font.italic]
|
||||||
family = "Meslo LGM Nerd Font"
|
family = "Maple Mono NF CN"
|
||||||
style = "Italic"
|
style = "Italic"
|
||||||
|
|
||||||
[font.bold_italic]
|
[font.bold_italic]
|
||||||
family = "Meslo LGM Nerd Font"
|
family = "Maple Mono NF CN"
|
||||||
style = "Bold Italic"
|
style = "Bold Italic"
|
||||||
|
|
||||||
[selection]
|
[selection]
|
||||||
|
|||||||
@@ -33,13 +33,13 @@
|
|||||||
.lyrics-text {
|
.lyrics-text {
|
||||||
color: $fg;
|
color: $fg;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-family: 'Maple Mono Normal NF CN', 'Maple Mono CN', monospace;
|
font-family: 'Maple Mono NF CN', 'Maple Mono CN', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lyrics-text-single {
|
.lyrics-text-single {
|
||||||
color: $fg;
|
color: $fg;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-family: 'Maple Mono Normal NF CN', 'Maple Mono CN', monospace;
|
font-family: 'Maple Mono NF CN', 'Maple Mono CN', monospace;
|
||||||
min-height: 29px;
|
min-height: 29px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,13 +162,13 @@
|
|||||||
.offset-label {
|
.offset-label {
|
||||||
color: $fg-alt;
|
color: $fg-alt;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-family: 'Maple Mono Normal NF CN', 'Maple Mono CN', monospace;
|
font-family: 'Maple Mono NF CN', 'Maple Mono CN', monospace;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.offset-value {
|
.offset-value {
|
||||||
color: $fg;
|
color: $fg;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
font-family: 'Maple Mono Normal NF CN', 'Maple Mono CN', monospace;
|
font-family: 'Maple Mono NF CN', 'Maple Mono CN', monospace;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ command = exec fish
|
|||||||
|
|
||||||
confirm-close-surface = false
|
confirm-close-surface = false
|
||||||
|
|
||||||
font-family = Maple Mono Normal NF CN
|
font-family = Maple Mono NF CN
|
||||||
font-size = 12
|
font-size = 12
|
||||||
|
|
||||||
cursor-style = bar
|
cursor-style = bar
|
||||||
|
|||||||
@@ -33,3 +33,6 @@ exec-once = hyprctl plugin load "/usr/lib/libhyprexpo.so"
|
|||||||
|
|
||||||
# dock
|
# dock
|
||||||
# exec-once = nwg-dock-hyprland -d -i 32 -c "fuzzel" -ico "$HOME/.config/nwg-dock-hyprland/archlinux.png"
|
# exec-once = nwg-dock-hyprland -d -i 32 -c "fuzzel" -ico "$HOME/.config/nwg-dock-hyprland/archlinux.png"
|
||||||
|
|
||||||
|
# Logitech Mouse
|
||||||
|
exec-once = solaar -w hide
|
||||||
|
|||||||
@@ -4,12 +4,16 @@
|
|||||||
# $entry_color = rgba(B8CACBFF)
|
# $entry_color = rgba(B8CACBFF)
|
||||||
$text_color = rgba(FFFFFFFF)
|
$text_color = rgba(FFFFFFFF)
|
||||||
$entry_background_color = rgba(33333360)
|
$entry_background_color = rgba(33333360)
|
||||||
$entry_border_color = rgba(3B3B3B100)
|
$entry_border_color = rgba(3B3B3B64)
|
||||||
$entry_color = rgba(FFFFFFFF)
|
$entry_color = rgba(FFFFFFFF)
|
||||||
$font_family = Rubik Light
|
$font_family = Rubik Light
|
||||||
$font_family_clock = Rubik Light
|
$font_family_clock = Rubik Light
|
||||||
$font_material_symbols = Material Symbols Rounded
|
$font_material_symbols = Material Symbols Rounded
|
||||||
|
|
||||||
|
# workaround: https://github.com/hyprwm/hyprlock/issues/825
|
||||||
|
animation = fade, 0
|
||||||
|
# another wierd bug that only happens in hybrid mode :/
|
||||||
|
|
||||||
background {
|
background {
|
||||||
# color = rgba(041011FF)
|
# color = rgba(041011FF)
|
||||||
# color = rgba(000000FF)
|
# color = rgba(000000FF)
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ window_padding_width 10
|
|||||||
background_opacity 0.75
|
background_opacity 0.75
|
||||||
background_blur 16
|
background_blur 16
|
||||||
|
|
||||||
font_family Maple Mono Normal NF CN
|
font_family Maple Mono NF CN
|
||||||
font_size 12
|
font_size 12
|
||||||
|
|
||||||
tab_bat_style powerline
|
tab_bat_style powerline
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*****----- ALL -----*****/
|
/*****----- ALL -----*****/
|
||||||
* {
|
* {
|
||||||
font: "Maple Mono Normal NF CN Semibold 10";
|
font: "Maple Mono NF CN Semibold 10";
|
||||||
base: #1e1e2e;
|
base: #1e1e2e;
|
||||||
mantle: #181825;
|
mantle: #181825;
|
||||||
text: #cdd6f4;
|
text: #cdd6f4;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
@import 'mocha.css';
|
@import 'mocha.css';
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: 'Font Awesome 6 Free', 'Maple Mono Normal NF CN ExtraLight', 'Noto Sans', Arial, sans-serif;
|
font-family: 'Font Awesome 6 Free', 'Maple Mono NF CN ExtraLight', 'Noto Sans', Arial, sans-serif;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user