From 1cb1d5a1b907dd530fae41d279e2e532b5335673 Mon Sep 17 00:00:00 2001 From: rozodru Date: Sun, 20 Jul 2025 14:01:52 -0400 Subject: [PATCH] updated README.md and updated NEDM version --- README.md | 18 +++++++----------- meson.build | 4 ++-- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 6916225..a56007c 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,9 @@ NEDM uses a text-based configuration file located at `~/.config/nedm/config`. Th # Set default terminal exec foot +# Frame Gaps +Gap 10 # Gap 0 will show no gaps + # Number of workspaces workspaces 6 @@ -178,15 +181,7 @@ The default key binding prefix is `Alt+Space`. Common bindings include: ## Status Bar -The integrated status bar displays: - -- **Current time and date** -- **Battery level and charging status** (color-coded) -- **Volume level** -- **WiFi connectivity** (color-coded) -- **Current workspace** - -All components are configurable and can be individually enabled/disabled. +Currently works with Waybar, script for workspace/frame notification is https://github.com/rozodru/NEDMWaybarScript ## Wallpaper Support @@ -273,6 +268,8 @@ ninja -C build && ./build/nedm ## Troubleshooting +p + ### Common Issues **NEDM won't start** @@ -331,5 +328,4 @@ NEDM is licensed under the MIT License. See the LICENSE file for details. ## Version -Current version: **1.0.0** - +Current version: **0.1.6** diff --git a/meson.build b/meson.build index 6c3d93f..6c90ae7 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'nedm', 'c', -version : '1.0', +version : '0.1.6', license : 'MIT', default_options : ['c_std=c23,c11', 'warning_level=3'] ) @@ -260,7 +260,7 @@ executable( c_args: fuzz_compile_args, ) -install_data('examples/config', install_dir : '/etc/xdg/cagebreak') +install_data('examples/config', install_dir : '/etc/xdg/' + meson.project_name()) install_data('LICENSE', install_dir : '/usr/share/licenses/' + meson.project_name() + '/') if get_option('man-pages')