up su Gitea
This commit is contained in:
@@ -0,0 +1,321 @@
|
||||
//* ---- 💫 https://github.com/JaKooLit 💫 ---- *//
|
||||
/* Waybar Workspaces modules */
|
||||
|
||||
/* Generally, this is a potential expanding of choices for hyprland/workspace */
|
||||
// HYPRLAND WORKSPACES. CHOOSE as desired and place on waybar configs
|
||||
|
||||
{
|
||||
// CIRCLES Style
|
||||
"hyprland/workspaces": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 1
|
||||
},
|
||||
"format-icons": {
|
||||
"active": "",
|
||||
"default": "",
|
||||
},
|
||||
},
|
||||
// ROMAN Numerals style
|
||||
"hyprland/workspaces#roman": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "I",
|
||||
"2": "II",
|
||||
"3": "III",
|
||||
"4": "IV",
|
||||
"5": "V",
|
||||
"6": "VI",
|
||||
"7": "VII",
|
||||
"8": "VIII",
|
||||
"9": "IX",
|
||||
"10": "X",
|
||||
},
|
||||
},
|
||||
// PACMAN Style
|
||||
"hyprland/workspaces#pacman": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"show-special": false,
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"active": "<span font='12'></span>",
|
||||
"empty": "<span font='8'></span>",
|
||||
"default": "",
|
||||
},
|
||||
},
|
||||
// Kanji / Japanese style
|
||||
"hyprland/workspaces#kanji": {
|
||||
"disable-scroll": true,
|
||||
"show-special": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "一",
|
||||
"2": "二",
|
||||
"3": "三",
|
||||
"4": "四",
|
||||
"5": "五",
|
||||
"6": "六",
|
||||
"7": "七",
|
||||
"8": "八",
|
||||
"9": "九",
|
||||
"10": "十",
|
||||
}
|
||||
},
|
||||
// for Camilla or Spanish
|
||||
"hyprland/workspaces#cam": {
|
||||
"active-only":false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "Uno",
|
||||
"2": "Due",
|
||||
"3": "Tre",
|
||||
"4": "Quattro",
|
||||
"5": "Cinque",
|
||||
"6":"Sei",
|
||||
"7":"Sette",
|
||||
"8":"Otto",
|
||||
"9":"Nove",
|
||||
"10":"Dieci"
|
||||
}
|
||||
},
|
||||
|
||||
// NUMBERS and ICONS style
|
||||
"hyprland/workspaces#4": {
|
||||
"format": "{name}",
|
||||
"format": " {name} {icon} ",
|
||||
//"format": " {icon} ",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"all-outputs": true,
|
||||
"sort-by-number": true,
|
||||
"format-icons": {
|
||||
"1": " ",
|
||||
"2": " ",
|
||||
"3": " ",
|
||||
"4": " ",
|
||||
"5": " ",
|
||||
"6": " ",
|
||||
"7": "",
|
||||
"8": " ",
|
||||
"9": "",
|
||||
"10": "10",
|
||||
"focused": "",
|
||||
"default": "",
|
||||
},
|
||||
},
|
||||
// numbers styles
|
||||
"hyprland/workspaces#numbers": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "1",
|
||||
"2": "2",
|
||||
"3": "3",
|
||||
"4": "4",
|
||||
"5": "5",
|
||||
"6": "6",
|
||||
"7": "7",
|
||||
"8": "8",
|
||||
"9": "9",
|
||||
"10": "10",
|
||||
},
|
||||
},
|
||||
// ALPHABET Style
|
||||
"hyprland/workspaces#alpha": {
|
||||
"active-only": false,
|
||||
"all-outputs": true,
|
||||
"format": "{icon}",
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 5
|
||||
},
|
||||
"format-icons": {
|
||||
"1": "A",
|
||||
"2": "B",
|
||||
"3": "C",
|
||||
"4": "D",
|
||||
"5": "E",
|
||||
"6": "F",
|
||||
"7": "G",
|
||||
"8": "H",
|
||||
"9": "I",
|
||||
"10": "J",
|
||||
},
|
||||
},
|
||||
// NUMBERS and ICONS style with window rewrite
|
||||
"hyprland/workspaces#rw": {
|
||||
"disable-scroll": true,
|
||||
"all-outputs": false,
|
||||
"warp-on-scroll": false,
|
||||
"sort-by-number": true,
|
||||
"show-special": false,
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1",
|
||||
"persistent-workspaces": {
|
||||
"*": 1
|
||||
},
|
||||
// "format": "{icon} {windows}",
|
||||
"format": "{windows}",
|
||||
|
||||
|
||||
"format-window-separator": "|",
|
||||
"window-rewrite-default": "",
|
||||
"window-rewrite": {
|
||||
"title<.*amazon.*>": "",
|
||||
"title<.*reddit.*>": "",
|
||||
"title<.*idagio.*>": "𝄢",
|
||||
"class<firefox|org.mozilla.firefox|librewolf|floorp|mercury-browser|[Cc]achy-browser>": " ",
|
||||
//"class<zen-twilight>": "",
|
||||
//"class<zen-twilight>": "bank",
|
||||
"class<zen-twilight>": "",
|
||||
"class<emacs>": "",
|
||||
"class<waterfox|waterfox-bin>": " ",
|
||||
"class<microsoft-edge>": "",
|
||||
"class<Chromium|Thorium|[Cc]hrome>": "",
|
||||
"class<brave-browser>": "🦁",
|
||||
"class<tor browser>": "",
|
||||
"class<firefox-developer-edition>": "🦊",
|
||||
"class<onlyoffice>": "",
|
||||
"class<kitty>": "",
|
||||
"class<kitty-dropterm>": "",
|
||||
"class<kitty-dropterm>": "",
|
||||
"class<com.mitchellh.ghostty>": "",
|
||||
"class<org.wezfurlong.wezterm>": "",
|
||||
"class<tabby>": "",
|
||||
"title<timeshift.*>": "",
|
||||
"class<org.gnome.nautilus>": "",
|
||||
"class<[Tt]hunderbird|[Tt]hunderbird-esr>": "",
|
||||
"class<eu.betterbird.Betterbird>": "",
|
||||
"title<.*gmail.*>": "",
|
||||
"class<org.gnome.texteditor>": "",
|
||||
"class<[Tt]elegram-desktop|org.telegram.desktop|io.github.tdesktop_x64.TDesktop>": "",
|
||||
"class<discord|[Ww]ebcord|Vesktop>": "",
|
||||
"title<.*whatsapp.*>": "",
|
||||
"title<.*zapzap.*>": "",
|
||||
"title<.*messenger.*>": "",
|
||||
"title<.*facebook.*>": "",
|
||||
"title<.*reddit.*>": "",
|
||||
"class<affine>": "",
|
||||
"class<org.kde.okular>": "",
|
||||
"class<com.borgbase.Vorta>": "",
|
||||
"title<.*ChatGPT.*>": "",
|
||||
"title<.*deepseek.*>": "",
|
||||
"title<.*qwen.*>": "",
|
||||
"class<subl>": "",
|
||||
"class<slack>": "",
|
||||
"class<obsidian>": "🪨",
|
||||
"class<mpv>": "",
|
||||
"class<celluloid|Zoom>": "",
|
||||
"class<Cider>": "",
|
||||
"title<.*Picture-in-Picture.*>": "",
|
||||
"title<.*youtube.*>": "",
|
||||
"class<vlc>": "",
|
||||
"title<.*cmus.*>": "",
|
||||
"class<[Ss]potify>": "",
|
||||
"title<.*.pdf>": "",
|
||||
"class<org.gnome.evince>": "",
|
||||
"class<virt-manager>": "",
|
||||
"class<.virt-manager-wrapped>": "",
|
||||
"class<virtualbox manager>": "💽",
|
||||
"title<virtualbox>": "💽",
|
||||
"class<remmina>": "🖥️",
|
||||
"class<Minecraft.*>": "",
|
||||
"class<VSCode|code-url-handler|code-oss|codium|codium-url-handler|VSCodium>": "",
|
||||
"class<dev.zed.Zed>": "",
|
||||
"class<codeblocks>": "",
|
||||
"title<.*github.*>": "",
|
||||
"class<mousepad>": "",
|
||||
"class<libreoffice-writer>": "",
|
||||
"class<libreoffice-startcenter>": "",
|
||||
"class<libreoffice-calc>": "",
|
||||
"title<nvim.*>": "",
|
||||
"title<vim.*>": "",
|
||||
//"title<.*vim ~ .*>": "",
|
||||
//"title<.*nvim.*>": "",
|
||||
"title<.*figma.*>": "",
|
||||
"title<.*jira.*>": "",
|
||||
"class<jetbrains-idea>": "",
|
||||
|
||||
"class<obs|com.obsproject.Studio>": "",
|
||||
|
||||
"class<polkit-gnome-authentication-agent-1>": "",
|
||||
"class<nwg-look>": "",
|
||||
"class<[Pp]avucontrol|org.pulseaudio.pavucontrol>": "",
|
||||
"class<steam>": "",
|
||||
"class<thunar|nemo>": "",
|
||||
"class<Gparted>":"",
|
||||
"class<gimp>": "",
|
||||
"class<emulator>": "📱",
|
||||
"class<android-studio>": "",
|
||||
"class<org.pipewire.Helvum>": "",
|
||||
"class<localsend>":"",
|
||||
"class<PrusaSlicer|UltiMaker-Cura|OrcaSlicer>": "",
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
"niri/workspaces": {
|
||||
"format": "{index}",
|
||||
|
||||
},
|
||||
|
||||
"wlr/taskbar": {
|
||||
"format": "{icon}",
|
||||
"icon-size": {},
|
||||
"icon-theme": "${i_theme}",
|
||||
"spacing": 0,
|
||||
"tooltip-format": "{icon}",
|
||||
"on-click": "activate",
|
||||
"on-click-middle": "close",
|
||||
"on-click-right": "fullscreen"
|
||||
},
|
||||
Reference in New Issue
Block a user