updated README.md and updated NEDM version

This commit is contained in:
rozodru 2025-07-20 14:01:52 -04:00
parent 54b14309d1
commit 1cb1d5a1b9
2 changed files with 9 additions and 13 deletions

View File

@ -108,6 +108,9 @@ NEDM uses a text-based configuration file located at `~/.config/nedm/config`. Th
# Set default terminal # Set default terminal
exec foot exec foot
# Frame Gaps
Gap 10 # Gap 0 will show no gaps
# Number of workspaces # Number of workspaces
workspaces 6 workspaces 6
@ -178,15 +181,7 @@ The default key binding prefix is `Alt+Space`. Common bindings include:
## Status Bar ## Status Bar
The integrated status bar displays: Currently works with Waybar, script for workspace/frame notification is https://github.com/rozodru/NEDMWaybarScript
- **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.
## Wallpaper Support ## Wallpaper Support
@ -273,6 +268,8 @@ ninja -C build && ./build/nedm
## Troubleshooting ## Troubleshooting
p
### Common Issues ### Common Issues
**NEDM won't start** **NEDM won't start**
@ -331,5 +328,4 @@ NEDM is licensed under the MIT License. See the LICENSE file for details.
## Version ## Version
Current version: **1.0.0** Current version: **0.1.6**

View File

@ -3,7 +3,7 @@
project( project(
'nedm', 'nedm',
'c', 'c',
version : '1.0', version : '0.1.6',
license : 'MIT', license : 'MIT',
default_options : ['c_std=c23,c11', 'warning_level=3'] default_options : ['c_std=c23,c11', 'warning_level=3']
) )
@ -260,7 +260,7 @@ executable(
c_args: fuzz_compile_args, 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() + '/') install_data('LICENSE', install_dir : '/usr/share/licenses/' + meson.project_name() + '/')
if get_option('man-pages') if get_option('man-pages')