diff --git a/README.md b/README.md index 9b149c7..7c296f6 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,14 @@ A menu to pick, paste and organize colors (palettes) - xdg-utils - xclip +## Installation + +``` +git clone https://git.maboxlinux.org/Mabox/mbxcolors +cd mbxcolors +sudo make install + +## to uninstall +sudo make uninstall +``` + diff --git a/bin/mbxcolors b/bin/mbxcolors index 6994d45..edd0d15 100755 --- a/bin/mbxcolors +++ b/bin/mbxcolors @@ -1,9 +1,11 @@ #!/usr/bin/env bash # Copyright (C) Daniel Napora 2021 # Dependencies: jgmenu, xdotool, colorpicker, xdg-utils, xclip +# TODO notifications when copying to clipboard (imagick needed to create icon) +# TODO check for other color-tools like gpick,gcolor2 and add launchers to menu -ME=$(basename $0) +ME=${0##*/} CNF_DIR="$HOME/.config/mbxcolors" CNF_FILE="$CNF_DIR/mbxcolors.cfg" diff --git a/share/applications/mbxcolors.desktop b/share/applications/mbxcolors.desktop index c784a9a..10aa96d 100644 --- a/share/applications/mbxcolors.desktop +++ b/share/applications/mbxcolors.desktop @@ -4,6 +4,7 @@ Type=Application Name=MBX Colors Comment=Pick, paste and manage colors Keywords= +StartupNotify=false Icon=mbxcolors TryExec=mbxcolors Exec=mbxcolors diff --git a/share/icons/128x128/mbxcolors.png b/share/icons/128x128/mbxcolors.png new file mode 100644 index 0000000..261f645 Binary files /dev/null and b/share/icons/128x128/mbxcolors.png differ diff --git a/share/icons/16x16/mbxcolors.png b/share/icons/16x16/mbxcolors.png new file mode 100644 index 0000000..d15adb7 Binary files /dev/null and b/share/icons/16x16/mbxcolors.png differ diff --git a/share/icons/22x22/mbxcolors.png b/share/icons/22x22/mbxcolors.png new file mode 100644 index 0000000..7f96cb0 Binary files /dev/null and b/share/icons/22x22/mbxcolors.png differ diff --git a/share/icons/24x24/mbxcolors.png b/share/icons/24x24/mbxcolors.png new file mode 100644 index 0000000..36f8830 Binary files /dev/null and b/share/icons/24x24/mbxcolors.png differ diff --git a/share/icons/32x32/mbxcolors.png b/share/icons/32x32/mbxcolors.png new file mode 100644 index 0000000..67ff6c8 Binary files /dev/null and b/share/icons/32x32/mbxcolors.png differ diff --git a/share/icons/48x48/mbxcolors.png b/share/icons/48x48/mbxcolors.png new file mode 100644 index 0000000..e6ebbc4 Binary files /dev/null and b/share/icons/48x48/mbxcolors.png differ diff --git a/share/icons/64x64/mbxcolors.png b/share/icons/64x64/mbxcolors.png new file mode 100644 index 0000000..c858e4e Binary files /dev/null and b/share/icons/64x64/mbxcolors.png differ diff --git a/share/icons/96x96/mbxcolors.png b/share/icons/96x96/mbxcolors.png new file mode 100644 index 0000000..29351e0 Binary files /dev/null and b/share/icons/96x96/mbxcolors.png differ