Commit Graph
1372 Commits
Author SHA1 Message Date
LemmyCook dfd7edc540 Settings: better default folder for wallpapers and videos 2025-09-02 19:55:06 -04:00
Ly-sec ac65d19809 Merge branch 'main' of https://github.com/noctalia-dev/noctalia-shell 2025-09-02 20:09:44 +02:00
Ly-sec 520da3e915 Replace NTextInput with NComboBox for font settings
FontService: use Qt.fontFamilies to grab available fonts and split Mono
fonts
NComboBox: allow height changes
GeneralTab: replace NTextInput with NComboBox
2025-09-02 20:07:10 +02:00
LemmyCook d79011355c Dock: Fixed dock autohide when bar is at the bottom. 2025-09-02 13:35:24 -04:00
LemmyCook 5859270ad0 Merge branch 'main' of github.com:noctalia-dev/noctalia-shell 2025-09-02 13:06:12 -04:00
LemmyCook 26dc143b1d Dock: allow clicking outside of the dock on the left and right side 2025-09-02 13:06:10 -04:00
LemmyandGitHub 76a8e644e0 Update README.md 2025-09-02 12:10:35 -04:00
Ly-sec 8d05cb9f3b README: fix small typo 2025-09-02 17:20:30 +02:00
Ly-sec 7f5d70bcc8 Merge branch 'main' of https://github.com/noctalia-dev/noctalia-shell v2.4.0 2025-09-02 17:03:36 +02:00
Ly-sec eea1586772 Added distro logo (for SidePanel widget)
BarTab: add toggle for distro logo replacement
DistroLogoService: handle all logo detection logic
SidePanelToggle: add support for distro logo
WidgetLoader: fix small issue with with screen null warning
2025-09-02 17:01:38 +02:00
LemmyandGitHub 6740959866 Update README.md - Cleaned IPC calls area. 2025-09-02 10:50:57 -04:00
LemmyandGitHub f9c1fa78aa Update README.md - added DarkMode IPC calls 2025-09-02 10:42:39 -04:00
LemmyCook f385b24e8c IPC: added darkMode control
"call darkMode toggle"
"call darkMode setDark"
"call darkMode setLight"
2025-09-02 10:40:47 -04:00
LemmyCook 508c1407be DarkModeToggle: new bar widget 2025-09-02 10:34:05 -04:00
LemmyCook b908dc0ed2 Merge branch 'main' of github.com:noctalia-dev/noctalia-shell 2025-09-02 08:51:10 -04:00
LemmyCook 6c041fb27f Settings: minor UI improvements 2025-09-02 08:51:08 -04:00
LemmyCook 63a545736c WeatherCard: minor UI improvements (colors and size) 2025-09-02 08:48:24 -04:00
Ly-sec 91b355689c Wallpaper: add ipc call to set new random wallpaper 2025-09-02 14:42:04 +02:00
Ly-sec 3e598cf1cd UtilitiesCard: close SidePanel when we start recording 2025-09-02 14:37:54 +02:00
Ly-sec 9781005a21 Added Thumbnail to ClipboardHistory images, fix keyboard navigation
ClipboardHistory: Add image thumbnail, fix navigation viewport
Launcher: replace TextField with NTextInput
2025-09-02 14:32:02 +02:00
LemmyCook 468272d4c9 NColorPicker: added theme colors to the first row of the palette. 2025-09-01 22:38:01 -04:00
LemmyCook d5e83aa9de Wallpaper: added fill color that may show up around wallpaper (depends on fillMode)
+ New Widget NColorPicker
+ New Widget NButton
2025-09-01 22:27:49 -04:00
LemmyCook 69a5f0c2c0 Merge branch 'main' of github.com:noctalia-dev/noctalia-shell 2025-09-01 21:30:40 -04:00
LemmyCook f9194dd741 Wallpaper: added fillMode to all shaders (no, crop, fit, stretch) 2025-09-01 21:30:38 -04:00
Ly-sec fff7cbde22 Merge branch 'main' of https://github.com/noctalia-dev/noctalia-shell 2025-09-02 02:11:38 +02:00
Ly-sec b796a00374 Add proper check if cliphist is available
CliphistService: Check if cliphist is available, if not do not spam logs
2025-09-02 02:10:20 +02:00
LemmyCook cb7b1d92c6 Wallpaper: improved over conditional wallpaper management
- hide all wallpaper settings if feature is disabled
- hide wallpaper selector if feature is disabled
- hide quick access wallpaper if feature is disabled
2025-09-01 19:58:05 -04:00
LemmyCook fac72b257c Recompiled stripes shader 2025-09-01 19:56:43 -04:00
LemmyandGitHub e6a1bc6e27 Merge pull request #189 from lonerOrz/feat/wallpaper
Added a toggle for Noctalia-shell wallpaper management
2025-09-01 19:34:47 -04:00
Ly-sec 65794b52ec Fix double click on SidePanel to close
NPanel: remove WlrLayershell.keyboardFocus.OnDemand, only add it to
specific panels.
2025-09-01 23:57:51 +02:00
LemmyCook 9a4317739b SettingsPanel: better var naming v2.3.4 2025-09-01 15:16:28 -04:00
LemmyCook de32b86f7c SettingsPanel: Improved auto-sizing so it should work well on large and small screens 2025-09-01 15:11:37 -04:00
LemmyCook 5a1faa0fd4 SettingsPanel: ensure we never clip screen height 2025-09-01 15:08:15 -04:00
LemmyCook 57d912efc8 Toast: proper scaling + brought back assignation to WlrLayer.Overlay so its above all. 2025-09-01 15:03:30 -04:00
LemmyCook 87067f7062 TrayMenu: fix dynamic scaling 2025-09-01 14:41:12 -04:00
LemmyCook 210bbac583 ScalingService: 1st pass of the refactoring via signals instead of nested bindings for better efficienty and compatibility with old versions of Qt 2025-09-01 13:52:12 -04:00
loner 81d3bad747 fix: shader error
The shader compilation error occurred in wp_stripes.frag, which handles
the "stripes" wallpaper transition. The bug was
  caused by the modulo operator (%), which is not supported in the older
GLSL version your system is using for
  compilation.

  I fixed it by replacing the incompatible % operator with the standard
mod() function, which works across all GLSL
  versions.
2025-09-02 00:13:54 +08:00
loner 2ddb14a95f Added a toggle for Noctalia-shell wallpaper management 2025-09-02 00:13:54 +08:00
LemmyCook 934c8c61b3 WallpaperSelector: current wallpaper border is a real border not a huge colored rectangle. looks better when switching wallpaper 2025-09-01 11:14:19 -04:00
Ly-sec 459bb59dd5 NightLight: moved from DisplayTab to BrightnessTab 2025-09-01 15:37:25 +02:00
LemmyCook f1c9ed9caa Merge branch 'main' of github.com:noctalia-dev/noctalia-shell 2025-09-01 09:30:55 -04:00
LemmyCook 5d950b0a5e LightMode: better overview and transparency 2025-09-01 09:30:51 -04:00
Ly-sec 6f78079bc5 UtilitiesCard WallpaperSelector: add right click to choose random
wallpaper
2025-09-01 15:15:59 +02:00
LemmyCook e3d62388f7 Merge branch 'main' of github.com:noctalia-dev/noctalia-shell 2025-09-01 09:07:25 -04:00
LemmyCook 5fef9cfe6b WallpaperService: refactored to a simpler signal based approach. 2025-09-01 09:07:23 -04:00
Ly-sec 4a4bec5aec Add support for user based templates (~/.config/matugen/config.toml) as
requested in #185
MatugenService: add logic to scan for the matugen config.toml
ColorSchemeTab: add NCheckbox to toggle user based templates
2025-09-01 14:54:01 +02:00
Ly-sec 4193d3c87c Remove test-microphone.sh 2025-09-01 14:24:59 +02:00
Ly-sec 0fd83498ea Create Microphone widget as requested in #180
Microphone: hook up microphone functionallity to bar widget
2025-09-01 14:22:45 +02:00
Ly-sec 00c94755c5 Replace Mask ScreenCorners with Canvas
ScreenCorners: replace Mask with Canvas, RAM usage seems fine
2025-09-01 14:06:16 +02:00
quadbyte e8c2042290 Settings: better looking settings panel on 1080p v2.3.3 2025-09-01 00:15:49 -04:00