feat!: migration to waybar
This commit is contained in:
@@ -11,11 +11,6 @@ For my neovim config, see [here](https://git.janishutz.com/janishutz/nvim)
|
|||||||
|
|
||||||
The whole desktop will likely eventually move back to Waybar (because it has evolved massively since I last used it and now supports custom menus)
|
The whole desktop will likely eventually move back to Waybar (because it has evolved massively since I last used it and now supports custom menus)
|
||||||
|
|
||||||
DankMaterialShell is a stop-gap solution, which, albeit it looking nice,
|
|
||||||
doesn't go well with my ethos of using non-slop programs.
|
|
||||||
Luckily, I can keep most of my configs when moving to something else, because I will be using Matugen.
|
|
||||||
The plan is to use some of the config templates from DMS (or some other source) for matugen for my own desktop with some changes
|
|
||||||
|
|
||||||
Furthermore, my system may migrate to NixOS by early September 2026, to finally have my laptop and desktop configs synced properly
|
Furthermore, my system may migrate to NixOS by early September 2026, to finally have my laptop and desktop configs synced properly
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -51,8 +51,9 @@ require("hyprland.windowrules.idle")
|
|||||||
require("hyprland.windowrules.tags")
|
require("hyprland.windowrules.tags")
|
||||||
require("hyprland.windowrules.workspaces")
|
require("hyprland.windowrules.workspaces")
|
||||||
|
|
||||||
-- Workspace rules
|
-- Workspace & Layer rules
|
||||||
require("hyprland.workspacerules.main")(laptop_config, is_docked)
|
require("hyprland.workspacerules.main")(laptop_config, is_docked)
|
||||||
|
require("hyprland.layerrules")
|
||||||
|
|
||||||
-- Monitors
|
-- Monitors
|
||||||
require("hyprland.monitors")(laptop_config, is_docked)
|
require("hyprland.monitors")(laptop_config, is_docked)
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ hl.define_submap("device", function()
|
|||||||
|
|
||||||
-- clipboard history
|
-- clipboard history
|
||||||
hl.bind("h", function()
|
hl.bind("h", function()
|
||||||
hl.dispatch(hl.dsp.exec_cmd("dms ipc call clipboard toggle"))
|
hl.dispatch(hl.dsp.exec_cmd("cliphist list | rofi -dmenu -display-columns 2 | cliphist decode | wl-copy"))
|
||||||
exit_submap()
|
exit_submap()
|
||||||
end, { description = "Toggle clipboard history panel" })
|
end, { description = "Toggle clipboard history panel" })
|
||||||
|
|
||||||
|
|||||||
@@ -8,5 +8,9 @@ hl.bind("SUPER + A", hl.dsp.submap("workspace"), { description = "Workspace cont
|
|||||||
hl.bind("SUPER + P", hl.dsp.submap("groupedlaunch"), { description = "Launch groups of programs" })
|
hl.bind("SUPER + P", hl.dsp.submap("groupedlaunch"), { description = "Launch groups of programs" })
|
||||||
hl.bind("SUPER + Q", hl.dsp.window.close(), { description = "Close active window" })
|
hl.bind("SUPER + Q", hl.dsp.window.close(), { description = "Close active window" })
|
||||||
|
|
||||||
hl.bind("SUPER + Space", hl.dsp.exec_cmd("hyprlauncher"), { description = "Toggle app launcher" })
|
hl.bind(
|
||||||
|
"SUPER + Space",
|
||||||
|
hl.dsp.exec_cmd('killall rofi || rofi -show combi -modes combi -combi-modes "window,drun,run"'),
|
||||||
|
{ description = "Toggle app launcher" }
|
||||||
|
)
|
||||||
hl.bind("SUPER + Escape", hl.dsp.exec_cmd("wlogout"), { description = "Toggle logout screen" })
|
hl.bind("SUPER + Escape", hl.dsp.exec_cmd("wlogout"), { description = "Toggle logout screen" })
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ return function(is_laptop)
|
|||||||
hl.exec_cmd("waybar")
|
hl.exec_cmd("waybar")
|
||||||
hl.exec_cmd("hyprpaper")
|
hl.exec_cmd("hyprpaper")
|
||||||
hl.exec_cmd("swaync")
|
hl.exec_cmd("swaync")
|
||||||
hl.exec_cmd("hyprlauncher -d")
|
|
||||||
hl.exec_cmd("nextcloud --background")
|
hl.exec_cmd("nextcloud --background")
|
||||||
hl.exec_cmd("wl-paste --watch cliphist store")
|
hl.exec_cmd("wl-paste --watch cliphist store")
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
hl.layer_rule({
|
||||||
|
dim_around = true,
|
||||||
|
match = { namespace = "rofi" },
|
||||||
|
})
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
ui {
|
ui {
|
||||||
window_size = 800 400
|
window_size = 400 800
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,7 @@
|
|||||||
# │ Kitty Config │
|
# │ Kitty Config │
|
||||||
# ╰────────────────────────────────────────────────╯
|
# ╰────────────────────────────────────────────────╯
|
||||||
# ────────────────────────────────────────────────────────────────────
|
# ────────────────────────────────────────────────────────────────────
|
||||||
include dank-tabs.conf
|
include colors.conf
|
||||||
include dank-theme.conf
|
|
||||||
|
|
||||||
|
|
||||||
# ┌ ┐
|
# ┌ ┐
|
||||||
|
|||||||
@@ -12,29 +12,52 @@ input_path = '~/.config/matugen/templates/gtk/colors.css'
|
|||||||
output_path = '~/.config/gtk-4.0/colors.css'
|
output_path = '~/.config/gtk-4.0/colors.css'
|
||||||
post_hook = '~/.config/matugen/post-hook-scripts/gtk-themes-reload.sh'
|
post_hook = '~/.config/matugen/post-hook-scripts/gtk-themes-reload.sh'
|
||||||
|
|
||||||
[templates.swaync]
|
[templates.swaync-colors]
|
||||||
input_path = '~/.config/matugen/templates/swaync/colors.css'
|
input_path = '~/.config/matugen/templates/colors.css'
|
||||||
output_path = "~/.config/swaync/colors.css"
|
output_path = "~/.config/swaync/colors.css"
|
||||||
post_hook = "swaync-client -rs"
|
post_hook = "swaync-client -rs"
|
||||||
|
|
||||||
|
[templates.waybar-colors]
|
||||||
|
input_path = '~/.config/matugen/templates/colors.css'
|
||||||
|
output_path = "~/.config/waybar/colors.css"
|
||||||
|
post_hook = "swaync-client -rs"
|
||||||
|
|
||||||
[templates.color-scheme]
|
[templates.color-scheme]
|
||||||
input_path = '~/.config/matugen/templates/qt/colors.colors'
|
input_path = '~/.config/matugen/templates/qt/colors.colors'
|
||||||
output_path = '~/.local/share/color-schemes/Matugen.colors'
|
output_path = '~/.local/share/color-schemes/Matugen.colors'
|
||||||
|
|
||||||
|
[templates.kitty]
|
||||||
|
input_path = '~/.config/matugen/templates/kitty/colors.conf'
|
||||||
|
output_path = '~/.config/kitty/colors.conf'
|
||||||
|
|
||||||
|
|
||||||
# My own
|
# My own
|
||||||
[templates.hyprland]
|
[templates.hyprland]
|
||||||
input_path = '~/.config/matugen/templates/hyprland/colors.lua'
|
input_path = '~/.config/matugen/templates/hyprland/colors.lua'
|
||||||
output_path = '~/.config/hypr/hyprland/colors.lua'
|
output_path = '~/.config/hypr/hyprland/colors.lua'
|
||||||
|
|
||||||
|
[templates.waybar]
|
||||||
|
input_path = '~/.config/matugen/templates/waybar/style.css'
|
||||||
|
output_path = '~/.config/waybar/style.css'
|
||||||
|
post_hook = 'pkill -SIGUSR2 waybar'
|
||||||
|
|
||||||
[templates.hyprlock]
|
[templates.hyprlock]
|
||||||
input_path = '~/.config/matugen/templates/hyprland/hyprlock-colors.conf'
|
input_path = '~/.config/matugen/templates/hyprland/hyprlock-colors.conf'
|
||||||
output_path = '~/.config/hypr/hyprlock-colors.conf'
|
output_path = '~/.config/hypr/hyprlock-colors.conf'
|
||||||
|
|
||||||
|
[templates.hyprpaper]
|
||||||
|
input_path = '~/.config/matugen/templates/hyprland/hyprpaper.conf'
|
||||||
|
output_path = '~/.config/hypr/hyprpaper.conf'
|
||||||
|
post_hook = 'pkill -SIGUSR2 hyprpaper'
|
||||||
|
|
||||||
[templates.wlogout]
|
[templates.wlogout]
|
||||||
input_path = '~/.config/matugen/templates/wlogout/style.css'
|
input_path = '~/.config/matugen/templates/wlogout/style.css'
|
||||||
output_path = '~/.config/wlogout/style.css'
|
output_path = '~/.config/wlogout/style.css'
|
||||||
|
|
||||||
|
[templates.rofi]
|
||||||
|
input_path = '~/.config/matugen/templates/rofi/style.rasi'
|
||||||
|
output_path = '~/.config/rofi/style.rasi'
|
||||||
|
|
||||||
[templates.yazi]
|
[templates.yazi]
|
||||||
input_path = '~/.config/matugen/templates/yazi/theme.toml'
|
input_path = '~/.config/matugen/templates/yazi/theme.toml'
|
||||||
output_path = '~/.config/yazi/theme.toml'
|
output_path = '~/.config/yazi/theme.toml'
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
background = rgba({{colors.background.default.hex_stripped}}FF)
|
background = rgba({{colors.background.default.hex_stripped}}FF)
|
||||||
base = rgba({{colors.surface.default.hex_stripped}}FF)
|
base = rgba({{colors.surface.default.hex_stripped}}FF)
|
||||||
|
alternate_base = rgba({{colors.surface.default.hex_stripped | lighten: -5.0}}FF)
|
||||||
text = rgba({{colors.on_background.default.hex_stripped}}FF)
|
text = rgba({{colors.on_background.default.hex_stripped}}FF)
|
||||||
accent = rgba({{colors.primary.default.hex_stripped}}FF)
|
accent = rgba({{colors.primary.default.hex_stripped}}FF)
|
||||||
accent_secondary = rgba({{colors.secondary.default.hex_stripped}}FF)
|
accent_secondary = rgba({{colors.secondary.default.hex_stripped}}FF)
|
||||||
|
|||||||
@@ -0,0 +1,71 @@
|
|||||||
|
# --- Main Colors ---
|
||||||
|
background {{ colors.surface.default.hex | lighten: -2.5 }}
|
||||||
|
foreground {{ colors.on_surface.default.hex }}
|
||||||
|
cursor {{ colors.on_surface.default.hex }}
|
||||||
|
cursor_text_color {{ colors.surface.default.hex }}
|
||||||
|
|
||||||
|
selection_background {{ colors.secondary_container.default.hex }}
|
||||||
|
selection_foreground {{ colors.on_secondary_container.default.hex }}
|
||||||
|
|
||||||
|
url_color {{ colors.tertiary.default.hex }}
|
||||||
|
|
||||||
|
# --- ANSI Colors ---
|
||||||
|
color0 {{ colors.surface.default.hex }}
|
||||||
|
color1 {{ colors.error.default.hex }}
|
||||||
|
color2 {{ colors.tertiary.default.hex }}
|
||||||
|
color3 {{ colors.secondary.default.hex }}
|
||||||
|
color4 {{ colors.primary.default.hex }}
|
||||||
|
color5 {{ colors.tertiary_fixed_dim.default.hex }}
|
||||||
|
color6 {{ colors.secondary_fixed_dim.default.hex }}
|
||||||
|
color7 {{ colors.on_surface.default.hex }}
|
||||||
|
|
||||||
|
color8 {{ colors.surface_variant.default.hex }}
|
||||||
|
color9 {{ colors.error_container.default.hex }}
|
||||||
|
color10 {{ colors.tertiary_container.default.hex }}
|
||||||
|
color11 {{ colors.secondary_container.default.hex }}
|
||||||
|
color12 {{ colors.primary_container.default.hex }}
|
||||||
|
color13 {{ colors.on_secondary_fixed_variant.default.hex }}
|
||||||
|
color14 {{ colors.on_tertiary_fixed_variant.default.hex }}
|
||||||
|
color15 {{ colors.on_surface_variant.default.hex }}
|
||||||
|
|
||||||
|
# --- Starship Prompt Bubbles ---
|
||||||
|
color255 {{ colors.primary_container.default.hex }}
|
||||||
|
color254 {{ colors.primary.default.hex }}
|
||||||
|
color253 {{ colors.secondary_container.default.hex }}
|
||||||
|
color252 {{ colors.secondary.default.hex }}
|
||||||
|
color251 {{ colors.tertiary_container.default.hex }}
|
||||||
|
color250 {{ colors.tertiary.default.hex }}
|
||||||
|
color249 {{ colors.error_container.default.hex }}
|
||||||
|
color248 {{ colors.error.default.hex }}
|
||||||
|
|
||||||
|
color232 {{ colors.on_primary_container.default.hex }}
|
||||||
|
color233 {{ colors.on_primary.default.hex }}
|
||||||
|
color234 {{ colors.on_secondary_container.default.hex }}
|
||||||
|
color235 {{ colors.on_secondary.default.hex }}
|
||||||
|
color236 {{ colors.on_tertiary_container.default.hex }}
|
||||||
|
color237 {{ colors.on_tertiary.default.hex }}
|
||||||
|
color238 {{ colors.on_error_container.default.hex }}
|
||||||
|
color239 {{ colors.on_error.default.hex }}
|
||||||
|
color240 {{ colors.on_primary_container.default.hex }}
|
||||||
|
|
||||||
|
# Matched with unthemed light/dark
|
||||||
|
color243 {{ colors.primary.default.hex }}
|
||||||
|
color244 {{ colors.error.default.hex }}
|
||||||
|
color245 {{ colors.outline_variant.default.hex }}
|
||||||
|
|
||||||
|
# --- UI Elements ---
|
||||||
|
active_tab_foreground {{ colors.on_primary.default.hex }}
|
||||||
|
active_tab_background {{ colors.primary.default.hex }}
|
||||||
|
inactive_tab_foreground {{ colors.on_primary_container.default.hex }}
|
||||||
|
inactive_tab_background {{ colors.primary_container.default.hex }}
|
||||||
|
|
||||||
|
active_border_color {{ colors.primary.default.hex }}
|
||||||
|
inactive_border_color {{ colors.outline.default.hex }}
|
||||||
|
|
||||||
|
# --- Marks ---
|
||||||
|
mark1_foreground {{ colors.on_primary_fixed.default.hex }}
|
||||||
|
mark1_background {{ colors.primary_fixed.default.hex }}
|
||||||
|
mark2_foreground {{ colors.on_secondary_fixed.default.hex }}
|
||||||
|
mark2_background {{ colors.secondary_fixed.default.hex }}
|
||||||
|
mark3_foreground {{ colors.on_tertiary_fixed.default.hex }}
|
||||||
|
mark3_background {{ colors.tertiary_fixed.default.hex }}
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
* {
|
||||||
|
background: {{colors.background.default.hex}};
|
||||||
|
background-selected: {{colors.primary.default.hex}};
|
||||||
|
foreground: {{colors.on_background.default.hex}};
|
||||||
|
foreground-selected: {{colors.on_primary.default.hex}};
|
||||||
|
accent: {{colors.secondary.default.hex}};
|
||||||
|
inactive: {{colors.outline.default.hex}};
|
||||||
|
spacing: 2;
|
||||||
|
width: 30em;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
background-color: @background;
|
||||||
|
border-color: @accent;
|
||||||
|
border: 1px;
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 0;
|
||||||
|
location: center;
|
||||||
|
anchor: center;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainbox {
|
||||||
|
background-color: @background;
|
||||||
|
spacing: 10px;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inputbar {
|
||||||
|
children: [prompt,entry];
|
||||||
|
background-color: @background;
|
||||||
|
}
|
||||||
|
|
||||||
|
#listview {
|
||||||
|
background-color: @background;
|
||||||
|
fixed-height: true;
|
||||||
|
margin: 5px 0 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#element {
|
||||||
|
padding: 5px;
|
||||||
|
background-color: @background;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected {
|
||||||
|
background-color: @background-selected;
|
||||||
|
text-color: @foreground-selected;
|
||||||
|
border: 1px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
background-color: inherit;
|
||||||
|
text-color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
background-color: inherit;
|
||||||
|
margin: 0 4px 0 0;
|
||||||
|
size: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#entry {
|
||||||
|
background-color: @background;
|
||||||
|
text-color: @accent;
|
||||||
|
placeholder: "Search";
|
||||||
|
placeholder-color: @inactive;
|
||||||
|
font: "Comfortaa Regular 20";
|
||||||
|
}
|
||||||
|
|
||||||
|
#prompt {
|
||||||
|
background-color: @background;
|
||||||
|
padding: 0 4px;
|
||||||
|
margin: 0 5px 0 0;
|
||||||
|
text-color: @foreground;
|
||||||
|
font: "Adwaita Sans Regular 20";
|
||||||
|
}
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
/*
|
|
||||||
* Css Colors
|
|
||||||
* Generated with Matugen
|
|
||||||
*/
|
|
||||||
<* for name, value in colors *>
|
|
||||||
@define-color {{name}} {{value.default.hex}};
|
|
||||||
<* endfor *>
|
|
||||||
@@ -3,98 +3,75 @@
|
|||||||
* {
|
* {
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
font-family: 'FluentSystemIcons-Regular,Comfortaa', monospace;
|
font-family: 'Comfortaa, FiraMono Nerd Font';
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 13px;
|
font-size: 15px;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
margin-left: 3px;
|
margin-left: 3px;
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: rgba(0, 0, 0, 0);
|
background-color: {{ colors.shadow.default.rgba | set_alpha: 0.1 }};
|
||||||
color: #cc5c00;
|
color: @primary;
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
background: black;
|
background-color: @background;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: #cc5c00;
|
border-color: @outline;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
color: #a79f9d;
|
background-color: @primary_container;
|
||||||
margin-right: 5px;
|
color: @on_primary_container;
|
||||||
}
|
margin-right: 1px;
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
|
||||||
color: white;
|
|
||||||
background: #cc5c00;
|
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#workspaces button.active {
|
||||||
|
color: @on_primary;
|
||||||
|
background-color: @primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.focused {
|
||||||
|
color: @on_secondary;
|
||||||
|
background-color: @secondary;
|
||||||
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
color: white;
|
color: @on_error;
|
||||||
background: #cc5c00;
|
background-color: @error;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
background: white;
|
color: @on_secondary;
|
||||||
color: #cc5c00;
|
background-color: @secondary;
|
||||||
border-radius: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background: black;
|
background-color: black;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
padding-right: 0px;
|
padding-right: 0px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window,
|
|
||||||
#clock,
|
#clock,
|
||||||
#custom-powerMenu,
|
|
||||||
#pulseaudio,
|
|
||||||
#memory,
|
|
||||||
#tray,
|
#tray,
|
||||||
#custom-dualsense,
|
#workspaces {
|
||||||
#network,
|
background-color: @surface;
|
||||||
#workspaces,
|
color: @primary;
|
||||||
#cpu {
|
padding: 3px 9px;
|
||||||
background: black;
|
|
||||||
padding: 4px 12px;
|
|
||||||
margin: 3px 2px;
|
margin: 3px 2px;
|
||||||
margin-top: 9px;
|
margin-top: 9px;
|
||||||
border: 1px solid rgb(204, 92, 0);
|
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tray {
|
|
||||||
border-radius: 10px;
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu {
|
|
||||||
margin-right: 0;
|
|
||||||
border-radius: 10px 0px 0px 10px;
|
|
||||||
background-color: #010006;
|
|
||||||
}
|
|
||||||
|
|
||||||
#memory {
|
|
||||||
margin-left: 0;
|
|
||||||
border-radius: 0px 10px 10px 0px;
|
|
||||||
background-color: #010006;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
margin-left: 60px;
|
margin-left: 60px;
|
||||||
@@ -102,14 +79,30 @@ tooltip {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#clock {
|
#clock {
|
||||||
color: #009e58;
|
|
||||||
min-width: 125px;
|
min-width: 125px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio {
|
#pulseaudio,
|
||||||
color: #9b1603;
|
#memory,
|
||||||
|
#network,
|
||||||
|
#bluetooth,
|
||||||
|
#brightness,
|
||||||
|
#backlight,
|
||||||
|
#cpu {
|
||||||
|
padding: 3px 5px;
|
||||||
|
margin: 3px 0px;
|
||||||
|
margin-top: 9px;
|
||||||
|
border-radius: 0;
|
||||||
|
background-color: @surface;
|
||||||
|
color: @primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu {
|
||||||
|
border-radius: 10px 0px 0px 10px;
|
||||||
|
padding-left: 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio.microphone {
|
#pulseaudio.microphone {
|
||||||
color: rgb(167, 159, 157);
|
border-radius: 0px 10px 10px 0px;
|
||||||
|
padding-right: 9px;
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
/** Basic config file **/
|
||||||
|
|
||||||
|
configuration {
|
||||||
|
show-icons: true;
|
||||||
|
icon-theme: "Candy";
|
||||||
|
display-drun: "";
|
||||||
|
display-run: "🏃🏽♂️ ";
|
||||||
|
display-window: "🗔 ";
|
||||||
|
display-combi: "🔎 ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "style.rasi"
|
||||||
+83
-49
@@ -7,9 +7,8 @@
|
|||||||
"gtk-layer-shell": true,
|
"gtk-layer-shell": true,
|
||||||
"height": 0,
|
"height": 0,
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
|
"hyprland/submap",
|
||||||
"clock",
|
"clock",
|
||||||
"cpu",
|
|
||||||
"memory",
|
|
||||||
"hyprland/workspaces"
|
"hyprland/workspaces"
|
||||||
],
|
],
|
||||||
"modules-center": [
|
"modules-center": [
|
||||||
@@ -17,47 +16,81 @@
|
|||||||
],
|
],
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"tray",
|
"tray",
|
||||||
|
"cpu",
|
||||||
|
"memory",
|
||||||
"network",
|
"network",
|
||||||
|
"bluetooth",
|
||||||
|
"backlight",
|
||||||
|
"battery",
|
||||||
"pulseaudio",
|
"pulseaudio",
|
||||||
"pulseaudio#microphone",
|
"pulseaudio#microphone"
|
||||||
"custom/powerMenu"
|
|
||||||
],
|
],
|
||||||
|
"bluetooth": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-disabled": "\udb80\udcb2",
|
||||||
|
"format-off": "\udb80\udcb2",
|
||||||
|
"format-on": "\udb80\udcaf",
|
||||||
|
"format-connected": "\udb80\udcb1",
|
||||||
|
"format-icons": [
|
||||||
|
"\udb82\udd47",
|
||||||
|
"\udb82\udd3e",
|
||||||
|
"\udb82\udd3f",
|
||||||
|
"\udb82\udd40",
|
||||||
|
"\udb82\udd41",
|
||||||
|
"\udb82\udd42",
|
||||||
|
"\udb82\udd43",
|
||||||
|
"\udb82\udd44",
|
||||||
|
"\udb82\udd45",
|
||||||
|
"\udb82\udd46"
|
||||||
|
],
|
||||||
|
"tooltip-format": "{controller_alias}\t{controller_address}\n\n{num_connections} connected",
|
||||||
|
"tooltip-format-connected": "{controller_alias}\t{controller_address}\n\n{num_connections} connected\n\n{device_enumerate}",
|
||||||
|
"tooltip-format-enumerate-connected": "{device_alias}\t{device_address}",
|
||||||
|
"tooltip-format-enumerate-connected-battery": "{device_alias}\t{device_address}\t{device_battery_percentage}%",
|
||||||
|
"on-click": "alacritty -e bluetui -T bluetui"
|
||||||
|
},
|
||||||
|
"hyprland/submap": {
|
||||||
|
// "format": "{icon}",
|
||||||
|
"max-length": 4,
|
||||||
|
"tooltip": false
|
||||||
|
// "icons": {
|
||||||
|
// "device": "\uf4a9",
|
||||||
|
// "groups": "\udb80\udec3",
|
||||||
|
// "launch": "\udb85\udcde",
|
||||||
|
// "notifications": "\uf400",
|
||||||
|
// "screenshot": "\udb83\ude51",
|
||||||
|
// "window": "\ueb7f",
|
||||||
|
// "workspace": "\ueb23",
|
||||||
|
// "groupedlaunch": "\uf0c0"
|
||||||
|
// }
|
||||||
|
},
|
||||||
"hyprland/window": {
|
"hyprland/window": {
|
||||||
"format": "{}"
|
"format": "{}",
|
||||||
|
"tooltip-format": "Class: {class}",
|
||||||
|
"rewrite": {
|
||||||
|
"(.*) — Librewolf": "🌎 $1",
|
||||||
|
"nvim - (.*)": "\ue6ae $1",
|
||||||
|
"Yazi: (.*)": "\udb81\ude45 $1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"tray": {
|
"tray": {
|
||||||
"icon-size": 14,
|
"icon-size": 14,
|
||||||
"spacing": 8
|
"spacing": 8
|
||||||
},
|
},
|
||||||
"custom/dualsense": {
|
|
||||||
"tooltip": false,
|
|
||||||
"return-type": "json",
|
|
||||||
"exec": "$HOME/.config/waybar/dualsense-notifier.sh",
|
|
||||||
"on-click": "dualsensectl power-off"
|
|
||||||
},
|
|
||||||
"custom/powerMenu": {
|
|
||||||
"format": "⏻",
|
|
||||||
"on-click": "rofi -show p -modi p:rofi-power-menu -theme ~/.config/rofi/themes/power.rasi"
|
|
||||||
},
|
|
||||||
"custom/quickactions": {
|
|
||||||
"format": "",
|
|
||||||
"menu": "on-click",
|
|
||||||
"menu-file": "~/.config/waybar/quickactions.xml",
|
|
||||||
"menu-actions": {}
|
|
||||||
},
|
|
||||||
"network": {
|
"network": {
|
||||||
"format-disconnected": " Net",
|
"format-disconnected": "\udb80\udf19",
|
||||||
"format-wifi": "{icon} {essid}",
|
"format-wifi": "{icon} {essid}",
|
||||||
"format-ethernet": " Wired",
|
"format-ethernet": "\udb80\ude00",
|
||||||
"tooltip-format-ethernet": "<big>Ethernet</big>\nInterface: {ifname}\nIP: {ipaddr}\nUp/Down (bps): {bandwidthUpBits}/{bandwidthDownBits}",
|
"tooltip-format-ethernet": "<big>Ethernet</big>\nInterface: {ifname}\nIP: {ipaddr}\nUp/Down (bps): {bandwidthUpBits}/{bandwidthDownBits}",
|
||||||
"tooltip-format-wifi": "<big>Wi-Fi</big>\nSSID: {essid}\nIP: {ipaddr}\nSignal strength: {signalStrength}%\nUp/Down (bps): {bandwidthUpBits}/{bandwidthDownBits}\nFrequency: {frequency}GHz",
|
"tooltip-format-wifi": "<big>Wi-Fi</big>\nSSID: {essid}\nIP: {ipaddr}\nSignal strength: {signalStrength}%\nUp/Down (bps): {bandwidthUpBits}/{bandwidthDownBits}\nFrequency: {frequency}GHz",
|
||||||
"tooltip-format-disconnected": "<big>Networking</big>\n{ifname} disconnected",
|
"tooltip-format-disconnected": "<big>Networking</big>\n{ifname} disconnected",
|
||||||
"on-click": "terminator -x nmtui",
|
"on-click": "alacritty -e nmtui -T nmtui",
|
||||||
"format-icons": [
|
"format-icons": [
|
||||||
"",
|
"\udb82\udd2f",
|
||||||
"",
|
"\udb82\udd1f",
|
||||||
"",
|
"\udb82\udd22",
|
||||||
""
|
"\udb82\udd25",
|
||||||
|
"\udb82\udd28"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"clock": {
|
"clock": {
|
||||||
@@ -68,47 +101,48 @@
|
|||||||
"hyprland/workspaces": {
|
"hyprland/workspaces": {
|
||||||
"disable-scroll": true,
|
"disable-scroll": true,
|
||||||
"all-outputs": true,
|
"all-outputs": true,
|
||||||
"on-click": "activate",
|
"tooltips": {
|
||||||
"format": "{icon}"
|
"default": "{name}: {windows}",
|
||||||
|
"empty": "" // Will result in no tooltip
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"cpu": {
|
"cpu": {
|
||||||
"tooltip-format": "<big>CPU</big>\n<tt>Total: {usage}</tt>",
|
"tooltip-format": "<big>CPU</big>\n<tt>Total: {usage}</tt>",
|
||||||
"format": " {usage}",
|
"format": "\uf4bc {usage}",
|
||||||
"interval": 5
|
"interval": 5
|
||||||
},
|
},
|
||||||
"memory": {
|
"memory": {
|
||||||
"format": " {percentage}",
|
"format": "\uefc5 {percentage}",
|
||||||
"interval": 5
|
"interval": 5
|
||||||
},
|
},
|
||||||
"pulseaudio": {
|
"pulseaudio": {
|
||||||
"format": "{icon} {volume}",
|
"format": "{icon} {volume}",
|
||||||
"tooltip": true,
|
"tooltip": true,
|
||||||
"format-muted": " Off",
|
"format-muted": "\udb81\udcc4 Off",
|
||||||
"on-click": "pamixer -t",
|
"on-click": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle",
|
||||||
"on-scroll-up": "pamixer -i 5",
|
"on-scroll-up": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+",
|
||||||
"on-scroll-down": "pamixer -d 5",
|
"on-scroll-down": "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-",
|
||||||
"scroll-step": 5,
|
"scroll-step": 5,
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"headphone": "",
|
"headphone": "\uf025",
|
||||||
"hands-free": "",
|
"hands-free": "",
|
||||||
"headset": "",
|
"headset": "\uee59",
|
||||||
"phone": "",
|
"phone": "\udb82\udd70",
|
||||||
"portable": "",
|
"portable": "\udb82\udda2",
|
||||||
"car": "🏎",
|
"car": "🏎",
|
||||||
"default": [
|
"default": [
|
||||||
"",
|
"\udb81\udcc3",
|
||||||
"",
|
"\udb81\udf1f"
|
||||||
""
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pulseaudio#microphone": {
|
"pulseaudio#microphone": {
|
||||||
"format": "{format_source}",
|
"format": "{format_source}",
|
||||||
"format-source": " {volume}",
|
"format-source": "\uf130 {volume}",
|
||||||
"format-source-muted": " 0",
|
"format-source-muted": "\uf131 Off",
|
||||||
"on-click": "pamixer --default-source -t",
|
"on-click": "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle",
|
||||||
"on-scroll-up": "pamixer --default-source -i 5",
|
"on-scroll-up": "wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%+",
|
||||||
"on-scroll-down": "pamixer --default-source -d 5",
|
"on-scroll-down": "wpctl set-volume @DEFAULT_AUDIO_SOURCE@ 5%-",
|
||||||
"scroll-step": 5
|
"scroll-step": 5
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<interface>
|
|
||||||
<object class="GtkMenu" id="menu">
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="suspend">
|
|
||||||
<property name="label">Suspend</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="hibernate">
|
|
||||||
<property name="label">Hibernate</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="shutdown">
|
|
||||||
<property name="label">Shutdown</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkSeparatorMenuItem" id="delimiter1" />
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuItem" id="reboot">
|
|
||||||
<property name="label">Reboot</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</interface>
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
{
|
|
||||||
"hyprlandSubmapIndicator": {
|
|
||||||
"enabled": true,
|
|
||||||
"submapLabels": [
|
|
||||||
{
|
|
||||||
"submap": "device",
|
|
||||||
"label": "dev",
|
|
||||||
"color": "#FF0000"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "groups",
|
|
||||||
"label": "GRP",
|
|
||||||
"color": "#AABBCC"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"defaultTextColor": {
|
|
||||||
"r": 0.12941177189350128,
|
|
||||||
"g": 0.12941177189350128,
|
|
||||||
"b": 0.12941177189350128,
|
|
||||||
"a": 1,
|
|
||||||
"hsvHue": -1,
|
|
||||||
"hsvSaturation": 0,
|
|
||||||
"hsvValue": 0.12941177189350128,
|
|
||||||
"hslHue": -1,
|
|
||||||
"hslSaturation": 0,
|
|
||||||
"hslLightness": 0.12941177189350128,
|
|
||||||
"valid": true
|
|
||||||
},
|
|
||||||
"defaultIconName": "home",
|
|
||||||
"defaultIconColor": {},
|
|
||||||
"submapIcons": [
|
|
||||||
{
|
|
||||||
"submap": "device",
|
|
||||||
"icon": "build",
|
|
||||||
"color": "#FF0000"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "groups",
|
|
||||||
"icon": "group",
|
|
||||||
"color": "#AABBCC"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "launch",
|
|
||||||
"icon": "rocket_launch",
|
|
||||||
"color": "#00B51E"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "notifications",
|
|
||||||
"icon": "notification_settings",
|
|
||||||
"color": "#eec100"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "screenshot",
|
|
||||||
"icon": "screenshot_monitor",
|
|
||||||
"color": "#ad00ee"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "window",
|
|
||||||
"icon": "select_window",
|
|
||||||
"color": "#00b2ee"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "workspace",
|
|
||||||
"icon": "monitor",
|
|
||||||
"color": "#2800ee"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"submap": "groupedlaunch",
|
|
||||||
"icon": "open_in_new",
|
|
||||||
"color": "#005207"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"fontSize": "none"
|
|
||||||
},
|
|
||||||
"calculator": {
|
|
||||||
"enabled": true,
|
|
||||||
"trigger": "=",
|
|
||||||
"calcEngine": "qalc",
|
|
||||||
"noTrigger": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,792 +0,0 @@
|
|||||||
{
|
|
||||||
"currentThemeName": "dynamic",
|
|
||||||
"currentThemeCategory": "dynamic",
|
|
||||||
"customThemeFile": "",
|
|
||||||
"registryThemeVariants": {},
|
|
||||||
"matugenScheme": "scheme-tonal-spot",
|
|
||||||
"matugenContrast": 0,
|
|
||||||
"runUserMatugenTemplates": true,
|
|
||||||
"matugenTargetMonitor": "",
|
|
||||||
"popupTransparency": 1,
|
|
||||||
"dockTransparency": 1,
|
|
||||||
"widgetBackgroundColor": "sch",
|
|
||||||
"widgetBackgroundCustomColor": "#6750A4",
|
|
||||||
"widgetBackgroundCustomStrength": 0.5,
|
|
||||||
"widgetColorMode": "colorful",
|
|
||||||
"controlCenterTileColorMode": "primary",
|
|
||||||
"buttonColorMode": "primary",
|
|
||||||
"cornerRadius": 12,
|
|
||||||
"niriLayoutGapsOverride": -1,
|
|
||||||
"niriLayoutRadiusOverride": -1,
|
|
||||||
"niriLayoutBorderSize": -1,
|
|
||||||
"hyprlandLayoutGapsOverride": -1,
|
|
||||||
"hyprlandLayoutGapsOutOverride": -1,
|
|
||||||
"hyprlandLayoutRadiusOverride": -1,
|
|
||||||
"hyprlandLayoutBorderSize": -1,
|
|
||||||
"hyprlandResizeOnBorder": false,
|
|
||||||
"mangoLayoutGapsOverride": -1,
|
|
||||||
"mangoLayoutGapsOutOverride": -1,
|
|
||||||
"mangoLayoutRadiusOverride": -1,
|
|
||||||
"mangoLayoutBorderSize": -1,
|
|
||||||
"mangoTrackpadNaturalScrolling": true,
|
|
||||||
"firstDayOfWeek": -1,
|
|
||||||
"showWeekNumber": false,
|
|
||||||
"calendarBackend": "auto",
|
|
||||||
"clockFormat": "24h",
|
|
||||||
"showSeconds": true,
|
|
||||||
"padHours12Hour": false,
|
|
||||||
"useFahrenheit": false,
|
|
||||||
"windSpeedUnit": "kmh",
|
|
||||||
"nightModeEnabled": false,
|
|
||||||
"animationSpeed": 4,
|
|
||||||
"customAnimationDuration": 150,
|
|
||||||
"syncComponentAnimationSpeeds": true,
|
|
||||||
"popoutAnimationSpeed": 1,
|
|
||||||
"popoutCustomAnimationDuration": 150,
|
|
||||||
"modalAnimationSpeed": 1,
|
|
||||||
"modalCustomAnimationDuration": 150,
|
|
||||||
"enableRippleEffects": true,
|
|
||||||
"animationVariant": 0,
|
|
||||||
"motionEffect": 0,
|
|
||||||
"m3ElevationEnabled": true,
|
|
||||||
"m3ElevationIntensity": 12,
|
|
||||||
"m3ElevationOpacity": 30,
|
|
||||||
"m3ElevationColorMode": "default",
|
|
||||||
"m3ElevationLightDirection": "top",
|
|
||||||
"m3ElevationCustomColor": "#000000",
|
|
||||||
"modalElevationEnabled": true,
|
|
||||||
"popoutElevationEnabled": true,
|
|
||||||
"barElevationEnabled": false,
|
|
||||||
"blurEnabled": false,
|
|
||||||
"blurForegroundLayers": true,
|
|
||||||
"blurLayerOutlineOpacity": 0.12,
|
|
||||||
"blurBorderEnabled": true,
|
|
||||||
"blurBorderColor": "outline",
|
|
||||||
"blurBorderCustomColor": "#ffffff",
|
|
||||||
"blurBorderOpacity": 0.35,
|
|
||||||
"wallpaperFillMode": "Fill",
|
|
||||||
"blurredWallpaperLayer": false,
|
|
||||||
"blurWallpaperOnOverview": false,
|
|
||||||
"wallpaperBackgroundColorMode": "black",
|
|
||||||
"wallpaperBackgroundCustomColor": "#000000",
|
|
||||||
"showLauncherButton": true,
|
|
||||||
"showWorkspaceSwitcher": true,
|
|
||||||
"showFocusedWindow": true,
|
|
||||||
"showWeather": true,
|
|
||||||
"showMusic": true,
|
|
||||||
"showClipboard": true,
|
|
||||||
"showCpuUsage": true,
|
|
||||||
"showMemUsage": true,
|
|
||||||
"showCpuTemp": true,
|
|
||||||
"showGpuTemp": true,
|
|
||||||
"selectedGpuIndex": 0,
|
|
||||||
"enabledGpuPciIds": [],
|
|
||||||
"showSystemTray": true,
|
|
||||||
"systemTrayIconTintMode": "primary",
|
|
||||||
"systemTrayIconTintSaturation": 0,
|
|
||||||
"systemTrayIconTintStrength": 100,
|
|
||||||
"showClock": true,
|
|
||||||
"showNotificationButton": true,
|
|
||||||
"showBattery": true,
|
|
||||||
"showBatteryPercent": true,
|
|
||||||
"showBatteryPercentOnlyOnBattery": false,
|
|
||||||
"showBatteryTime": false,
|
|
||||||
"showBatteryTimeOnlyOnBattery": false,
|
|
||||||
"batteryPillStyle": false,
|
|
||||||
"batteryPillPercentSign": false,
|
|
||||||
"showControlCenterButton": true,
|
|
||||||
"showCapsLockIndicator": true,
|
|
||||||
"controlCenterShowNetworkIcon": true,
|
|
||||||
"controlCenterShowBluetoothIcon": true,
|
|
||||||
"controlCenterShowAudioIcon": true,
|
|
||||||
"controlCenterShowAudioPercent": false,
|
|
||||||
"controlCenterShowVpnIcon": true,
|
|
||||||
"controlCenterShowBrightnessIcon": false,
|
|
||||||
"controlCenterShowBrightnessPercent": false,
|
|
||||||
"controlCenterShowMicIcon": false,
|
|
||||||
"controlCenterShowMicPercent": true,
|
|
||||||
"controlCenterShowBatteryIcon": false,
|
|
||||||
"controlCenterShowPrinterIcon": false,
|
|
||||||
"controlCenterShowScreenSharingIcon": true,
|
|
||||||
"controlCenterShowIdleInhibitorIcon": false,
|
|
||||||
"controlCenterShowDoNotDisturbIcon": false,
|
|
||||||
"showPrivacyButton": true,
|
|
||||||
"privacyShowMicIcon": false,
|
|
||||||
"privacyShowCameraIcon": false,
|
|
||||||
"privacyShowScreenShareIcon": false,
|
|
||||||
"controlCenterWidgets": [
|
|
||||||
{
|
|
||||||
"id": "volumeSlider",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "inputVolumeSlider",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "brightnessSlider",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 100,
|
|
||||||
"instanceId": "mqkkrmb3egxs1ld56tbk0v52ce4yj5",
|
|
||||||
"deviceName": ""
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "bluetooth",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "battery",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "builtin_vpn",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "wifi",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "audioInput",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "audioOutput",
|
|
||||||
"enabled": true,
|
|
||||||
"width": 50
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"showWorkspaceIndex": true,
|
|
||||||
"showWorkspaceName": false,
|
|
||||||
"showWorkspacePadding": false,
|
|
||||||
"workspaceScrolling": false,
|
|
||||||
"showWorkspaceApps": false,
|
|
||||||
"workspaceDragReorder": true,
|
|
||||||
"maxWorkspaceIcons": 2,
|
|
||||||
"workspaceAppIconSizeOffset": 0,
|
|
||||||
"groupWorkspaceApps": true,
|
|
||||||
"groupActiveWorkspaceApps": false,
|
|
||||||
"workspaceFollowFocus": true,
|
|
||||||
"showOccupiedWorkspacesOnly": false,
|
|
||||||
"reverseScrolling": false,
|
|
||||||
"dwlShowAllTags": false,
|
|
||||||
"workspaceActiveAppHighlightEnabled": false,
|
|
||||||
"workspaceColorMode": "default",
|
|
||||||
"workspaceFocusedCustomColor": "#6750A4",
|
|
||||||
"workspaceOccupiedColorMode": "none",
|
|
||||||
"workspaceOccupiedCustomColor": "#625B71",
|
|
||||||
"workspaceUnfocusedColorMode": "default",
|
|
||||||
"workspaceUnfocusedCustomColor": "#49454E",
|
|
||||||
"workspaceUrgentColorMode": "default",
|
|
||||||
"workspaceUrgentCustomColor": "#B3261E",
|
|
||||||
"workspaceFocusedBorderEnabled": false,
|
|
||||||
"workspaceFocusedBorderColor": "primary",
|
|
||||||
"workspaceFocusedBorderCustomColor": "#6750A4",
|
|
||||||
"workspaceFocusedBorderThickness": 2,
|
|
||||||
"workspaceUnfocusedMonitorSeparateAppearance": false,
|
|
||||||
"workspaceUnfocusedMonitorColorMode": "default",
|
|
||||||
"workspaceUnfocusedMonitorFocusedCustomColor": "#6750A4",
|
|
||||||
"workspaceUnfocusedMonitorOccupiedColorMode": "none",
|
|
||||||
"workspaceUnfocusedMonitorOccupiedCustomColor": "#625B71",
|
|
||||||
"workspaceUnfocusedMonitorUnfocusedColorMode": "default",
|
|
||||||
"workspaceUnfocusedMonitorUnfocusedCustomColor": "#49454E",
|
|
||||||
"workspaceUnfocusedMonitorUrgentColorMode": "default",
|
|
||||||
"workspaceUnfocusedMonitorUrgentCustomColor": "#B3261E",
|
|
||||||
"workspaceUnfocusedMonitorBorderEnabled": false,
|
|
||||||
"workspaceUnfocusedMonitorBorderColor": "primary",
|
|
||||||
"workspaceUnfocusedMonitorBorderCustomColor": "#6750A4",
|
|
||||||
"workspaceUnfocusedMonitorBorderThickness": 2,
|
|
||||||
"workspaceNameIcons": {},
|
|
||||||
"waveProgressEnabled": true,
|
|
||||||
"scrollTitleEnabled": true,
|
|
||||||
"mediaAdaptiveWidthEnabled": true,
|
|
||||||
"audioVisualizerEnabled": true,
|
|
||||||
"mediaUseAlbumArtAccent": false,
|
|
||||||
"audioScrollMode": "volume",
|
|
||||||
"audioWheelScrollAmount": 5,
|
|
||||||
"audioDeviceScrollVolumeEnabled": false,
|
|
||||||
"mediaExcludePlayers": [],
|
|
||||||
"clockCompactMode": false,
|
|
||||||
"focusedWindowCompactMode": false,
|
|
||||||
"focusedWindowSize": 1,
|
|
||||||
"focusedWindowShowIcon": true,
|
|
||||||
"runningAppsCompactMode": true,
|
|
||||||
"barMaxVisibleApps": 0,
|
|
||||||
"barMaxVisibleRunningApps": 0,
|
|
||||||
"barShowOverflowBadge": true,
|
|
||||||
"trayAutoOverflow": true,
|
|
||||||
"trayPopupSingleLine": true,
|
|
||||||
"trayMaxVisibleItems": 0,
|
|
||||||
"appsDockHideIndicators": false,
|
|
||||||
"appsDockColorizeActive": false,
|
|
||||||
"appsDockActiveColorMode": "primary",
|
|
||||||
"appsDockEnlargeOnHover": false,
|
|
||||||
"appsDockEnlargePercentage": 125,
|
|
||||||
"appsDockIconSizePercentage": 100,
|
|
||||||
"keyboardLayoutNameCompactMode": false,
|
|
||||||
"keyboardLayoutNameShowIcon": false,
|
|
||||||
"runningAppsCurrentWorkspace": true,
|
|
||||||
"runningAppsGroupByApp": false,
|
|
||||||
"runningAppsCurrentMonitor": false,
|
|
||||||
"appIdSubstitutions": [],
|
|
||||||
"centeringMode": "index",
|
|
||||||
"clockDateFormat": "",
|
|
||||||
"lockDateFormat": "",
|
|
||||||
"greeterRememberLastSession": true,
|
|
||||||
"greeterRememberLastUser": true,
|
|
||||||
"greeterAutoLogin": false,
|
|
||||||
"greeterEnableFprint": false,
|
|
||||||
"greeterEnableU2f": false,
|
|
||||||
"greeterWallpaperPath": "",
|
|
||||||
"greeterLockDateFormat": "",
|
|
||||||
"greeterFontFamily": "",
|
|
||||||
"greeterWallpaperFillMode": "",
|
|
||||||
"greeterPamExternallyManaged": false,
|
|
||||||
"greeterSyncPending": false,
|
|
||||||
"greeterSyncBaseline": {},
|
|
||||||
"mediaSize": 1,
|
|
||||||
"appLauncherViewMode": "list",
|
|
||||||
"spotlightModalViewMode": "list",
|
|
||||||
"browserPickerViewMode": "grid",
|
|
||||||
"browserUsageHistory": {},
|
|
||||||
"appPickerViewMode": "grid",
|
|
||||||
"filePickerUsageHistory": {},
|
|
||||||
"sortAppsAlphabetically": false,
|
|
||||||
"appLauncherGridColumns": 4,
|
|
||||||
"spotlightCloseNiriOverview": true,
|
|
||||||
"rememberLastQuery": false,
|
|
||||||
"rememberLastMode": true,
|
|
||||||
"spotlightSectionViewModes": {
|
|
||||||
"apps": "list"
|
|
||||||
},
|
|
||||||
"appDrawerSectionViewModes": {},
|
|
||||||
"niriOverviewOverlayEnabled": true,
|
|
||||||
"niriOverviewLauncherStyle": "full",
|
|
||||||
"dankLauncherV2Size": "compact",
|
|
||||||
"dankLauncherV2ShowSourceBadges": true,
|
|
||||||
"dankLauncherV2BorderEnabled": false,
|
|
||||||
"dankLauncherV2BorderThickness": 2,
|
|
||||||
"dankLauncherV2BorderColor": "primary",
|
|
||||||
"dankLauncherV2ShowFooter": true,
|
|
||||||
"dankLauncherV2UnloadOnClose": false,
|
|
||||||
"dankLauncherV2IncludeFilesInAll": false,
|
|
||||||
"dankLauncherV2IncludeFoldersInAll": false,
|
|
||||||
"launcherUseOverlayLayer": false,
|
|
||||||
"launcherStyle": "full",
|
|
||||||
"spotlightBarShowModeChips": false,
|
|
||||||
"keybindsFloatingWindow": false,
|
|
||||||
"useAutoLocation": false,
|
|
||||||
"weatherEnabled": true,
|
|
||||||
"dashTabs": [
|
|
||||||
{
|
|
||||||
"id": "overview",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "media",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "wallpaper",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "weather",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "settings",
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"networkPreference": "wifi",
|
|
||||||
"iconThemeDark": "Papirus-Dark",
|
|
||||||
"iconThemeLight": "System Default",
|
|
||||||
"iconThemePerMode": false,
|
|
||||||
"lastAppliedIconTheme": "",
|
|
||||||
"cursorSettings": {
|
|
||||||
"theme": "oreo_spark_blue_cursors",
|
|
||||||
"size": 24,
|
|
||||||
"niri": {
|
|
||||||
"hideWhenTyping": false,
|
|
||||||
"hideAfterInactiveMs": 0
|
|
||||||
},
|
|
||||||
"hyprland": {
|
|
||||||
"hideOnKeyPress": false,
|
|
||||||
"hideOnTouch": false,
|
|
||||||
"inactiveTimeout": 5
|
|
||||||
},
|
|
||||||
"dwl": {
|
|
||||||
"cursorHideTimeout": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"launcherLogoMode": "apps",
|
|
||||||
"launcherLogoCustomPath": "",
|
|
||||||
"launcherLogoColorOverride": "",
|
|
||||||
"launcherLogoColorInvertOnMode": false,
|
|
||||||
"launcherLogoBrightness": 0.5,
|
|
||||||
"launcherLogoContrast": 1,
|
|
||||||
"launcherLogoSizeOffset": 0,
|
|
||||||
"fontFamily": "Comfortaa Medium",
|
|
||||||
"monoFontFamily": "Source Code Pro",
|
|
||||||
"fontWeight": 400,
|
|
||||||
"fontScale": 1,
|
|
||||||
"textRenderType": 0,
|
|
||||||
"textRenderQuality": 0,
|
|
||||||
"notepadUseMonospace": true,
|
|
||||||
"notepadFontFamily": "",
|
|
||||||
"notepadFontSize": 14,
|
|
||||||
"notificationSummaryFontSize": 0,
|
|
||||||
"notificationBodyFontSize": 0,
|
|
||||||
"notepadShowLineNumbers": false,
|
|
||||||
"notepadAutoSave": false,
|
|
||||||
"notepadSlideoutSide": "right",
|
|
||||||
"notepadDefaultMode": "slideout",
|
|
||||||
"notepadTransparencyOverride": -1,
|
|
||||||
"notepadLastCustomTransparency": 0.7,
|
|
||||||
"notepadUseCompositorGap": false,
|
|
||||||
"notepadEdgeGap": 0,
|
|
||||||
"soundsEnabled": true,
|
|
||||||
"useSystemSoundTheme": false,
|
|
||||||
"soundLogin": false,
|
|
||||||
"soundNewNotification": true,
|
|
||||||
"soundVolumeChanged": false,
|
|
||||||
"soundPluggedIn": false,
|
|
||||||
"muteSoundsWhenMediaPlaying": true,
|
|
||||||
"acMonitorTimeout": 0,
|
|
||||||
"acLockTimeout": 0,
|
|
||||||
"acSuspendTimeout": 0,
|
|
||||||
"acSuspendBehavior": 0,
|
|
||||||
"acProfileName": "",
|
|
||||||
"acPostLockMonitorTimeout": 0,
|
|
||||||
"batteryMonitorTimeout": 0,
|
|
||||||
"batteryLockTimeout": 0,
|
|
||||||
"batterySuspendTimeout": 0,
|
|
||||||
"batterySuspendBehavior": 0,
|
|
||||||
"batteryProfileName": "",
|
|
||||||
"batteryPostLockMonitorTimeout": 0,
|
|
||||||
"batteryChargeLimit": 100,
|
|
||||||
"batteryNotifyChargeLimit": false,
|
|
||||||
"batteryCriticalThreshold": 10,
|
|
||||||
"batteryNotifyCritical": true,
|
|
||||||
"batteryLowThreshold": 20,
|
|
||||||
"batteryNotifyLow": false,
|
|
||||||
"batteryChargeLimitNotificationType": 0,
|
|
||||||
"batteryLowNotificationType": 0,
|
|
||||||
"batteryCriticalNotificationType": 1,
|
|
||||||
"batteryAutoPowerSaver": false,
|
|
||||||
"lockBeforeSuspend": false,
|
|
||||||
"loginctlLockIntegration": true,
|
|
||||||
"fadeToLockEnabled": true,
|
|
||||||
"fadeToLockGracePeriod": 5,
|
|
||||||
"fadeToDpmsEnabled": true,
|
|
||||||
"fadeToDpmsGracePeriod": 5,
|
|
||||||
"launchPrefix": "",
|
|
||||||
"gtkThemingEnabled": false,
|
|
||||||
"qtThemingEnabled": false,
|
|
||||||
"syncModeWithPortal": true,
|
|
||||||
"terminalsAlwaysDark": false,
|
|
||||||
"muxType": "tmux",
|
|
||||||
"muxUseCustomCommand": false,
|
|
||||||
"muxCustomCommand": "",
|
|
||||||
"muxSessionFilter": "",
|
|
||||||
"runDmsMatugenTemplates": true,
|
|
||||||
"matugenTemplateGtk": true,
|
|
||||||
"matugenTemplateNiri": false,
|
|
||||||
"matugenTemplateHyprland": false,
|
|
||||||
"matugenTemplateMangowc": false,
|
|
||||||
"matugenTemplateQt5ct": true,
|
|
||||||
"matugenTemplateQt6ct": true,
|
|
||||||
"matugenTemplateFirefox": false,
|
|
||||||
"matugenTemplatePywalfox": false,
|
|
||||||
"matugenTemplateZenBrowser": false,
|
|
||||||
"matugenTemplateVesktop": true,
|
|
||||||
"matugenTemplateVencord": true,
|
|
||||||
"matugenTemplateEquibop": false,
|
|
||||||
"matugenTemplateGhostty": false,
|
|
||||||
"matugenTemplateKitty": true,
|
|
||||||
"matugenTemplateFoot": false,
|
|
||||||
"matugenTemplateAlacritty": true,
|
|
||||||
"matugenTemplateNeovim": true,
|
|
||||||
"matugenTemplateWezterm": false,
|
|
||||||
"matugenTemplateDgop": true,
|
|
||||||
"matugenTemplateKcolorscheme": true,
|
|
||||||
"matugenTemplateVscode": false,
|
|
||||||
"matugenTemplateEmacs": false,
|
|
||||||
"matugenTemplateZed": false,
|
|
||||||
"matugenTemplateNeovimSettings": {
|
|
||||||
"dark": {
|
|
||||||
"baseTheme": "github_dark",
|
|
||||||
"harmony": 0.5
|
|
||||||
},
|
|
||||||
"light": {
|
|
||||||
"baseTheme": "github_light",
|
|
||||||
"harmony": 0.5
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"matugenTemplateNeovimSetBackground": true,
|
|
||||||
"showDock": false,
|
|
||||||
"dockAutoHide": false,
|
|
||||||
"dockSmartAutoHide": false,
|
|
||||||
"dockUseOverlayLayer": false,
|
|
||||||
"dockGroupByApp": false,
|
|
||||||
"dockRestoreSpecialWorkspaceOnClick": false,
|
|
||||||
"dockOpenOnOverview": false,
|
|
||||||
"dockPosition": 1,
|
|
||||||
"dockSpacing": 4,
|
|
||||||
"dockBottomGap": 0,
|
|
||||||
"dockMargin": 0,
|
|
||||||
"dockIconSize": 40,
|
|
||||||
"dockIndicatorStyle": "circle",
|
|
||||||
"dockBorderEnabled": false,
|
|
||||||
"dockBorderColor": "surfaceText",
|
|
||||||
"dockBorderOpacity": 1,
|
|
||||||
"dockBorderThickness": 1,
|
|
||||||
"dockIsolateDisplays": false,
|
|
||||||
"dockLauncherEnabled": false,
|
|
||||||
"dockLauncherLogoMode": "apps",
|
|
||||||
"dockLauncherLogoCustomPath": "",
|
|
||||||
"dockLauncherLogoColorOverride": "",
|
|
||||||
"dockLauncherLogoSizeOffset": 0,
|
|
||||||
"dockLauncherLogoBrightness": 0.5,
|
|
||||||
"dockLauncherLogoContrast": 1,
|
|
||||||
"dockMaxVisibleApps": 0,
|
|
||||||
"dockMaxVisibleRunningApps": 0,
|
|
||||||
"dockShowOverflowBadge": true,
|
|
||||||
"dockShowTrash": false,
|
|
||||||
"dockTrashFileManager": "default",
|
|
||||||
"dockTrashCustomCommand": "",
|
|
||||||
"notificationOverlayEnabled": false,
|
|
||||||
"notificationPopupShadowEnabled": true,
|
|
||||||
"notificationPopupPrivacyMode": false,
|
|
||||||
"notificationForegroundLayers": true,
|
|
||||||
"modalDarkenBackground": true,
|
|
||||||
"lockScreenShowPowerActions": true,
|
|
||||||
"lockScreenShowSystemIcons": true,
|
|
||||||
"lockScreenShowTime": true,
|
|
||||||
"lockScreenShowDate": true,
|
|
||||||
"lockScreenShowProfileImage": true,
|
|
||||||
"lockScreenShowPasswordField": true,
|
|
||||||
"lockScreenShowMediaPlayer": true,
|
|
||||||
"lockScreenPowerOffMonitorsOnLock": false,
|
|
||||||
"lockAtStartup": false,
|
|
||||||
"enableFprint": false,
|
|
||||||
"maxFprintTries": 15,
|
|
||||||
"enableU2f": false,
|
|
||||||
"u2fMode": "or",
|
|
||||||
"lockPamPath": "",
|
|
||||||
"lockPamInlineFprint": false,
|
|
||||||
"lockPamInlineU2f": false,
|
|
||||||
"lockPamExternallyManaged": false,
|
|
||||||
"lockU2fPamPath": "",
|
|
||||||
"lockScreenInactiveColor": "#000000",
|
|
||||||
"lockScreenNotificationMode": 0,
|
|
||||||
"lockScreenVideoEnabled": false,
|
|
||||||
"lockScreenVideoPath": "",
|
|
||||||
"lockScreenVideoCycling": false,
|
|
||||||
"lockScreenWallpaperPath": "",
|
|
||||||
"lockScreenWallpaperFillMode": "",
|
|
||||||
"lockScreenFontFamily": "",
|
|
||||||
"hideBrightnessSlider": false,
|
|
||||||
"notificationTimeoutLow": 5000,
|
|
||||||
"notificationTimeoutNormal": 5000,
|
|
||||||
"notificationTimeoutCritical": 0,
|
|
||||||
"notificationCompactMode": false,
|
|
||||||
"notificationShowTimeoutBar": false,
|
|
||||||
"notificationDedupeEnabled": true,
|
|
||||||
"notificationPopupPosition": 0,
|
|
||||||
"notificationAnimationSpeed": 1,
|
|
||||||
"notificationCustomAnimationDuration": 400,
|
|
||||||
"notificationHistoryEnabled": true,
|
|
||||||
"notificationHistoryMaxCount": 50,
|
|
||||||
"notificationHistoryMaxAgeDays": 7,
|
|
||||||
"notificationHistorySaveLow": true,
|
|
||||||
"notificationHistorySaveNormal": true,
|
|
||||||
"notificationHistorySaveCritical": true,
|
|
||||||
"notificationRules": [],
|
|
||||||
"notificationFocusedMonitor": false,
|
|
||||||
"osdAlwaysShowValue": false,
|
|
||||||
"osdPosition": 5,
|
|
||||||
"osdVolumeEnabled": true,
|
|
||||||
"osdMediaVolumeEnabled": true,
|
|
||||||
"osdMediaPlaybackEnabled": true,
|
|
||||||
"osdBrightnessEnabled": true,
|
|
||||||
"osdIdleInhibitorEnabled": true,
|
|
||||||
"osdMicMuteEnabled": true,
|
|
||||||
"osdCapsLockEnabled": true,
|
|
||||||
"osdPowerProfileEnabled": true,
|
|
||||||
"osdAudioOutputEnabled": true,
|
|
||||||
"powerActionConfirm": false,
|
|
||||||
"powerActionHoldDuration": 0.5,
|
|
||||||
"powerMenuActions": [
|
|
||||||
"reboot",
|
|
||||||
"logout",
|
|
||||||
"poweroff",
|
|
||||||
"lock",
|
|
||||||
"suspend",
|
|
||||||
"restart"
|
|
||||||
],
|
|
||||||
"powerMenuDefaultAction": "logout",
|
|
||||||
"powerMenuGridLayout": false,
|
|
||||||
"customPowerActionLock": "",
|
|
||||||
"customPowerActionLogout": "",
|
|
||||||
"customPowerActionSuspend": "",
|
|
||||||
"customPowerActionHibernate": "",
|
|
||||||
"customPowerActionReboot": "",
|
|
||||||
"customPowerActionPowerOff": "",
|
|
||||||
"updaterHideWidget": false,
|
|
||||||
"updaterCheckOnStart": false,
|
|
||||||
"updaterUseCustomCommand": false,
|
|
||||||
"updaterCustomCommand": "",
|
|
||||||
"updaterTerminalAdditionalParams": "",
|
|
||||||
"updaterIntervalSeconds": 86400,
|
|
||||||
"updaterIncludeFlatpak": true,
|
|
||||||
"updaterAllowAUR": false,
|
|
||||||
"updaterIgnoredPackages": [],
|
|
||||||
"displayNameMode": "system",
|
|
||||||
"screenPreferences": {
|
|
||||||
"wallpaper": [
|
|
||||||
"all"
|
|
||||||
],
|
|
||||||
"dock": [],
|
|
||||||
"notepad": []
|
|
||||||
},
|
|
||||||
"showOnLastDisplay": {
|
|
||||||
"dock": false
|
|
||||||
},
|
|
||||||
"niriOutputSettings": {},
|
|
||||||
"hyprlandOutputSettings": {},
|
|
||||||
"displayProfiles": {},
|
|
||||||
"activeDisplayProfile": {},
|
|
||||||
"displayProfileAutoSelect": false,
|
|
||||||
"displayShowDisconnected": false,
|
|
||||||
"displaySnapToEdge": true,
|
|
||||||
"connectedFrameBarStyleBackups": {},
|
|
||||||
"barConfigs": [
|
|
||||||
{
|
|
||||||
"id": "default",
|
|
||||||
"name": "Main Bar",
|
|
||||||
"enabled": true,
|
|
||||||
"position": 0,
|
|
||||||
"screenPreferences": [
|
|
||||||
"all"
|
|
||||||
],
|
|
||||||
"showOnLastDisplay": true,
|
|
||||||
"leftWidgets": [
|
|
||||||
{
|
|
||||||
"id": "hyprlandSubmapIndicator",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "clock",
|
|
||||||
"enabled": true,
|
|
||||||
"clockCompactMode": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "workspaceSwitcher",
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"centerWidgets": [
|
|
||||||
{
|
|
||||||
"id": "music",
|
|
||||||
"enabled": true,
|
|
||||||
"mediaSize": 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "focusedWindow",
|
|
||||||
"enabled": true,
|
|
||||||
"focusedWindowCompactMode": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"rightWidgets": [
|
|
||||||
{
|
|
||||||
"id": "systemTray",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "cpuUsage",
|
|
||||||
"enabled": true,
|
|
||||||
"minimumWidth": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "memUsage",
|
|
||||||
"enabled": true,
|
|
||||||
"showSwap": false
|
|
||||||
},
|
|
||||||
"notificationButton",
|
|
||||||
{
|
|
||||||
"id": "controlCenterButton",
|
|
||||||
"enabled": true,
|
|
||||||
"showNetworkIcon": true,
|
|
||||||
"showAudioPercent": true,
|
|
||||||
"showVpnIcon": false,
|
|
||||||
"showMicIcon": true,
|
|
||||||
"showBatteryIcon": true,
|
|
||||||
"showPrinterIcon": false,
|
|
||||||
"showScreenSharingIcon": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"spacing": 4,
|
|
||||||
"innerPadding": 5,
|
|
||||||
"bottomGap": 0,
|
|
||||||
"transparency": 0.7,
|
|
||||||
"widgetTransparency": 1,
|
|
||||||
"squareCorners": false,
|
|
||||||
"noBackground": false,
|
|
||||||
"maximizeWidgetIcons": false,
|
|
||||||
"maximizeWidgetText": false,
|
|
||||||
"removeWidgetPadding": false,
|
|
||||||
"widgetPadding": 7,
|
|
||||||
"gothCornersEnabled": false,
|
|
||||||
"gothCornerRadiusOverride": false,
|
|
||||||
"gothCornerRadiusValue": 12,
|
|
||||||
"borderEnabled": false,
|
|
||||||
"borderColor": "surfaceText",
|
|
||||||
"borderOpacity": 1,
|
|
||||||
"borderThickness": 1,
|
|
||||||
"widgetOutlineEnabled": false,
|
|
||||||
"widgetOutlineColor": "primary",
|
|
||||||
"widgetOutlineOpacity": 1,
|
|
||||||
"widgetOutlineThickness": 1,
|
|
||||||
"fontScale": 1.25,
|
|
||||||
"iconScale": 1.25,
|
|
||||||
"autoHide": false,
|
|
||||||
"autoHideDelay": 250,
|
|
||||||
"showOnWindowsOpen": false,
|
|
||||||
"openOnOverview": false,
|
|
||||||
"visible": true,
|
|
||||||
"popupGapsAuto": true,
|
|
||||||
"popupGapsManual": 4,
|
|
||||||
"maximizeDetection": false,
|
|
||||||
"scrollEnabled": false,
|
|
||||||
"scrollXBehavior": "column",
|
|
||||||
"scrollYBehavior": "workspace",
|
|
||||||
"shadowIntensity": 0,
|
|
||||||
"shadowOpacity": 60,
|
|
||||||
"shadowColorMode": "text",
|
|
||||||
"shadowCustomColor": "#000000",
|
|
||||||
"clickThrough": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"desktopClockEnabled": false,
|
|
||||||
"desktopClockStyle": "analog",
|
|
||||||
"desktopClockTransparency": 0.8,
|
|
||||||
"desktopClockColorMode": "primary",
|
|
||||||
"desktopClockCustomColor": {
|
|
||||||
"r": 1,
|
|
||||||
"g": 1,
|
|
||||||
"b": 1,
|
|
||||||
"a": 1,
|
|
||||||
"hsvHue": -1,
|
|
||||||
"hsvSaturation": 0,
|
|
||||||
"hsvValue": 1,
|
|
||||||
"hslHue": -1,
|
|
||||||
"hslSaturation": 0,
|
|
||||||
"hslLightness": 1,
|
|
||||||
"valid": true
|
|
||||||
},
|
|
||||||
"desktopClockShowDate": true,
|
|
||||||
"desktopClockShowAnalogNumbers": false,
|
|
||||||
"desktopClockShowAnalogSeconds": true,
|
|
||||||
"desktopClockX": -1,
|
|
||||||
"desktopClockY": -1,
|
|
||||||
"desktopClockWidth": 280,
|
|
||||||
"desktopClockHeight": 180,
|
|
||||||
"desktopClockDisplayPreferences": [
|
|
||||||
"all"
|
|
||||||
],
|
|
||||||
"systemMonitorEnabled": false,
|
|
||||||
"systemMonitorShowHeader": true,
|
|
||||||
"systemMonitorTransparency": 0.8,
|
|
||||||
"systemMonitorColorMode": "primary",
|
|
||||||
"systemMonitorCustomColor": {
|
|
||||||
"r": 1,
|
|
||||||
"g": 1,
|
|
||||||
"b": 1,
|
|
||||||
"a": 1,
|
|
||||||
"hsvHue": -1,
|
|
||||||
"hsvSaturation": 0,
|
|
||||||
"hsvValue": 1,
|
|
||||||
"hslHue": -1,
|
|
||||||
"hslSaturation": 0,
|
|
||||||
"hslLightness": 1,
|
|
||||||
"valid": true
|
|
||||||
},
|
|
||||||
"systemMonitorShowCpu": true,
|
|
||||||
"systemMonitorShowCpuGraph": true,
|
|
||||||
"systemMonitorShowCpuTemp": true,
|
|
||||||
"systemMonitorShowGpuTemp": false,
|
|
||||||
"systemMonitorGpuPciId": "",
|
|
||||||
"systemMonitorShowMemory": true,
|
|
||||||
"systemMonitorShowMemoryGraph": true,
|
|
||||||
"systemMonitorShowNetwork": true,
|
|
||||||
"systemMonitorShowNetworkGraph": true,
|
|
||||||
"systemMonitorShowDisk": true,
|
|
||||||
"systemMonitorShowTopProcesses": false,
|
|
||||||
"systemMonitorTopProcessCount": 3,
|
|
||||||
"systemMonitorTopProcessSortBy": "cpu",
|
|
||||||
"systemMonitorGraphInterval": 60,
|
|
||||||
"systemMonitorLayoutMode": "auto",
|
|
||||||
"systemMonitorX": -1,
|
|
||||||
"systemMonitorY": -1,
|
|
||||||
"systemMonitorWidth": 320,
|
|
||||||
"systemMonitorHeight": 480,
|
|
||||||
"systemMonitorDisplayPreferences": [
|
|
||||||
"all"
|
|
||||||
],
|
|
||||||
"systemMonitorVariants": [],
|
|
||||||
"desktopWidgetPositions": {},
|
|
||||||
"desktopWidgetGridSettings": {},
|
|
||||||
"desktopWidgetInstances": [],
|
|
||||||
"desktopWidgetGroups": [],
|
|
||||||
"builtInPluginSettings": {
|
|
||||||
"dms_settings_search": {
|
|
||||||
"trigger": "?"
|
|
||||||
},
|
|
||||||
"dms_notepad": {
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
"dms_clipboard_search": {
|
|
||||||
"trigger": "cb"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"clipboardClickToPaste": false,
|
|
||||||
"clipboardEnterToPaste": false,
|
|
||||||
"clipboardRememberTypeFilter": false,
|
|
||||||
"clipboardTypeFilter": "all",
|
|
||||||
"clipboardVisibleEntryActions": [
|
|
||||||
"pin",
|
|
||||||
"edit",
|
|
||||||
"delete"
|
|
||||||
],
|
|
||||||
"launcherPluginVisibility": {},
|
|
||||||
"launcherPluginOrder": [],
|
|
||||||
"frameEnabled": false,
|
|
||||||
"frameThickness": 16,
|
|
||||||
"frameRounding": 23,
|
|
||||||
"frameColor": "",
|
|
||||||
"frameOpacity": 1,
|
|
||||||
"frameScreenPreferences": [
|
|
||||||
"all"
|
|
||||||
],
|
|
||||||
"frameBarSize": 40,
|
|
||||||
"frameShowOnOverview": false,
|
|
||||||
"frameBlurEnabled": true,
|
|
||||||
"frameCloseGaps": true,
|
|
||||||
"frameLauncherEmergeSide": "bottom",
|
|
||||||
"frameLauncherArcExtender": false,
|
|
||||||
"frameLauncherEdgeHover": false,
|
|
||||||
"frameMode": "connected",
|
|
||||||
"barInsetPaddingShared": -1,
|
|
||||||
"barInsetPaddingSyncAll": false,
|
|
||||||
"frameBarInsetPadding": -1,
|
|
||||||
"configVersion": 13
|
|
||||||
}
|
|
||||||
@@ -22,6 +22,11 @@ if ! [[ -f ~/.config/janishutz/platform ]]; then
|
|||||||
fi
|
fi
|
||||||
echo "$platform" >~/.config/janishutz/platform
|
echo "$platform" >~/.config/janishutz/platform
|
||||||
echo "n" >~/.config/janishutz/docked
|
echo "n" >~/.config/janishutz/docked
|
||||||
|
else
|
||||||
|
platform=$(cat ~/.config/janishutz/platform)
|
||||||
|
if [ $platform == "l" ]; then
|
||||||
|
sed --in-place 's/dpi: 100/dpi: 160' ~/.config/rofi/config.rasi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
confirmation=""
|
confirmation=""
|
||||||
|
|||||||
Reference in New Issue
Block a user