├── arrow.png ├── panel.png ├── radio.png ├── highlight.png ├── input_panel.png ├── screenshot.png ├── screenshot_vertical.png ├── README.md ├── UNLICENSE └── theme.conf /arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/arrow.png -------------------------------------------------------------------------------- /panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/panel.png -------------------------------------------------------------------------------- /radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/radio.png -------------------------------------------------------------------------------- /highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/highlight.png -------------------------------------------------------------------------------- /input_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/input_panel.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovxw/fcitx5-simple-theme/HEAD/screenshot_vertical.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # simple 2 | 3 | A simple theme for fcitx5 4 | 5 | Original author: [叫小兽](https://pinyin.sogou.com/skins/achome/index/5355095f550704557517414b520b0c/) 6 | 7 | ![screenshot](./screenshot.png) ![screenshot](./screenshot_vertical.png) 8 | 9 | ## Install 10 | 11 | ``` 12 | git clone https://github.com/iovxw/fcitx5-simple-theme.git ~/.local/share/fcitx5/themes/simple 13 | ``` 14 | 15 | Add the following to your `~/.config/fcitx5/conf/classicui.conf` 16 | 17 | ```ini 18 | # True, if you want a vertical candidate list 19 | Vertical Candidate List=False 20 | Theme=simple 21 | ``` 22 | 23 | ## License 24 | 25 | This is free and unencumbered software released into the public domain. 26 | 27 | Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. 28 | -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /theme.conf: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name=simple 3 | Version=1 4 | Author=iovxw 5 | Description=https://pinyin.sogou.com/skins/detail/view/info/516543 6 | ScaleWithDPI=True 7 | 8 | [InputPanel] 9 | Font=Sans 9 10 | NormalColor=#808080ff 11 | HighlightColor=#808080ff 12 | HighlightBackgroundColor=#ffffffff 13 | HighlightCandidateColor=#000000ff 14 | Spacing=3 15 | 16 | [InputPanel/TextMargin] 17 | Left=5 18 | Right=5 19 | Top=5 20 | Bottom=5 21 | 22 | [InputPanel/ContentMargin] 23 | Left=5 24 | Right=5 25 | Top=5 26 | Bottom=5 27 | 28 | [InputPanel/Background] 29 | Image=input_panel.png 30 | 31 | [InputPanel/Background/Margin] 32 | Left=6 33 | Right=6 34 | Top=33 35 | Bottom=6 36 | 37 | [Menu] 38 | Font=Sans 9 39 | NormalColor=#000000ff 40 | HighlightCandidateColor=#ffffffff 41 | 42 | [Menu/Background] 43 | Image=panel.png 44 | 45 | [Menu/Background/Margin] 46 | Left=6 47 | Right=6 48 | Top=6 49 | Bottom=6 50 | 51 | [Menu/ContentMargin] 52 | Left=5 53 | Right=5 54 | Top=5 55 | Bottom=5 56 | 57 | [Menu/Highlight] 58 | Image=highlight.png 59 | 60 | [Menu/Highlight/Margin] 61 | Left=5 62 | Right=5 63 | Top=5 64 | Bottom=5 65 | 66 | [Menu/Separator] 67 | Color=#c0c0c0 68 | 69 | [Menu/CheckBox] 70 | Image=radio.png 71 | 72 | [Menu/SubMenu] 73 | Image=arrow.png 74 | 75 | [Menu/TextMargin] 76 | Left=5 77 | Right=5 78 | Top=5 79 | Bottom=5 80 | --------------------------------------------------------------------------------