├── cursors ├── src │ ├── symlinks │ │ ├── alias │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── col-resize │ │ ├── e-resize │ │ ├── move │ │ ├── n-resize │ │ ├── progress │ │ ├── row-resize │ │ ├── s-resize │ │ ├── size_all │ │ ├── w-resize │ │ ├── whats_this │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── hand1 │ │ ├── hand2 │ │ ├── not-allowed │ │ ├── pointer │ │ ├── question_arrow │ │ ├── v_double_arrow │ │ ├── left_ptr_watch │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ └── .directory │ ├── TODO │ ├── config │ │ ├── copy.in │ │ ├── cross.in │ │ ├── help.in │ │ ├── link.in │ │ ├── plus.in │ │ ├── xterm.in │ │ ├── X_cursor.in │ │ ├── circle.in │ │ ├── fleur.in │ │ ├── pencil.in │ │ ├── pirate.in │ │ ├── closedhand.in │ │ ├── color-picker.in │ │ ├── forbidden.in │ │ ├── left_ptr.in │ │ ├── openhand.in │ │ ├── pointing_hand.in │ │ ├── size_hor.in │ │ ├── size_ver.in │ │ ├── split_h.in │ │ ├── split_v.in │ │ ├── up_arrow.in │ │ ├── size_bdiag.in │ │ ├── size_fdiag.in │ │ └── Description │ ├── theme-black │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-blue │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-brown │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-cherry │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-chrome │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-desert │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-green │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-grey │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-lilac │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-navy │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-norway │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-orchid │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-oxygen │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-peach │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-purple │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-red │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-steel │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-terra │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-violet │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-white │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-wonton │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-yellow │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-zion │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-bluecurve │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-emerald │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-honeycomb │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-hot_orange │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-obsidian-hc │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-obsidian │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-olympus-inv │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-olympus │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-sea_blue │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-terra_green │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-viorange │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-whitewater │ │ ├── CMakeLists.txt │ │ └── index.theme │ ├── theme-midnight_meadow │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ ├── theme-red-argentina │ │ ├── CMakeLists.txt │ │ ├── colors.in │ │ └── index.theme │ └── theme.cmake ├── KDE_Classic │ └── cursors │ │ ├── text │ │ ├── all-scroll │ │ ├── move │ │ ├── whats_this │ │ ├── col-resize │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── not-allowed │ │ ├── nw-resize │ │ ├── pointer │ │ ├── progress │ │ ├── row-resize │ │ ├── s-resize │ │ ├── se-resize │ │ ├── sw-resize │ │ ├── w-resize │ │ ├── crossed_circle │ │ ├── left_ptr_watch │ │ ├── nesw-resize │ │ ├── nwse-resize │ │ ├── v_double_arrow │ │ ├── xcursorconfig │ │ ├── 00008160000006810000408080010102 │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── cross │ │ ├── fleur │ │ ├── hand1 │ │ ├── hand2 │ │ ├── help │ │ ├── ibeam │ │ ├── wait │ │ ├── watch │ │ ├── xterm │ │ ├── X_cursor │ │ ├── left_ptr │ │ ├── openhand │ │ ├── pirate │ │ ├── size_all │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── top_side │ │ ├── up_arrow │ │ ├── center_ptr │ │ ├── closedhand │ │ ├── crosshair │ │ ├── forbidden │ │ ├── half-busy │ │ ├── left_side │ │ ├── right_ptr │ │ ├── right_side │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── bottom_side │ │ ├── pointing_hand │ │ ├── question_arrow │ │ ├── top_left_corner │ │ ├── bottom_left_corner │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── top_right_corner │ │ └── bottom_right_corner ├── Oxygen_Black │ ├── cursors │ │ ├── alias │ │ ├── text │ │ ├── watch │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── ibeam │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── all-scroll │ │ ├── col-resize │ │ ├── dnd-move │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nw-resize │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── se-resize │ │ ├── sw-resize │ │ ├── w-resize │ │ ├── crossed_circle │ │ ├── dnd-no-drop │ │ ├── left_ptr_watch │ │ ├── nesw-resize │ │ ├── not-allowed │ │ ├── nwse-resize │ │ ├── pointer │ │ ├── v_double_arrow │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── copy │ │ ├── help │ │ ├── link │ │ ├── plus │ │ ├── wait │ │ ├── circle │ │ ├── cross │ │ ├── fleur │ │ ├── pencil │ │ ├── pirate │ │ ├── split_h │ │ ├── split_v │ │ ├── xterm │ │ ├── X_cursor │ │ ├── forbidden │ │ ├── half-busy │ │ ├── left_ptr │ │ ├── openhand │ │ ├── size_hor │ │ ├── size_ver │ │ ├── up_arrow │ │ ├── closedhand │ │ ├── color-picker │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ └── pointing_hand │ └── cursors_scalable │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── not-allowed │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── w-resize │ │ ├── left_ptr_watch │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── .directory │ │ ├── copy │ │ └── metadata.json │ │ ├── cross │ │ └── metadata.json │ │ ├── help │ │ └── metadata.json │ │ ├── link │ │ └── metadata.json │ │ ├── plus │ │ └── metadata.json │ │ ├── xterm │ │ └── metadata.json │ │ ├── X_cursor │ │ └── metadata.json │ │ ├── circle │ │ └── metadata.json │ │ ├── fleur │ │ └── metadata.json │ │ ├── pencil │ │ └── metadata.json │ │ └── pirate │ │ └── metadata.json ├── Oxygen_Blue │ ├── cursors │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── not-allowed │ │ ├── nw-resize │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── se-resize │ │ ├── sw-resize │ │ ├── w-resize │ │ ├── left_ptr_watch │ │ ├── nesw-resize │ │ ├── nwse-resize │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── copy │ │ ├── cross │ │ ├── fleur │ │ ├── help │ │ ├── link │ │ ├── plus │ │ ├── wait │ │ ├── xterm │ │ ├── X_cursor │ │ ├── circle │ │ ├── left_ptr │ │ ├── openhand │ │ ├── pencil │ │ ├── pirate │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── up_arrow │ │ ├── closedhand │ │ ├── forbidden │ │ ├── half-busy │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── color-picker │ │ └── pointing_hand │ └── cursors_scalable │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── e-resize │ │ ├── move │ │ ├── n-resize │ │ ├── s-resize │ │ ├── size_all │ │ ├── w-resize │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── hand1 │ │ ├── hand2 │ │ ├── not-allowed │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── left_ptr_watch │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── .directory │ │ ├── X_cursor │ │ └── metadata.json │ │ ├── copy │ │ └── metadata.json │ │ ├── cross │ │ └── metadata.json │ │ ├── help │ │ └── metadata.json │ │ ├── link │ │ └── metadata.json │ │ ├── plus │ │ └── metadata.json │ │ ├── xterm │ │ └── metadata.json │ │ ├── circle │ │ └── metadata.json │ │ ├── closedhand │ │ └── metadata.json │ │ ├── fleur │ │ └── metadata.json │ │ ├── left_ptr │ │ └── metadata.json │ │ ├── pencil │ │ └── metadata.json │ │ ├── pirate │ │ └── metadata.json │ │ ├── split_h │ │ └── metadata.json │ │ └── split_v │ │ └── metadata.json ├── Oxygen_White │ ├── cursors │ │ ├── alias │ │ ├── text │ │ ├── watch │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── ibeam │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── all-scroll │ │ ├── col-resize │ │ ├── dnd-move │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── nw-resize │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── se-resize │ │ ├── sw-resize │ │ ├── w-resize │ │ ├── crossed_circle │ │ ├── dnd-no-drop │ │ ├── left_ptr_watch │ │ ├── nesw-resize │ │ ├── not-allowed │ │ ├── nwse-resize │ │ ├── pointer │ │ ├── v_double_arrow │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── copy │ │ ├── help │ │ ├── link │ │ ├── plus │ │ ├── wait │ │ ├── circle │ │ ├── cross │ │ ├── fleur │ │ ├── pencil │ │ ├── pirate │ │ ├── split_h │ │ ├── split_v │ │ ├── xterm │ │ ├── X_cursor │ │ ├── forbidden │ │ ├── half-busy │ │ ├── left_ptr │ │ ├── openhand │ │ ├── size_hor │ │ ├── size_ver │ │ ├── up_arrow │ │ ├── closedhand │ │ ├── color-picker │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ └── pointing_hand │ └── cursors_scalable │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── not-allowed │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── w-resize │ │ ├── left_ptr_watch │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── .directory │ │ ├── copy │ │ └── metadata.json │ │ ├── cross │ │ └── metadata.json │ │ ├── help │ │ └── metadata.json │ │ ├── link │ │ └── metadata.json │ │ ├── plus │ │ └── metadata.json │ │ ├── xterm │ │ └── metadata.json │ │ ├── X_cursor │ │ └── metadata.json │ │ ├── circle │ │ └── metadata.json │ │ ├── fleur │ │ └── metadata.json │ │ ├── pencil │ │ └── metadata.json │ │ └── pirate │ │ └── metadata.json ├── Oxygen_Zion │ ├── cursors │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── move │ │ ├── size_all │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── e-resize │ │ ├── hand1 │ │ ├── hand2 │ │ ├── n-resize │ │ ├── ne-resize │ │ ├── not-allowed │ │ ├── nw-resize │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── s-resize │ │ ├── se-resize │ │ ├── sw-resize │ │ ├── w-resize │ │ ├── left_ptr_watch │ │ ├── nesw-resize │ │ ├── nwse-resize │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── copy │ │ ├── cross │ │ ├── fleur │ │ ├── help │ │ ├── link │ │ ├── plus │ │ ├── wait │ │ ├── xterm │ │ ├── X_cursor │ │ ├── circle │ │ ├── left_ptr │ │ ├── openhand │ │ ├── pencil │ │ ├── pirate │ │ ├── size_hor │ │ ├── size_ver │ │ ├── split_h │ │ ├── split_v │ │ ├── up_arrow │ │ ├── closedhand │ │ ├── forbidden │ │ ├── half-busy │ │ ├── size_bdiag │ │ ├── size_fdiag │ │ ├── color-picker │ │ └── pointing_hand │ └── cursors_scalable │ │ ├── alias │ │ ├── ibeam │ │ ├── text │ │ ├── watch │ │ ├── all-scroll │ │ ├── dnd-copy │ │ ├── dnd-link │ │ ├── e-resize │ │ ├── move │ │ ├── n-resize │ │ ├── s-resize │ │ ├── size_all │ │ ├── w-resize │ │ ├── whats_this │ │ ├── col-resize │ │ ├── crossed_circle │ │ ├── dnd-move │ │ ├── dnd-no-drop │ │ ├── dnd-none │ │ ├── hand1 │ │ ├── hand2 │ │ ├── not-allowed │ │ ├── pointer │ │ ├── progress │ │ ├── question_arrow │ │ ├── row-resize │ │ ├── left_ptr_watch │ │ ├── sb_h_double_arrow │ │ ├── sb_v_double_arrow │ │ ├── v_double_arrow │ │ ├── 1081e37283d90000800003c07f3ef6bf │ │ ├── 3085a0e285430894940527032f8b26df │ │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ │ ├── 6407b0e94181790501fd1e167b474872 │ │ ├── 640fb0e74195791501fd1ed57b41487f │ │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ │ ├── d9ce0ab605698f320427677b458ad60b │ │ ├── 00000000000000020006000e7e9ffc3f │ │ ├── 00008160000006810000408080010102 │ │ ├── 03b6e0fcb3499374a867c041f52298f0 │ │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ │ ├── 4498f0e0c1937ffe01fd06f973665830 │ │ ├── 9081237383d90e509aa00f00170e968f │ │ ├── 9d800788f1b08800ae810202380a0822 │ │ ├── e29285e634086352946a0e7090d73106 │ │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ │ ├── .directory │ │ ├── X_cursor │ │ └── metadata.json │ │ ├── copy │ │ └── metadata.json │ │ ├── cross │ │ └── metadata.json │ │ ├── help │ │ └── metadata.json │ │ ├── link │ │ └── metadata.json │ │ ├── plus │ │ └── metadata.json │ │ ├── xterm │ │ └── metadata.json │ │ ├── circle │ │ └── metadata.json │ │ └── closedhand │ │ └── metadata.json └── Oxygen_Yellow │ ├── cursors │ ├── alias │ ├── dnd-copy │ ├── dnd-link │ ├── ibeam │ ├── size_all │ ├── text │ ├── watch │ ├── all-scroll │ ├── col-resize │ ├── dnd-move │ ├── dnd-none │ ├── e-resize │ ├── hand1 │ ├── hand2 │ ├── move │ ├── n-resize │ ├── progress │ ├── question_arrow │ ├── row-resize │ ├── s-resize │ ├── w-resize │ ├── whats_this │ ├── crossed_circle │ ├── dnd-no-drop │ ├── left_ptr_watch │ ├── ne-resize │ ├── nesw-resize │ ├── not-allowed │ ├── nw-resize │ ├── nwse-resize │ ├── pointer │ ├── se-resize │ ├── sw-resize │ ├── v_double_arrow │ ├── sb_h_double_arrow │ ├── sb_v_double_arrow │ ├── 03b6e0fcb3499374a867c041f52298f0 │ ├── 1081e37283d90000800003c07f3ef6bf │ ├── 3085a0e285430894940527032f8b26df │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ ├── 6407b0e94181790501fd1e167b474872 │ ├── 640fb0e74195791501fd1ed57b41487f │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ ├── d9ce0ab605698f320427677b458ad60b │ ├── 00000000000000020006000e7e9ffc3f │ ├── 00008160000006810000408080010102 │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ ├── 4498f0e0c1937ffe01fd06f973665830 │ ├── 9081237383d90e509aa00f00170e968f │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ ├── 9d800788f1b08800ae810202380a0822 │ ├── e29285e634086352946a0e7090d73106 │ ├── circle │ ├── copy │ ├── cross │ ├── fleur │ ├── help │ ├── link │ ├── pencil │ ├── pirate │ ├── plus │ ├── wait │ ├── xterm │ ├── X_cursor │ ├── left_ptr │ ├── openhand │ ├── size_hor │ ├── size_ver │ ├── split_h │ ├── split_v │ ├── up_arrow │ ├── closedhand │ ├── forbidden │ ├── half-busy │ ├── size_bdiag │ ├── size_fdiag │ ├── color-picker │ └── pointing_hand │ └── cursors_scalable │ ├── alias │ ├── text │ ├── watch │ ├── dnd-copy │ ├── dnd-link │ ├── ibeam │ ├── move │ ├── size_all │ ├── whats_this │ ├── all-scroll │ ├── col-resize │ ├── dnd-move │ ├── dnd-none │ ├── e-resize │ ├── hand1 │ ├── hand2 │ ├── n-resize │ ├── progress │ ├── question_arrow │ ├── row-resize │ ├── s-resize │ ├── w-resize │ ├── crossed_circle │ ├── dnd-no-drop │ ├── left_ptr_watch │ ├── not-allowed │ ├── pointer │ ├── v_double_arrow │ ├── sb_h_double_arrow │ ├── sb_v_double_arrow │ ├── 03b6e0fcb3499374a867c041f52298f0 │ ├── 1081e37283d90000800003c07f3ef6bf │ ├── 3085a0e285430894940527032f8b26df │ ├── 5c6cd98b3f3ebcb1f9c7f1c204630408 │ ├── 6407b0e94181790501fd1e167b474872 │ ├── 640fb0e74195791501fd1ed57b41487f │ ├── a2a266d0498c3104214a47bd64ab0fc8 │ ├── b66166c04f8c3109214a4fbd64a50fc8 │ ├── d9ce0ab605698f320427677b458ad60b │ ├── 00000000000000020006000e7e9ffc3f │ ├── 00008160000006810000408080010102 │ ├── 08e8e1c95fe2fc01f976f1e063a24ccd │ ├── 3ecb610c1bf2410f44200f48c40d3599 │ ├── 4498f0e0c1937ffe01fd06f973665830 │ ├── 9081237383d90e509aa00f00170e968f │ ├── fcf21c00b30f7e3f83fe0dfd12e71cff │ ├── 9d800788f1b08800ae810202380a0822 │ ├── e29285e634086352946a0e7090d73106 │ ├── .directory │ ├── copy │ └── metadata.json │ ├── help │ └── metadata.json │ ├── link │ └── metadata.json │ ├── X_cursor │ └── metadata.json │ ├── circle │ └── metadata.json │ ├── cross │ └── metadata.json │ ├── fleur │ └── metadata.json │ ├── pencil │ └── metadata.json │ ├── pirate │ └── metadata.json │ ├── plus │ └── metadata.json │ └── xterm │ └── metadata.json ├── kstyle ├── oxygen.json ├── config │ └── 256-apps-oxygen-settings.png └── oxygenstyleconfigdata.kcfgc ├── color-schemes ├── ExtraDesktop.sh └── CMakeLists.txt ├── .git-blame-ignore-revs ├── lookandfeel ├── contents │ ├── previews │ │ ├── preview.png │ │ └── splash.png │ └── splash │ │ └── images │ │ ├── kde.png │ │ ├── rectangle.png │ │ └── background.png └── Messages.sh ├── kdecoration └── oxygensettings.kcfgc ├── liboxygen ├── Messages.sh └── oxygenactiveshadowconfiguration.kcfgc └── .gitignore /cursors/src/symlinks/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/src/symlinks/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/src/symlinks/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/src/symlinks/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/src/symlinks/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/src/symlinks/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/src/symlinks/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/src/symlinks/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/src/symlinks/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/src/symlinks/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/symlinks/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/src/symlinks/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/src/symlinks/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/src/symlinks/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/src/symlinks/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/src/symlinks/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/src/symlinks/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/src/symlinks/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/src/symlinks/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/symlinks/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/src/symlinks/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/symlinks/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/src/symlinks/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/src/symlinks/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/src/symlinks/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/src/symlinks/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/src/symlinks/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/alias: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/text: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/watch: -------------------------------------------------------------------------------- 1 | wait -------------------------------------------------------------------------------- /cursors/src/TODO: -------------------------------------------------------------------------------- 1 | * fix hotspot for clock 2 | -------------------------------------------------------------------------------- /cursors/src/config/copy.in: -------------------------------------------------------------------------------- 1 | 24 0 0 copy.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/cross.in: -------------------------------------------------------------------------------- 1 | 24 7 7 cross.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/help.in: -------------------------------------------------------------------------------- 1 | 24 0 0 help.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/link.in: -------------------------------------------------------------------------------- 1 | 24 0 0 link.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/plus.in: -------------------------------------------------------------------------------- 1 | 24 12 12 plus.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/xterm.in: -------------------------------------------------------------------------------- 1 | 24 4 9 xterm.png 2 | -------------------------------------------------------------------------------- /cursors/src/symlinks/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/src/symlinks/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/src/symlinks/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /kstyle/oxygen.json: -------------------------------------------------------------------------------- 1 | { "Keys": [ "Oxygen" ] } 2 | -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/ne-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/nw-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/se-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/sw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/ibeam: -------------------------------------------------------------------------------- 1 | xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/nesw-resize: -------------------------------------------------------------------------------- 1 | size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/nwse-resize: -------------------------------------------------------------------------------- 1 | size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/dnd-copy: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/dnd-link: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/size_all: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/whats_this: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/src/config/X_cursor.in: -------------------------------------------------------------------------------- 1 | 24 12 12 x.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/circle.in: -------------------------------------------------------------------------------- 1 | 24 12 12 circle.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/fleur.in: -------------------------------------------------------------------------------- 1 | 32 16 15 fleur.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/pencil.in: -------------------------------------------------------------------------------- 1 | 24 3 20 pencil.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/pirate.in: -------------------------------------------------------------------------------- 1 | 24 12 12 kill.png 2 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/all-scroll: -------------------------------------------------------------------------------- 1 | fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/e-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/n-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/s-resize: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/w-resize: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/col-resize: -------------------------------------------------------------------------------- 1 | split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/dnd-move: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/dnd-none: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/hand1: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/hand2: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/progress: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/question_arrow: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/row-resize: -------------------------------------------------------------------------------- 1 | split_v -------------------------------------------------------------------------------- /cursors/src/config/closedhand.in: -------------------------------------------------------------------------------- 1 | 24 12 11 grab.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/color-picker.in: -------------------------------------------------------------------------------- 1 | 24 2 20 picker.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/forbidden.in: -------------------------------------------------------------------------------- 1 | 24 0 0 forbidden.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/left_ptr.in: -------------------------------------------------------------------------------- 1 | 24 5 5 left_ptr.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/openhand.in: -------------------------------------------------------------------------------- 1 | 24 12 11 grab_open.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/pointing_hand.in: -------------------------------------------------------------------------------- 1 | 24 9 1 hand.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/size_hor.in: -------------------------------------------------------------------------------- 1 | 24 11 11 size_hor.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/size_ver.in: -------------------------------------------------------------------------------- 1 | 24 11 11 size_ver.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/split_h.in: -------------------------------------------------------------------------------- 1 | 24 11 11 split_h.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/split_v.in: -------------------------------------------------------------------------------- 1 | 24 11 11 split_v.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/up_arrow.in: -------------------------------------------------------------------------------- 1 | 24 12 0 up_arrow.png 2 | -------------------------------------------------------------------------------- /cursors/src/symlinks/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/src/symlinks/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/src/symlinks/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/src/symlinks/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/src/symlinks/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/src/symlinks/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/src/symlinks/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/src/symlinks/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/xcursorconfig: -------------------------------------------------------------------------------- 1 | 24 7 12 pirate.png -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/crossed_circle: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/dnd-no-drop: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/not-allowed: -------------------------------------------------------------------------------- 1 | forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/pointer: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/left_ptr_watch: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/src/symlinks/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/src/symlinks/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/src/symlinks/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/src/symlinks/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/src/symlinks/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/src/symlinks/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/symlinks/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/symlinks/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/sb_h_double_arrow: -------------------------------------------------------------------------------- 1 | size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/sb_v_double_arrow: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/src/config/size_bdiag.in: -------------------------------------------------------------------------------- 1 | 24 11 11 size_diag-tr2bl.png 2 | -------------------------------------------------------------------------------- /cursors/src/config/size_fdiag.in: -------------------------------------------------------------------------------- 1 | 24 11 11 size_diag-tl2br.png 2 | -------------------------------------------------------------------------------- /cursors/src/symlinks/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/src/symlinks/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /color-schemes/ExtraDesktop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | find -name \*.colors -print 3 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/1081e37283d90000800003c07f3ef6bf: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/3085a0e285430894940527032f8b26df: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/5c6cd98b3f3ebcb1f9c7f1c204630408: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/6407b0e94181790501fd1e167b474872: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/640fb0e74195791501fd1ed57b41487f: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/a2a266d0498c3104214a47bd64ab0fc8: -------------------------------------------------------------------------------- 1 | link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/b66166c04f8c3109214a4fbd64a50fc8: -------------------------------------------------------------------------------- 1 | copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/d9ce0ab605698f320427677b458ad60b: -------------------------------------------------------------------------------- 1 | help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/03b6e0fcb3499374a867c041f52298f0: -------------------------------------------------------------------------------- 1 | circle -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/00000000000000020006000e7e9ffc3f: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/00008160000006810000408080010102: -------------------------------------------------------------------------------- 1 | size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/08e8e1c95fe2fc01f976f1e063a24ccd: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/3ecb610c1bf2410f44200f48c40d3599: -------------------------------------------------------------------------------- 1 | half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/4498f0e0c1937ffe01fd06f973665830: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/9081237383d90e509aa00f00170e968f: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/fcf21c00b30f7e3f83fe0dfd12e71cff: -------------------------------------------------------------------------------- 1 | closedhand -------------------------------------------------------------------------------- /cursors/src/theme-black/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-blue/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-brown/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-cherry/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-chrome/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-desert/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-green/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-grey/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-lilac/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-navy/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-norway/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-orchid/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-oxygen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-peach/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-purple/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-red/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-steel/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-terra/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-violet/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-white/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-wonton/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-yellow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-zion/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # clang-format 2 | 2a12574946e3449e0c8c5174947b5411b4ab1780 3 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/9d800788f1b08800ae810202380a0822: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/e29285e634086352946a0e7090d73106: -------------------------------------------------------------------------------- 1 | pointing_hand -------------------------------------------------------------------------------- /cursors/src/theme-bluecurve/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-emerald/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-honeycomb/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-hot_orange/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-obsidian-hc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-obsidian/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus-inv/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-sea_blue/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-terra_green/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-viorange/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-whitewater/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/config/Description: -------------------------------------------------------------------------------- 1 | == Namespec Description == 2 | 3 | WriteMe! 4 | 5 | 6 | -------------------------------------------------------------------------------- /cursors/src/theme-midnight_meadow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme-red-argentina/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90 180 270) 2 | -------------------------------------------------------------------------------- /cursors/src/theme.cmake: -------------------------------------------------------------------------------- 1 | add_theme(${color} ${color} 90) 2 | add_theme(${color} ${color}-big 180) 3 | -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/cross -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/fleur -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/hand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/hand1 -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/hand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/hand2 -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/help -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/ibeam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/ibeam -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/wait -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/watch -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/copy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/help -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/link -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/plus -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/wait -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/copy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/cross -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/help -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/link -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/plus -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/wait -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/xterm -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/copy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/help -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/link -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/plus -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/wait -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/copy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/cross -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/help -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/link -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/plus -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/wait -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/xterm -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/openhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/pirate -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/size_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/size_all -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/size_hor -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/size_ver -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/split_h -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/split_v -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/top_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/top_side -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/circle -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/cross -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/pencil -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/pirate -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/circle -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/openhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/pencil -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/pirate -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/circle -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/cross -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/fleur -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/pencil -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/pirate -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/split_h -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/split_v -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/circle -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/copy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/cross -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/fleur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/fleur -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/help -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/link -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/pencil -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/pirate -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/plus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/plus -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/wait -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/xterm -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/circle -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/openhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/pencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/pencil -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/pirate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/pirate -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/center_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/center_ptr -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/closedhand -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/crosshair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/crosshair -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/forbidden -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/half-busy -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/left_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/left_side -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/right_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/right_ptr -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/right_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/right_side -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/openhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/openhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/X_cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/X_cursor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/left_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/left_ptr -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/openhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/openhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/size_hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/size_hor -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/size_ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/size_ver -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/split_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/split_h -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/split_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/split_v -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/up_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/up_arrow -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/bottom_side: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/bottom_side -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/color-picker -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/color-picker -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Blue/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/color-picker -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/closedhand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/closedhand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/forbidden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/forbidden -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/half-busy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/half-busy -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/size_bdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/size_bdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/size_fdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/size_fdiag -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/color-picker -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Zion/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/src/theme-black/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#aaaaaa") 2 | set(mediumColor "#000000") 3 | set(darkerColor "#000000") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-blue/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#a4c0e4") 2 | set(mediumColor "#00438a") 3 | set(darkerColor "#00316e") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-brown/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#debc85") 2 | set(mediumColor "#57401e") 3 | set(darkerColor "#382509") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-green/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#d8e8c2") 2 | set(mediumColor "#00892c") 3 | set(darkerColor "#006e29") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-grey/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#eeeeec") 2 | set(mediumColor "#555753") 3 | set(darkerColor "#2e3436") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-navy/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#c3b4da") 2 | set(mediumColor "#34176e") 3 | set(darkerColor "#1d0a55") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-purple/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#f9cade") 2 | set(mediumColor "#bf0361") 3 | set(darkerColor "#9c0f56") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-red/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#f9ccca") 2 | set(mediumColor "#bf0303") 3 | set(darkerColor "#9c0f0f") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-violet/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#e8b7d7") 2 | set(mediumColor "#85026c") 3 | set(darkerColor "#6a0056") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-white/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#ffffff") 2 | set(mediumColor "#d0d0d0") 3 | set(darkerColor "#000000") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-yellow/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#fff6c8") 2 | set(mediumColor "#f3c300") 3 | set(darkerColor "#e3ad00") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-zion/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#606060") 2 | set(mediumColor "#000000") 3 | set(darkerColor "#ffffff") 4 | -------------------------------------------------------------------------------- /lookandfeel/contents/previews/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/lookandfeel/contents/previews/preview.png -------------------------------------------------------------------------------- /lookandfeel/contents/previews/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/lookandfeel/contents/previews/splash.png -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/question_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/question_arrow -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/top_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/top_left_corner -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Black/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_White/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/color-picker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/color-picker -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors/pointing_hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/Oxygen_Yellow/cursors/pointing_hand -------------------------------------------------------------------------------- /cursors/src/theme-blue/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Blue 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-bluecurve/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#565D9D") 2 | set(mediumColor "#000000") 3 | set(darkerColor "#FFFFFF") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-emerald/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#99dcc6") 2 | set(mediumColor "#00734d") 3 | set(darkerColor "#00583f") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-grey/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Grey 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-hot_orange/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#ffd9b0") 2 | set(mediumColor "#cf4913") 3 | set(darkerColor "#ac4311") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-navy/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Navy 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus-inv/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#0000B0") 2 | set(mediumColor "#000060") 3 | set(darkerColor "#FFEE80") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#FFEE80") 2 | set(mediumColor "#E0C000") 3 | set(darkerColor "#0000B0") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-red/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Red 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-sea_blue/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#a8dde0") 2 | set(mediumColor "#006066") 3 | set(darkerColor "#00484d") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-viorange/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#fcaf3e") 2 | set(mediumColor "#f57900") 3 | set(darkerColor "#ce5c00") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-zion/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Zion 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /kstyle/config/256-apps-oxygen-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/kstyle/config/256-apps-oxygen-settings.png -------------------------------------------------------------------------------- /lookandfeel/contents/splash/images/kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/lookandfeel/contents/splash/images/kde.png -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/bottom_left_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/bottom_left_corner -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/sb_h_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/sb_h_double_arrow -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/sb_v_double_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/sb_v_double_arrow -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/top_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/top_right_corner -------------------------------------------------------------------------------- /cursors/src/theme-black/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Black 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-brown/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Brown 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-chrome/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Chrome 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-desert/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Desert 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-emerald/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Emerald 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-green/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Green 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-midnight_meadow/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#108010") 2 | set(mediumColor "#001C00") 3 | set(darkerColor "#80F080") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-norway/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Norway 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Olympus 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-oxygen/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Default 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-purple/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Purple 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-red-argentina/colors.in: -------------------------------------------------------------------------------- 1 | set(lighterColor "#ff2929") 2 | set(mediumColor "#cc0000") 3 | set(darkerColor "#930000") 4 | -------------------------------------------------------------------------------- /cursors/src/theme-steel/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Steel 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-terra/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Terra Sky 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-violet/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Violet 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-white/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen White 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-yellow/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Yellow 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/KDE_Classic/cursors/bottom_right_corner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/cursors/KDE_Classic/cursors/bottom_right_corner -------------------------------------------------------------------------------- /cursors/src/theme-honeycomb/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Honeycomb 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-lilac/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Evening Lilac 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-obsidian/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Obsidian 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-orchid/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Stone Orchid 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-peach/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen White Peach 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-sea_blue/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Sea Blue 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-wonton/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Wonton Soup 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /lookandfeel/contents/splash/images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/lookandfeel/contents/splash/images/rectangle.png -------------------------------------------------------------------------------- /cursors/src/theme-cherry/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Cherry Blossom 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-hot_orange/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Hot Orange 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-terra_green/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Terra Earth 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-whitewater/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Whitewater 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /lookandfeel/contents/splash/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/oxygen/HEAD/lookandfeel/contents/splash/images/background.png -------------------------------------------------------------------------------- /cursors/src/theme-bluecurve/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Bluecurve (Red Hat) 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-olympus-inv/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Olympus (Reversed) 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /color-schemes/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file(GLOB schemefiles *.colors) 2 | install( FILES ${schemefiles} DESTINATION 3 | ${KDE_INSTALL_DATADIR}/color-schemes ) 4 | -------------------------------------------------------------------------------- /cursors/src/theme-midnight_meadow/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Midnight Meadow 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-obsidian-hc/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Obsidian High Contrast 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-red-argentina/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Red Argentina (Tango) 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /cursors/src/theme-viorange/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name = Oxygen Vibrant Orange (Tango) 3 | Comment = Oxygen mouse theme. Oxygenize your desktop! 4 | -------------------------------------------------------------------------------- /lookandfeel/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT `find . -name \*.qml` -L Java -o $podir/plasma_lookandfeel_org.kde.oxygen.pot 3 | rm -f rc.cpp 4 | -------------------------------------------------------------------------------- /kstyle/oxygenstyleconfigdata.kcfgc: -------------------------------------------------------------------------------- 1 | File=oxygen.kcfg 2 | ClassName=StyleConfigData 3 | NameSpace=Oxygen 4 | Singleton=true 5 | Mutators=true 6 | GlobalEnums=true 7 | -------------------------------------------------------------------------------- /cursors/src/symlinks/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /kdecoration/oxygensettings.kcfgc: -------------------------------------------------------------------------------- 1 | File=oxygensettingsdata.kcfg 2 | ClassName=InternalSettings 3 | NameSpace=Oxygen 4 | Singleton=false 5 | Mutators=true 6 | GlobalEnums=true 7 | -------------------------------------------------------------------------------- /liboxygen/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $EXTRACTRC `find . -name \*.ui` >> rc.cpp 3 | $XGETTEXT `find . -name \*.cpp -o -name \*.h` -o $podir/liboxygenstyleconfig.pot 4 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfoV2=Details_Size,Details_Date,CustomizedDetails 3 | Timestamp=2011,9,4,15,13,34 4 | Version=2 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore the following files 2 | CMakeLists.txt.user* 3 | /.clang-format 4 | /compile_commands.json 5 | .clangd 6 | .idea 7 | /cmake-build* 8 | .clang-format 9 | .cache 10 | /cursors/build 11 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/copy/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "copy.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/cross/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "cross.svg", 4 | "hotspot_x": 7, 5 | "hotspot_y": 7, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/help/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "help.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/link/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "link.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/plus/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "plus.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/xterm/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "xterm.svg", 4 | "hotspot_x": 4, 5 | "hotspot_y": 9, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/X_cursor/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "x.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/copy/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "copy.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/cross/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "cross.svg", 4 | "hotspot_x": 7, 5 | "hotspot_y": 7, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/help/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "help.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/link/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "link.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/plus/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "plus.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/xterm/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "xterm.svg", 4 | "hotspot_x": 4, 5 | "hotspot_y": 9, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/copy/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "copy.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/cross/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "cross.svg", 4 | "hotspot_x": 7, 5 | "hotspot_y": 7, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/help/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "help.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/link/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "link.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/plus/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "plus.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/xterm/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "xterm.svg", 4 | "hotspot_x": 4, 5 | "hotspot_y": 9, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/copy/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "copy.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/help/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "help.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/link/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "link.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/X_cursor/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "x.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/copy/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "copy.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/cross/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "cross.svg", 4 | "hotspot_x": 7, 5 | "hotspot_y": 7, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/help/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "help.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/link/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "link.svg", 4 | "hotspot_x": 0, 5 | "hotspot_y": 0, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/plus/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "plus.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/xterm/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "xterm.svg", 4 | "hotspot_x": 4, 5 | "hotspot_y": 9, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /liboxygen/oxygenactiveshadowconfiguration.kcfgc: -------------------------------------------------------------------------------- 1 | File=oxygenactiveshadowconfigdata.kcfg 2 | ClassName=ActiveShadowConfiguration 3 | NameSpace=Oxygen 4 | Singleton=true 5 | Mutators=true 6 | GlobalEnums=true 7 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/X_cursor/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "x.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/circle/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "circle.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/fleur/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "fleur.svg", 4 | "hotspot_x": 16, 5 | "hotspot_y": 15, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/pencil/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "pencil.svg", 4 | "hotspot_x": 3, 5 | "hotspot_y": 20, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Black/cursors_scalable/pirate/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "kill.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/circle/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "circle.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/closedhand/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "grab.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 11, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/fleur/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "fleur.svg", 4 | "hotspot_x": 16, 5 | "hotspot_y": 15, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/left_ptr/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "left_ptr.svg", 4 | "hotspot_x": 5, 5 | "hotspot_y": 5, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/pencil/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "pencil.svg", 4 | "hotspot_x": 3, 5 | "hotspot_y": 20, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/pirate/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "kill.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/split_h/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "split_h.svg", 4 | "hotspot_x": 11, 5 | "hotspot_y": 11, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Blue/cursors_scalable/split_v/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "split_v.svg", 4 | "hotspot_x": 11, 5 | "hotspot_y": 11, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/X_cursor/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "x.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/circle/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "circle.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/fleur/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "fleur.svg", 4 | "hotspot_x": 16, 5 | "hotspot_y": 15, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/pencil/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "pencil.svg", 4 | "hotspot_x": 3, 5 | "hotspot_y": 20, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_White/cursors_scalable/pirate/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "kill.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/X_cursor/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "x.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/circle/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "circle.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/cross/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "cross.svg", 4 | "hotspot_x": 7, 5 | "hotspot_y": 7, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/fleur/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "fleur.svg", 4 | "hotspot_x": 16, 5 | "hotspot_y": 15, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/pencil/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "pencil.svg", 4 | "hotspot_x": 3, 5 | "hotspot_y": 20, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/pirate/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "kill.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/plus/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "plus.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Yellow/cursors_scalable/xterm/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "xterm.svg", 4 | "hotspot_x": 4, 5 | "hotspot_y": 9, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/circle/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "circle.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 12, 6 | "nominal_size": 24 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /cursors/Oxygen_Zion/cursors_scalable/closedhand/metadata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "filename": "grab.svg", 4 | "hotspot_x": 12, 5 | "hotspot_y": 11, 6 | "nominal_size": 24 7 | } 8 | ] 9 | --------------------------------------------------------------------------------