diff --git a/README.md b/README.md index 76022ab..3251606 100644 --- a/README.md +++ b/README.md @@ -36,13 +36,13 @@ cd wlroots meson build -Dprefix=/usr sudo ninja -C build install -git clone https://github.com/DreamMaoMao/plume.git -cd plume +git clone https://github.com/DreamMaoMao/maomaowm.git +cd maomaowm meson build -Dprefix=/usr sudo ninja -C build install // set your autostart cmd ih this -touch ~/.config/plume/autostart.sh +touch ~/.config/maomao/autostart.sh ``` # dependcy diff --git a/config.def.h b/config.def.h index 8781b58..4cdafde 100644 --- a/config.def.h +++ b/config.def.h @@ -51,7 +51,7 @@ static int warpcursor = 1; /* Warp cursor to focused client */ static const char *const autostart[] = { "/bin/sh", "-c", - "~/.config/plume/autostart.sh", + "~/.config/maomao/autostart.sh", NULL, NULL, }; @@ -172,7 +172,7 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA /* commands */ // static const char *termcmd[] = { "foot", NULL }; -// static const char *menucmd[] = { "wofi --conf ~/.config/plume/wofi/config_menu", NULL }; +// static const char *menucmd[] = { "wofi --conf ~/.config/maomao/wofi/config_menu", NULL }; static const Key keys[] = { /* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */ diff --git a/maomao.desktop b/maomao.desktop new file mode 100644 index 0000000..7130e9d --- /dev/null +++ b/maomao.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Maomao +Comment=maomao WM +Exec=env XDG_CURRENT_DESKTOP=sway maomao +Icon=maomao +Type=Application diff --git a/meson.build b/meson.build index 26bc07d..09ab015 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('plume', ['c', 'cpp'], +project('maomao', ['c', 'cpp'], version : '0.1' ) @@ -33,7 +33,7 @@ if xcb.found() and xlibs.found() c_args += '-DIM' endif -executable('plume', +executable('maomao', 'main.c', 'util.c', 'wlr_foreign_toplevel_management_v1.c', @@ -55,4 +55,4 @@ executable('plume', prefix = get_option('prefix') desktop_install_dir = join_paths(prefix, 'share/wayland-sessions') -install_data('plume.desktop', install_dir : desktop_install_dir) +install_data('maomao.desktop', install_dir : desktop_install_dir) diff --git a/plume.desktop b/plume.desktop deleted file mode 100644 index 253195b..0000000 --- a/plume.desktop +++ /dev/null @@ -1,7 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Plume -Comment=Plume WM -Exec=env XDG_CURRENT_DESKTOP=sway plume -Icon=plume -Type=Application