clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add clipse

sspaeti e54dc456 9108a64f

+68 -1
+4
.gitignore
··· 47 47 tmux/.tmux/tmux-client-*.log 48 48 tmux/.tmux/plugins/ 49 49 50 + #clipse 51 + clipse/.config/clipse/tmp_files/ 52 + clipse/.config/clipse/clipboard_history.json 53 + clipse/.config/clipse/clipse.log
+1 -1
Makefile
··· 7 7 8 8 # Platform-specific packages 9 9 MACOS = karabiner yabai skhd alfred 10 - LINUX = kanata hypr walker waybar obsidian mako mise XCompose 10 + LINUX = kanata hypr walker waybar obsidian mako mise XCompose clipse 11 11 12 12 .PHONY: mac linux shared clean 13 13
+35
clipse/.config/clipse/config.json
··· 1 + { 2 + "allowDuplicates": false, 3 + "historyFile": "clipboard_history.json", 4 + "maxHistory": 5000, 5 + "logFile": "clipse.log", 6 + "themeFile": "custom_theme.json", 7 + "tempDir": "tmp_files", 8 + "keyBindings": { 9 + "choose": "enter", 10 + "clearSelected": "S", 11 + "down": "down", 12 + "end": "end", 13 + "filter": "/", 14 + "home": "home", 15 + "more": "?", 16 + "nextPage": "right", 17 + "prevPage": "left", 18 + "preview": " ", 19 + "quit": "q", 20 + "remove": "x", 21 + "selectDown": "ctrl+down", 22 + "selectSingle": "s", 23 + "selectUp": "ctrl+up", 24 + "togglePin": "p", 25 + "togglePinned": "tab", 26 + "up": "up", 27 + "yankFilter": "ctrl+s" 28 + }, 29 + "imageDisplay": { 30 + "type": "basic", 31 + "scaleX": 9, 32 + "scaleY": 9, 33 + "heightCut": 2 34 + } 35 + }
+28
clipse/.config/clipse/custom_theme.json
··· 1 + { 2 + "useCustomTheme": false, 3 + "TitleFore": "#ffffff", 4 + "TitleBack": "#6F4CBC", 5 + "TitleInfo": "#3498db", 6 + "NormalTitle": "#ffffff", 7 + "DimmedTitle": "#808080", 8 + "SelectedTitle": "#FF69B4", 9 + "NormalDesc": "#808080", 10 + "DimmedDesc": "#808080", 11 + "SelectedDesc": "#FF69B4", 12 + "StatusMsg": "#2ecc71", 13 + "PinIndicatorColor": "#FFD700", 14 + "SelectedBorder": "#3498db", 15 + "SelectedDescBorder": "#3498db", 16 + "FilteredMatch": "#ffffff", 17 + "FilterPrompt": "#2ecc71", 18 + "FilterInfo": "#3498db", 19 + "FilterText": "#ffffff", 20 + "FilterCursor": "#FFD700", 21 + "HelpKey": "#999999", 22 + "HelpDesc": "#808080", 23 + "PageActiveDot": "#3498db", 24 + "PageInactiveDot": "#808080", 25 + "DividerDot": "#3498db", 26 + "PreviewedText": "#ffffff", 27 + "PreviewBorder": "#3498db" 28 + }