Skip to content

Commit e8df17f

Browse files
committed
hesoyam
1 parent 1838e3d commit e8df17f

File tree

4 files changed

+31
-10
lines changed

4 files changed

+31
-10
lines changed

Configs/.local/share/hyde/config.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ skip_template = [""] # Templates to skip when using wallbash.
112112
font = "JetBrainsMono Nerd Font" # Font for waybar.
113113
scale = 10 # Total scaling for waybar.
114114
icon_size = 10 # Icon size for waybar.
115+
position = "top" # A fallback position of the waybar.
115116

116117
# Weather configuration.
117118
[weather]

Configs/.local/share/hyde/hyprland.conf

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $IDLE= $default.IDLE
4444
$start.XDG_PORTAL_RESET=$scrPath/resetxdgportal.sh
4545
$start.DBUS_SHARE_PICKER=dbus-update-activation-environment --systemd --all # for XDPH
4646
$start.SYSTEMD_SHARE_PICKER=systemctl --user import-environment QT_QPA_PLATFORMTHEME WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
47-
$start.BAR=$scrPath/waybar.py --watch
47+
$start.BAR=$scrPath/waybar.py --watch --update
4848
$start.NOTIFICATIONS=dunst
4949
$start.APPTRAY_BLUETOOTH=blueman-applet
5050
$start.WALLPAPER=$scrPath/wallpaper.sh --global
@@ -261,10 +261,17 @@ source = $env.XDG_CONFIG_HOME/hypr/themes/colors.conf # Hyde wallbash colors
261261

262262
# Source groupbar in here
263263
group:groupbar {
264-
col.inactive = rgba($wallbash_pry3ee)
265-
col.active = rgba($wallbash_pry1ee)
264+
enabled = true
265+
gradients = 1
266+
render_titles = 1
267+
font_weight_inactive = normal
268+
font_weight_active = semibold
269+
col.active = rgba($wallbash_pry3ee)
270+
col.inactive = rgba($wallbash_pry1ee)
266271
col.locked_active = rgba($wallbash_pry2ee)
267272
col.locked_inactive = rgba($wallbash_pry4ee)
273+
text_color = rgba($wallbash_txt3ee)
274+
text_color_inactive = rgba($wallbash_txt1ee)
268275
}
269276

270277
source = $env.XDG_CONFIG_HOME/hypr/themes/theme.conf # theme specific settings
@@ -293,18 +300,14 @@ $browser = $BROWSER
293300

294301
# Group Bar
295302
group:groupbar{
296-
enabled = true
297-
gradients = 1
298-
render_titles = 1
299-
font_size = 12
300-
font_family = $FONT
303+
font_size = $FONT_SIZE
304+
font_family = $GROUPBAR_FONT
301305
}
302306

303307
# Misc
304308

305309
misc {
306310
font_family = $FONT
307-
308311
}
309312

310313

Configs/.local/share/hyde/schema/config.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,12 @@ type = "object"
374374
description = "Icon size for waybar."
375375
type = "integer"
376376

377+
[properties.waybar.properties.position]
378+
default = "top"
379+
description = "A fallback position of the waybar. "
380+
options = [ "top", "bottom" , "left", "right" ]
381+
type = "string"
382+
377383
[properties.weather]
378384
description = "Weather configuration."
379385
type = "object"
@@ -515,7 +521,7 @@ type = "object"
515521
type = "array"
516522

517523
[properties."hypr.config".properties.sanitize.items]
518-
type = "string"
524+
type = "string"
519525

520526
[properties.volume]
521527
description = "volumecontrol.sh configuration."

Configs/.local/share/hyde/schema/config.toml.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,17 @@
417417
"default": 10,
418418
"description": "Icon size for waybar.",
419419
"type": "integer"
420+
},
421+
"position": {
422+
"default": "top",
423+
"description": "A fallback position of the waybar. ",
424+
"options": [
425+
"top",
426+
"bottom",
427+
"left",
428+
"right"
429+
],
430+
"type": "string"
420431
}
421432
}
422433
},

0 commit comments

Comments
 (0)