this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add niri and noctalia configuration files

+1047
+32
niri/.config/niri/cfg/animation.kdl
··· 1 + animations { 2 + workspace-switch { 3 + spring damping-ratio=1.0 stiffness=1000 epsilon=0.0001 4 + } 5 + window-open { 6 + duration-ms 200 7 + curve "ease-out-quad" 8 + } 9 + window-close { 10 + duration-ms 200 11 + curve "ease-out-cubic" 12 + } 13 + horizontal-view-movement { 14 + spring damping-ratio=1.0 stiffness=900 epsilon=0.0001 15 + } 16 + window-movement { 17 + spring damping-ratio=1.0 stiffness=800 epsilon=0.0001 18 + } 19 + window-resize { 20 + spring damping-ratio=1.0 stiffness=1000 epsilon=0.0001 21 + } 22 + config-notification-open-close { 23 + spring damping-ratio=0.6 stiffness=1200 epsilon=0.001 24 + } 25 + screenshot-ui-open { 26 + duration-ms 300 27 + curve "ease-out-quad" 28 + } 29 + overview-open-close { 30 + spring damping-ratio=1.0 stiffness=900 epsilon=0.0001 31 + } 32 + }
+1
niri/.config/niri/cfg/autostart.kdl
··· 1 + spawn-sh-at-startup "qs -c noctalia-shell"
+4
niri/.config/niri/cfg/display.kdl
··· 1 + output "DP-2" { 2 + mode "2560x1440@300" 3 + scale 1 4 + }
+21
niri/.config/niri/cfg/input.kdl
··· 1 + input { 2 + keyboard { 3 + xkb { 4 + layout "us" 5 + } 6 + numlock 7 + } 8 + 9 + touchpad { 10 + tap 11 + natural-scroll 12 + } 13 + 14 + mouse { 15 + accel-profile "flat" 16 + accel-speed 0.0 17 + } 18 + 19 + focus-follows-mouse 20 + workspace-auto-back-and-forth 21 + }
+122
niri/.config/niri/cfg/keybinds.kdl
··· 1 + binds { 2 + Mod+Shift+ESCAPE { show-hotkey-overlay; } 3 + 4 + // ─── Applications ─── 5 + Mod+Return hotkey-overlay-title="Open Terminal: Ghostty" { spawn "ghostty"; } 6 + Mod+D hotkey-overlay-title="Open App Launcher: noctalia launcher" { spawn-sh "qs -c noctalia-shell ipc call launcher toggle"; } 7 + Mod+B hotkey-overlay-title="Open Browser: Helium Browser" { spawn "helium-browser"; } 8 + Mod+ALT+L hotkey-overlay-title="Lock Screen: noctalia lock" { spawn-sh "qs -c noctalia-shell ipc call lockScreen lock"; } 9 + Mod+Shift+Q hotkey-overlay-title="Session Menu: noctalia sessionMenu" { spawn-sh "qs -c noctalia-shell ipc call sessionMenu toggle"; } 10 + 11 + // Please choose your own file manager. 12 + Mod+E hotkey-overlay-title="File Manager: Nautilus" { spawn "nautilus"; } 13 + 14 + // ─── Media Controls ─── 15 + XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call volume increase"; } 16 + XF86AudioLowerVolume allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call volume decrease"; } 17 + XF86AudioMute allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call volume muteOutput"; } 18 + XF86AudioMicMute allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call volume muteInput"; } 19 + XF86AudioNext allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call media next"; } 20 + XF86AudioPrev allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call media previous"; } 21 + XF86AudioPlay allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call media playPause"; } 22 + XF86AudioPause allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call media playPause"; } 23 + 24 + // ─── Brightness Controls ─── 25 + XF86MonBrightnessUp allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call brightness increase"; } 26 + XF86MonBrightnessDown allow-when-locked=true { spawn-sh "qs -c noctalia-shell ipc call brightness decrease"; } 27 + 28 + // ─── Window Movement and Focus ─── 29 + Mod+Q { close-window; } 30 + 31 + Mod+H { focus-column-left; } 32 + Mod+J { focus-window-down; } 33 + Mod+K { focus-window-up; } 34 + Mod+L { focus-column-right; } 35 + 36 + Mod+CTRL+H { move-column-left; } 37 + Mod+CTRL+J { move-window-down; } 38 + Mod+CTRL+K { move-window-up; } 39 + Mod+CTRL+L { move-column-right; } 40 + 41 + Mod+Home { focus-column-first; } 42 + Mod+End { focus-column-last; } 43 + Mod+CTRL+Home { move-column-to-first; } 44 + Mod+CTRL+End { move-column-to-last; } 45 + 46 + Mod+Shift+Left { focus-monitor-left; } 47 + Mod+Shift+Right { focus-monitor-right; } 48 + Mod+Shift+UP { focus-monitor-up; } 49 + Mod+Shift+Down { focus-monitor-down; } 50 + 51 + Mod+Shift+CTRL+Left { move-column-to-monitor-left; } 52 + Mod+Shift+CTRL+Right { move-column-to-monitor-right; } 53 + Mod+Shift+CTRL+UP { move-column-to-monitor-up; } 54 + Mod+Shift+CTRL+Down { move-column-to-monitor-down; } 55 + 56 + // ─── Workspace Switching ─── 57 + Mod+WheelScrollDown cooldown-ms=150 { focus-workspace-down; } 58 + Mod+WheelScrollUp cooldown-ms=150 { focus-workspace-up; } 59 + Mod+CTRL+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; } 60 + Mod+CTRL+WheelScrollUp cooldown-ms=150 { move-column-to-workspace-up; } 61 + 62 + Mod+WheelScrollRight { focus-column-right; } 63 + Mod+WheelScrollLeft { focus-column-left; } 64 + Mod+CTRL+WheelScrollRight { move-column-right; } 65 + Mod+CTRL+WheelScrollLeft { move-column-left; } 66 + 67 + Mod+Shift+WheelScrollDown { focus-column-right; } 68 + Mod+Shift+WheelScrollUp { focus-column-left; } 69 + Mod+CTRL+Shift+WheelScrollDown { move-column-right; } 70 + Mod+CTRL+Shift+WheelScrollUp { move-column-left; } 71 + 72 + Mod+1 { focus-workspace 1; } 73 + Mod+2 { focus-workspace 2; } 74 + Mod+3 { focus-workspace 3; } 75 + Mod+4 { focus-workspace 4; } 76 + Mod+5 { focus-workspace 5; } 77 + Mod+6 { focus-workspace 6; } 78 + Mod+7 { focus-workspace 7; } 79 + Mod+8 { focus-workspace 8; } 80 + Mod+9 { focus-workspace 9; } 81 + 82 + Mod+CTRL+1 { move-column-to-workspace 1; } 83 + Mod+CTRL+2 { move-column-to-workspace 2; } 84 + Mod+CTRL+3 { move-column-to-workspace 3; } 85 + Mod+CTRL+4 { move-column-to-workspace 4; } 86 + Mod+CTRL+5 { move-column-to-workspace 5; } 87 + Mod+CTRL+6 { move-column-to-workspace 6; } 88 + Mod+CTRL+7 { move-column-to-workspace 7; } 89 + Mod+CTRL+8 { move-column-to-workspace 8; } 90 + Mod+CTRL+9 { move-column-to-workspace 9; } 91 + 92 + Mod+TAB { focus-workspace-previous; } 93 + 94 + // ─── Layout Controls ─── 95 + Mod+CTRL+F { expand-column-to-available-width; } 96 + Mod+C { center-column; } 97 + Mod+CTRL+C { center-visible-columns; } 98 + Mod+Minus { set-column-width "-10%"; } 99 + Mod+Equal { set-column-width "+10%"; } 100 + Mod+Shift+Minus { set-window-height "-10%"; } 101 + Mod+Shift+Equal { set-window-height "+10%"; } 102 + 103 + // ─── Modes ─── 104 + Mod+T { toggle-window-floating; } 105 + Mod+F { fullscreen-window; } 106 + Mod+W { toggle-column-tabbed-display; } 107 + 108 + // ─── Screenshots ─── 109 + CTRL+Shift+1 { screenshot; } 110 + CTRL+Shift+2 { screenshot-screen; } 111 + CTRL+Shift+3 { screenshot-window; } 112 + 113 + // ─── Emergency Escape Key ─── 114 + // Use this when a fullscreen app blocks your keybinds. 115 + // It disables any active keyboard shortcut inhibitor, restoring control. 116 + Mod+ESCAPE allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; } 117 + 118 + // ─── Exit / Power ─── 119 + CTRL+ALT+Delete { quit; } // Also quits Niri 120 + Mod+Shift+P { power-off-monitors; } // Turn off screens (useful for OLED or privacy) 121 + Mod+O repeat=false { toggle-overview; } 122 + }
+18
niri/.config/niri/cfg/layout.kdl
··· 1 + layout { 2 + gaps 8 3 + center-focused-column "never" 4 + 5 + background-color "transparent" 6 + 7 + preset-column-widths { 8 + proportion 0.33333 9 + proportion 0.5 10 + proportion 0.66667 11 + } 12 + 13 + struts {} 14 + 15 + focus-ring { 16 + off 17 + } 18 + }
+24
niri/.config/niri/cfg/misc.kdl
··· 1 + prefer-no-csd 2 + screenshot-path null 3 + 4 + environment { 5 + ELECTRON_OZONE_PLATFORM_HINT "auto" 6 + QT_QPA_PLATFORM "wayland" 7 + QT_QPA_PLATFORMTHEME "gtk3" 8 + QT_WAYLAND_DISABLE_WINDOWDECORATION "1" 9 + XDG_CURRENT_DESKTOP "niri" 10 + XDG_SESSION_TYPE "wayland" 11 + } 12 + 13 + cursor { 14 + xcursor-theme "capitaine-cursors" 15 + xcursor-size 24 16 + } 17 + 18 + debug { 19 + honor-xdg-activation-with-invalid-serial 20 + } 21 + 22 + hotkey-overlay { 23 + skip-at-startup 24 + }
+21
niri/.config/niri/cfg/rules.kdl
··· 1 + window-rule { 2 + geometry-corner-radius 16 3 + clip-to-geometry true 4 + } 5 + 6 + window-rule { 7 + match app-id="steam" 8 + exclude title=r#"^[Ss]team$"# 9 + open-floating true 10 + } 11 + 12 + window-rule { 13 + match app-id="steam" title=r#"^notificationtoasts_\d+_desktop$"# 14 + default-floating-position x=10 y=10 relative-to="bottom-right" 15 + open-focused false 16 + } 17 + 18 + layer-rule { 19 + match namespace="^noctalia-wallpaper*" 20 + place-within-backdrop true 21 + }
+8
niri/.config/niri/config.kdl
··· 1 + include "./cfg/animation.kdl" 2 + include "./cfg/autostart.kdl" 3 + include "./cfg/keybinds.kdl" 4 + include "./cfg/input.kdl" 5 + include "./cfg/display.kdl" 6 + include "./cfg/layout.kdl" 7 + include "./cfg/rules.kdl" 8 + include "./cfg/misc.kdl"
+18
noctalia/.config/noctalia/colors.json
··· 1 + { 2 + "mError": "#ff8080", 3 + "mHover": "#282828", 4 + "mOnError": "#000000", 5 + "mOnHover": "#ffffff", 6 + "mOnPrimary": "#000000", 7 + "mOnSecondary": "#000000", 8 + "mOnSurface": "#ffffff", 9 + "mOnSurfaceVariant": "#a0a0a0", 10 + "mOnTertiary": "#000000", 11 + "mOutline": "#505050", 12 + "mPrimary": "#ffc799", 13 + "mSecondary": "#99ffe4", 14 + "mShadow": "#000000", 15 + "mSurface": "#0c0c0c", 16 + "mSurfaceVariant": "#1c1c1c", 17 + "mTertiary": "#fbadff" 18 + }
+94
noctalia/.config/noctalia/colorschemes/Vesper/Vesper.json
··· 1 + { 2 + "dark": { 3 + "mPrimary": "#FFC799", 4 + "mOnPrimary": "#000000", 5 + "mSecondary": "#99FFE4", 6 + "mOnSecondary": "#000000", 7 + "mTertiary": "#FBADFF", 8 + "mOnTertiary": "#000000", 9 + "mError": "#FF8080", 10 + "mOnError": "#000000", 11 + "mSurface": "#0C0C0C", 12 + "mOnSurface": "#FFFFFF", 13 + "mSurfaceVariant": "#1C1C1C", 14 + "mOnSurfaceVariant": "#A0A0A0", 15 + "mOutline": "#505050", 16 + "mShadow": "#000000", 17 + "mHover": "#282828", 18 + "mOnHover": "#FFFFFF", 19 + "terminal": { 20 + "foreground": "#FFFFFF", 21 + "background": "#0C0C0C", 22 + "normal": { 23 + "black": "#0C0C0C", 24 + "red": "#FF8080", 25 + "green": "#99FFE4", 26 + "yellow": "#FFC799", 27 + "blue": "#80B3FF", 28 + "magenta": "#FBADFF", 29 + "cyan": "#99FFE4", 30 + "white": "#A0A0A0" 31 + }, 32 + "bright": { 33 + "black": "#505050", 34 + "red": "#FF8080", 35 + "green": "#99FFE4", 36 + "yellow": "#FFC799", 37 + "blue": "#80B3FF", 38 + "magenta": "#FBADFF", 39 + "cyan": "#99FFE4", 40 + "white": "#FFFFFF" 41 + }, 42 + "cursor": "#FFFFFF", 43 + "cursorText": "#000000", 44 + "selectionFg": "#000000", 45 + "selectionBg": "#FFC799" 46 + } 47 + }, 48 + "light": { 49 + "mPrimary": "#FFB170", 50 + "mOnPrimary": "#0C0C0C", 51 + "mSecondary": "#00CC99", 52 + "mOnSecondary": "#0C0C0C", 53 + "mTertiary": "#FBADFF", 54 + "mOnTertiary": "#0C0C0C", 55 + "mError": "#FF8080", 56 + "mOnError": "#0C0C0C", 57 + "mSurface": "#F2F2F2", 58 + "mOnSurface": "#0C0C0C", 59 + "mSurfaceVariant": "#E5E5E5", 60 + "mOnSurfaceVariant": "#282828", 61 + "mOutline": "#505050", 62 + "mShadow": "#D9D9D9", 63 + "mHover": "#E0E0E0", 64 + "mOnHover": "#0C0C0C", 65 + "terminal": { 66 + "foreground": "#0C0C0C", 67 + "background": "#F2F2F2", 68 + "normal": { 69 + "black": "#F2F2F2", 70 + "red": "#FF8080", 71 + "green": "#00CC99", 72 + "yellow": "#FFC799", 73 + "blue": "#004A77", 74 + "magenta": "#FBADFF", 75 + "cyan": "#006B57", 76 + "white": "#505050" 77 + }, 78 + "bright": { 79 + "black": "#A0A0A0", 80 + "red": "#FF8080", 81 + "green": "#00CC99", 82 + "yellow": "#FFC799", 83 + "blue": "#80B3FF", 84 + "magenta": "#FBADFF", 85 + "cyan": "#99FFE4", 86 + "white": "#0C0C0C" 87 + }, 88 + "cursor": "#0C0C0C", 89 + "cursorText": "#F2F2F2", 90 + "selectionFg": "#F2F2F2", 91 + "selectionBg": "#FFC799" 92 + } 93 + } 94 + }
+16
noctalia/.config/noctalia/plugins.json
··· 1 + { 2 + "sources": [ 3 + { 4 + "enabled": true, 5 + "name": "Noctalia Plugins", 6 + "url": "https://github.com/noctalia-dev/noctalia-plugins" 7 + } 8 + ], 9 + "states": { 10 + "polkit-agent": { 11 + "enabled": true, 12 + "sourceUrl": "https://github.com/noctalia-dev/noctalia-plugins" 13 + } 14 + }, 15 + "version": 2 16 + }
+668
noctalia/.config/noctalia/settings.json
··· 1 + { 2 + "appLauncher": { 3 + "autoPasteClipboard": false, 4 + "clipboardWatchImageCommand": "wl-paste --type image --watch cliphist store", 5 + "clipboardWatchTextCommand": "wl-paste --type text --watch cliphist store", 6 + "clipboardWrapText": true, 7 + "customLaunchPrefix": "", 8 + "customLaunchPrefixEnabled": false, 9 + "density": "compact", 10 + "enableClipPreview": true, 11 + "enableClipboardChips": true, 12 + "enableClipboardHistory": false, 13 + "enableClipboardSmartIcons": true, 14 + "enableSessionSearch": true, 15 + "enableSettingsSearch": true, 16 + "enableWindowsSearch": true, 17 + "iconMode": "tabler", 18 + "ignoreMouseInput": false, 19 + "overviewLayer": true, 20 + "pinnedApps": [ 21 + "helium", 22 + "com.mitchellh.ghostty" 23 + ], 24 + "position": "center", 25 + "screenshotAnnotationTool": "", 26 + "showCategories": false, 27 + "showIconBackground": false, 28 + "sortByMostUsed": true, 29 + "terminalCommand": "alacritty -e", 30 + "viewMode": "list" 31 + }, 32 + "audio": { 33 + "mprisBlacklist": [ 34 + ], 35 + "preferredPlayer": "", 36 + "spectrumFrameRate": 30, 37 + "spectrumMirrored": true, 38 + "visualizerType": "linear", 39 + "volumeFeedback": false, 40 + "volumeFeedbackSoundFile": "", 41 + "volumeOverdrive": false, 42 + "volumeStep": 5 43 + }, 44 + "bar": { 45 + "autoHideDelay": 500, 46 + "autoShowDelay": 150, 47 + "backgroundOpacity": 0.93, 48 + "barType": "floating", 49 + "capsuleColorKey": "none", 50 + "capsuleOpacity": 1, 51 + "contentPadding": 2, 52 + "density": "default", 53 + "displayMode": "always_visible", 54 + "enableExclusionZoneInset": true, 55 + "fontScale": 1, 56 + "frameRadius": 12, 57 + "frameThickness": 8, 58 + "hideOnOverview": false, 59 + "marginHorizontal": 4, 60 + "marginVertical": 4, 61 + "middleClickAction": "none", 62 + "middleClickCommand": "", 63 + "middleClickFollowMouse": false, 64 + "monitors": [ 65 + ], 66 + "mouseWheelAction": "none", 67 + "mouseWheelWrap": true, 68 + "outerCorners": true, 69 + "position": "bottom", 70 + "reverseScroll": false, 71 + "rightClickAction": "controlCenter", 72 + "rightClickCommand": "", 73 + "rightClickFollowMouse": true, 74 + "screenOverrides": [ 75 + ], 76 + "showCapsule": true, 77 + "showOnWorkspaceSwitch": true, 78 + "showOutline": false, 79 + "useSeparateOpacity": false, 80 + "widgetSpacing": 6, 81 + "widgets": { 82 + "center": [ 83 + { 84 + "characterCount": 2, 85 + "colorizeIcons": false, 86 + "emptyColor": "secondary", 87 + "enableScrollWheel": true, 88 + "focusedColor": "primary", 89 + "followFocusedScreen": false, 90 + "fontWeight": "bold", 91 + "groupedBorderOpacity": 1, 92 + "hideUnoccupied": false, 93 + "iconScale": 0.8, 94 + "id": "Workspace", 95 + "labelMode": "index", 96 + "occupiedColor": "secondary", 97 + "pillSize": 0.6, 98 + "showApplications": false, 99 + "showApplicationsHover": false, 100 + "showBadge": true, 101 + "showLabelsOnlyWhenOccupied": true, 102 + "unfocusedIconsOpacity": 1 103 + } 104 + ], 105 + "left": [ 106 + { 107 + "colorizeSystemIcon": "none", 108 + "colorizeSystemText": "none", 109 + "customIconPath": "", 110 + "enableColorization": false, 111 + "icon": "rocket", 112 + "iconColor": "none", 113 + "id": "Launcher", 114 + "useDistroLogo": false 115 + }, 116 + { 117 + "clockColor": "none", 118 + "customFont": "", 119 + "formatHorizontal": "HH:mm ddd, MMM dd", 120 + "formatVertical": "HH mm - dd MM", 121 + "id": "Clock", 122 + "tooltipFormat": "HH:mm ddd, MMM dd", 123 + "useCustomFont": false 124 + }, 125 + { 126 + "colorizeIcons": false, 127 + "hideMode": "hidden", 128 + "id": "ActiveWindow", 129 + "maxWidth": 145, 130 + "scrollingMode": "hover", 131 + "showIcon": true, 132 + "showText": true, 133 + "textColor": "none", 134 + "useFixedWidth": false 135 + }, 136 + { 137 + "compactMode": false, 138 + "hideMode": "hidden", 139 + "hideWhenIdle": false, 140 + "id": "MediaMini", 141 + "maxWidth": 145, 142 + "panelShowAlbumArt": true, 143 + "scrollingMode": "hover", 144 + "showAlbumArt": true, 145 + "showArtistFirst": true, 146 + "showProgressRing": true, 147 + "showVisualizer": false, 148 + "textColor": "none", 149 + "useFixedWidth": false, 150 + "visualizerType": "linear" 151 + } 152 + ], 153 + "right": [ 154 + { 155 + "blacklist": [ 156 + ], 157 + "chevronColor": "none", 158 + "colorizeIcons": false, 159 + "drawerEnabled": false, 160 + "hidePassive": true, 161 + "id": "Tray", 162 + "pinned": [ 163 + "1Password" 164 + ] 165 + }, 166 + { 167 + "hideWhenZero": false, 168 + "hideWhenZeroUnread": false, 169 + "iconColor": "none", 170 + "id": "NotificationHistory", 171 + "showUnreadBadge": true, 172 + "unreadBadgeColor": "primary" 173 + }, 174 + { 175 + "displayMode": "onhover", 176 + "iconColor": "none", 177 + "id": "Volume", 178 + "middleClickCommand": "pwvucontrol || pavucontrol", 179 + "textColor": "none" 180 + }, 181 + { 182 + "colorizeDistroLogo": false, 183 + "colorizeSystemIcon": "none", 184 + "colorizeSystemText": "none", 185 + "customIconPath": "", 186 + "enableColorization": false, 187 + "icon": "noctalia", 188 + "id": "ControlCenter", 189 + "useDistroLogo": false 190 + } 191 + ] 192 + } 193 + }, 194 + "brightness": { 195 + "backlightDeviceMappings": [ 196 + ], 197 + "brightnessStep": 5, 198 + "enableDdcSupport": false, 199 + "enforceMinimum": true 200 + }, 201 + "calendar": { 202 + "cards": [ 203 + { 204 + "enabled": true, 205 + "id": "calendar-header-card" 206 + }, 207 + { 208 + "enabled": true, 209 + "id": "calendar-month-card" 210 + }, 211 + { 212 + "enabled": true, 213 + "id": "weather-card" 214 + } 215 + ] 216 + }, 217 + "colorSchemes": { 218 + "darkMode": true, 219 + "generationMethod": "tonal-spot", 220 + "manualSunrise": "06:30", 221 + "manualSunset": "18:30", 222 + "monitorForColors": "", 223 + "predefinedScheme": "Vesper", 224 + "schedulingMode": "off", 225 + "syncGsettings": true, 226 + "useWallpaperColors": false 227 + }, 228 + "controlCenter": { 229 + "cards": [ 230 + { 231 + "enabled": true, 232 + "id": "profile-card" 233 + }, 234 + { 235 + "enabled": true, 236 + "id": "shortcuts-card" 237 + }, 238 + { 239 + "enabled": true, 240 + "id": "audio-card" 241 + }, 242 + { 243 + "enabled": false, 244 + "id": "brightness-card" 245 + }, 246 + { 247 + "enabled": true, 248 + "id": "weather-card" 249 + }, 250 + { 251 + "enabled": true, 252 + "id": "media-sysmon-card" 253 + } 254 + ], 255 + "diskPath": "/", 256 + "position": "close_to_bar_button", 257 + "shortcuts": { 258 + "left": [ 259 + { 260 + "id": "Network" 261 + }, 262 + { 263 + "id": "Bluetooth" 264 + }, 265 + { 266 + "id": "WallpaperSelector" 267 + }, 268 + { 269 + "id": "NoctaliaPerformance" 270 + } 271 + ], 272 + "right": [ 273 + { 274 + "id": "Notifications" 275 + }, 276 + { 277 + "id": "PowerProfile" 278 + }, 279 + { 280 + "id": "KeepAwake" 281 + }, 282 + { 283 + "id": "NightLight" 284 + } 285 + ] 286 + } 287 + }, 288 + "desktopWidgets": { 289 + "enabled": false, 290 + "gridSnap": false, 291 + "gridSnapScale": false, 292 + "monitorWidgets": [ 293 + ], 294 + "overviewEnabled": true 295 + }, 296 + "dock": { 297 + "animationSpeed": 1, 298 + "backgroundOpacity": 1, 299 + "colorizeIcons": false, 300 + "deadOpacity": 0.6, 301 + "displayMode": "auto_hide", 302 + "dockType": "floating", 303 + "enabled": false, 304 + "floatingRatio": 1, 305 + "groupApps": false, 306 + "groupClickAction": "cycle", 307 + "groupContextMenuMode": "extended", 308 + "groupIndicatorStyle": "dots", 309 + "inactiveIndicators": false, 310 + "indicatorColor": "primary", 311 + "indicatorOpacity": 0.6, 312 + "indicatorThickness": 3, 313 + "launcherIcon": "", 314 + "launcherIconColor": "none", 315 + "launcherPosition": "end", 316 + "launcherUseDistroLogo": false, 317 + "monitors": [ 318 + ], 319 + "onlySameOutput": true, 320 + "pinnedApps": [ 321 + ], 322 + "pinnedStatic": false, 323 + "position": "bottom", 324 + "showDockIndicator": false, 325 + "showLauncherIcon": false, 326 + "sitOnFrame": false, 327 + "size": 1 328 + }, 329 + "general": { 330 + "allowPanelsOnScreenWithoutBar": true, 331 + "allowPasswordWithFprintd": false, 332 + "animationDisabled": false, 333 + "animationSpeed": 1, 334 + "autoStartAuth": false, 335 + "avatarImage": "/home/jamesblair/.face", 336 + "boxRadiusRatio": 1, 337 + "clockFormat": "hh\\nmm", 338 + "clockStyle": "custom", 339 + "compactLockScreen": false, 340 + "dimmerOpacity": 0.2, 341 + "enableBlurBehind": true, 342 + "enableLockScreenCountdown": true, 343 + "enableLockScreenMediaControls": false, 344 + "enableShadows": false, 345 + "forceBlackScreenCorners": false, 346 + "iRadiusRatio": 1, 347 + "keybinds": { 348 + "keyDown": [ 349 + "Down" 350 + ], 351 + "keyEnter": [ 352 + "Return", 353 + "Enter" 354 + ], 355 + "keyEscape": [ 356 + "Esc" 357 + ], 358 + "keyLeft": [ 359 + "Left" 360 + ], 361 + "keyRemove": [ 362 + "Del" 363 + ], 364 + "keyRight": [ 365 + "Right" 366 + ], 367 + "keyUp": [ 368 + "Up" 369 + ] 370 + }, 371 + "language": "", 372 + "lockOnSuspend": true, 373 + "lockScreenAnimations": false, 374 + "lockScreenBlur": 0, 375 + "lockScreenCountdownDuration": 10000, 376 + "lockScreenMonitors": [ 377 + ], 378 + "lockScreenTint": 0, 379 + "passwordChars": false, 380 + "radiusRatio": 1, 381 + "reverseScroll": false, 382 + "scaleRatio": 1, 383 + "screenRadiusRatio": 1, 384 + "shadowDirection": "bottom_right", 385 + "shadowOffsetX": 2, 386 + "shadowOffsetY": 3, 387 + "showChangelogOnStartup": true, 388 + "showHibernateOnLockScreen": false, 389 + "showScreenCorners": false, 390 + "showSessionButtonsOnLockScreen": true, 391 + "smoothScrollEnabled": true, 392 + "telemetryEnabled": false 393 + }, 394 + "hooks": { 395 + "colorGeneration": "", 396 + "darkModeChange": "", 397 + "enabled": false, 398 + "performanceModeDisabled": "", 399 + "performanceModeEnabled": "", 400 + "screenLock": "", 401 + "screenUnlock": "", 402 + "session": "", 403 + "startup": "", 404 + "wallpaperChange": "" 405 + }, 406 + "idle": { 407 + "customCommands": "[]", 408 + "enabled": false, 409 + "fadeDuration": 5, 410 + "lockCommand": "", 411 + "lockTimeout": 660, 412 + "resumeLockCommand": "", 413 + "resumeScreenOffCommand": "", 414 + "resumeSuspendCommand": "", 415 + "screenOffCommand": "", 416 + "screenOffTimeout": 600, 417 + "suspendCommand": "", 418 + "suspendTimeout": 1800 419 + }, 420 + "location": { 421 + "analogClockInCalendar": false, 422 + "autoLocate": false, 423 + "firstDayOfWeek": -1, 424 + "hideWeatherCityName": false, 425 + "hideWeatherTimezone": false, 426 + "name": "Auckland", 427 + "showCalendarEvents": true, 428 + "showCalendarWeather": true, 429 + "showWeekNumberInCalendar": false, 430 + "use12hourFormat": false, 431 + "useFahrenheit": false, 432 + "weatherEnabled": true, 433 + "weatherShowEffects": true, 434 + "weatherTaliaMascotAlways": false 435 + }, 436 + "network": { 437 + "bluetoothAutoConnect": true, 438 + "bluetoothDetailsViewMode": "grid", 439 + "bluetoothHideUnnamedDevices": false, 440 + "bluetoothRssiPollIntervalMs": 60000, 441 + "bluetoothRssiPollingEnabled": false, 442 + "disableDiscoverability": false, 443 + "networkPanelView": "wifi", 444 + "wifiDetailsViewMode": "grid" 445 + }, 446 + "nightLight": { 447 + "autoSchedule": true, 448 + "dayTemp": "6500", 449 + "enabled": false, 450 + "forced": false, 451 + "manualSunrise": "06:30", 452 + "manualSunset": "18:30", 453 + "nightTemp": "4000" 454 + }, 455 + "noctaliaPerformance": { 456 + "disableDesktopWidgets": true, 457 + "disableWallpaper": true 458 + }, 459 + "notifications": { 460 + "backgroundOpacity": 1, 461 + "clearDismissed": true, 462 + "criticalUrgencyDuration": 15, 463 + "density": "default", 464 + "enableBatteryToast": true, 465 + "enableKeyboardLayoutToast": true, 466 + "enableMarkdown": false, 467 + "enableMediaToast": false, 468 + "enabled": true, 469 + "location": "top_right", 470 + "lowUrgencyDuration": 3, 471 + "monitors": [ 472 + ], 473 + "normalUrgencyDuration": 8, 474 + "overlayLayer": true, 475 + "respectExpireTimeout": false, 476 + "saveToHistory": { 477 + "critical": true, 478 + "low": true, 479 + "normal": true 480 + }, 481 + "sounds": { 482 + "criticalSoundFile": "", 483 + "enabled": false, 484 + "excludedApps": "discord,firefox,chrome,chromium,edge", 485 + "lowSoundFile": "", 486 + "normalSoundFile": "", 487 + "separateSounds": false, 488 + "volume": 0.5 489 + } 490 + }, 491 + "osd": { 492 + "autoHideMs": 2000, 493 + "backgroundOpacity": 1, 494 + "enabled": true, 495 + "enabledTypes": [ 496 + 0, 497 + 1, 498 + 2 499 + ], 500 + "location": "top_right", 501 + "monitors": [ 502 + ], 503 + "overlayLayer": true 504 + }, 505 + "plugins": { 506 + "autoUpdate": false, 507 + "notifyUpdates": true 508 + }, 509 + "sessionMenu": { 510 + "countdownDuration": 10000, 511 + "enableCountdown": true, 512 + "largeButtonsLayout": "single-row", 513 + "largeButtonsStyle": true, 514 + "position": "center", 515 + "powerOptions": [ 516 + { 517 + "action": "lock", 518 + "command": "", 519 + "countdownEnabled": true, 520 + "enabled": true, 521 + "keybind": "1" 522 + }, 523 + { 524 + "action": "suspend", 525 + "command": "", 526 + "countdownEnabled": true, 527 + "enabled": true, 528 + "keybind": "2" 529 + }, 530 + { 531 + "action": "hibernate", 532 + "command": "", 533 + "countdownEnabled": true, 534 + "enabled": true, 535 + "keybind": "3" 536 + }, 537 + { 538 + "action": "reboot", 539 + "command": "", 540 + "countdownEnabled": true, 541 + "enabled": true, 542 + "keybind": "4" 543 + }, 544 + { 545 + "action": "logout", 546 + "command": "", 547 + "countdownEnabled": true, 548 + "enabled": true, 549 + "keybind": "5" 550 + }, 551 + { 552 + "action": "shutdown", 553 + "command": "", 554 + "countdownEnabled": true, 555 + "enabled": true, 556 + "keybind": "6" 557 + }, 558 + { 559 + "action": "rebootToUefi", 560 + "command": "", 561 + "countdownEnabled": true, 562 + "enabled": true, 563 + "keybind": "7" 564 + }, 565 + { 566 + "action": "userspaceReboot", 567 + "command": "", 568 + "countdownEnabled": true, 569 + "enabled": false, 570 + "keybind": "" 571 + } 572 + ], 573 + "showHeader": true, 574 + "showKeybinds": true 575 + }, 576 + "settingsVersion": 59, 577 + "systemMonitor": { 578 + "batteryCriticalThreshold": 5, 579 + "batteryWarningThreshold": 20, 580 + "cpuCriticalThreshold": 90, 581 + "cpuWarningThreshold": 80, 582 + "criticalColor": "", 583 + "diskAvailCriticalThreshold": 10, 584 + "diskAvailWarningThreshold": 20, 585 + "diskCriticalThreshold": 90, 586 + "diskWarningThreshold": 80, 587 + "enableDgpuMonitoring": false, 588 + "externalMonitor": "resources || missioncenter || jdsystemmonitor || corestats || system-monitoring-center || gnome-system-monitor || plasma-systemmonitor || mate-system-monitor || ukui-system-monitor || deepin-system-monitor || pantheon-system-monitor", 589 + "gpuCriticalThreshold": 90, 590 + "gpuWarningThreshold": 80, 591 + "memCriticalThreshold": 90, 592 + "memWarningThreshold": 80, 593 + "swapCriticalThreshold": 90, 594 + "swapWarningThreshold": 80, 595 + "tempCriticalThreshold": 90, 596 + "tempWarningThreshold": 80, 597 + "useCustomColors": false, 598 + "warningColor": "" 599 + }, 600 + "templates": { 601 + "activeTemplates": [ 602 + ], 603 + "enableUserTheming": false 604 + }, 605 + "ui": { 606 + "boxBorderEnabled": false, 607 + "fontDefault": "Adwaita Sans", 608 + "fontDefaultScale": 1, 609 + "fontFixed": "monospace", 610 + "fontFixedScale": 1, 611 + "panelBackgroundOpacity": 0.93, 612 + "panelsAttachedToBar": true, 613 + "scrollbarAlwaysVisible": true, 614 + "settingsPanelMode": "attached", 615 + "settingsPanelSideBarCardStyle": false, 616 + "tooltipsEnabled": true, 617 + "translucentWidgets": false 618 + }, 619 + "wallpaper": { 620 + "automationEnabled": false, 621 + "directory": "/home/jamesblair/Pictures/Wallpapers", 622 + "enableMultiMonitorDirectories": false, 623 + "enabled": true, 624 + "favorites": [ 625 + ], 626 + "fillColor": "#000000", 627 + "fillMode": "crop", 628 + "hideWallpaperFilenames": false, 629 + "linkLightAndDarkWallpapers": true, 630 + "monitorDirectories": [ 631 + ], 632 + "overviewBlur": 0.4, 633 + "overviewEnabled": false, 634 + "overviewTint": 0.6, 635 + "panelPosition": "follow_bar", 636 + "randomIntervalSec": 300, 637 + "setWallpaperOnAllMonitors": true, 638 + "showHiddenFiles": false, 639 + "skipStartupTransition": false, 640 + "solidColor": "#1a1a2e", 641 + "sortOrder": "name", 642 + "transitionDuration": 1500, 643 + "transitionEdgeSmoothness": 0.05, 644 + "transitionType": [ 645 + "fade", 646 + "disc", 647 + "stripes", 648 + "wipe", 649 + "pixelate", 650 + "honeycomb" 651 + ], 652 + "useOriginalImages": false, 653 + "useSolidColor": false, 654 + "useWallhaven": false, 655 + "viewMode": "single", 656 + "wallhavenApiKey": "", 657 + "wallhavenCategories": "111", 658 + "wallhavenOrder": "desc", 659 + "wallhavenPurity": "100", 660 + "wallhavenQuery": "", 661 + "wallhavenRatios": "", 662 + "wallhavenResolutionHeight": "", 663 + "wallhavenResolutionMode": "atleast", 664 + "wallhavenResolutionWidth": "", 665 + "wallhavenSorting": "relevance", 666 + "wallpaperChangeMode": "random" 667 + } 668 + }