Browse Source

Merge pull request #13 from Krautt/main

[FEATURE] peristent workspaces Other Hyprland workspaces style... choose as required
pull/14/head
Ja.KooLit 2 years ago committed by GitHub
parent
commit
371d9c65e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 94
      config/waybar/modules

94
config/waybar/modules

@ -1,4 +1,98 @@
{ {
// HYPRLAND WORKSPACES. CHOOSE as required
// CIRCLES Style
"hyprland/workspaces": {
"all-outputs": true,
"format": "{icon}",
"on-click": "activate",
"on-scroll-up": "hyprctl dispatch workspace e+1",
"on-scroll-down": "hyprctl dispatch workspace e-1",
"persistent_workspaces": {
"1": [],
"2": [],
"3": [],
"4": [],
"5": []
},
"format-icons": {
"active": "",
"default": "",
},
"active-only": false,
"all-outputs": true
},
// ROMAN Numerals style
"hyprland/workspaces#2": {
"active-only":false,
"all-outputs": true,
"format": "{icon}",
"on-click": "activate",
"persistent_workspaces":{
"1": [],
"2": [],
"3": [],
"4": [],
"5": []
},
"format-icons": {
"1": "I",
"2": "II",
"3": "III",
"4": "IV",
"5": "V"
}
},
// PACMAN Style
"hyprland/workspaces#3": {
"active-only":false,
"all-outputs": true,
"format": "{icon}",
"on-click": "activate",
"persistent_workspaces":{
"1": [],
"2": [],
"3": [],
"4": [],
"5": []
},
"format": "{icon}",
"format-icons": {
"active": " 󰮯 ",
"default": " ",
"persistent":"󰑊"
}
},
// NUMBERS and ICONS style
"hyprland/workspaces#4": {
"format": "{name}",
//"format": " {name}:{icon} ",
//"format": " {icon} ",
"show-special": false,
"on-click": "activate",
"all-outputs": true,
"sort-by-number": true,
"format-icons": {
"1": " ",
"2": " ",
"3": " ",
"4": " ",
"5": " ",
"6": " ",
"7": "",
"8": " ",
"9": "",
"10": "10",
"focused": "",
"default": "",
},
"on-scroll-up": "hyprctl dispatch workspace e+1",
"on-scroll-down": "hyprctl dispatch workspace e-1",
},
"backlight": { "backlight": {
"interval": 2, "interval": 2,
"align": 0, "align": 0,

Loading…
Cancel
Save