this repo has no description
2
fork

Configure Feed

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

curve: clean up desktop config

+56 -56
+56 -56
home/profiles/desktop/default.nix
··· 33 33 termpdfpy 34 34 ]; 35 35 36 - xdg.desktopEntries = { 37 - ocr = { 38 - name = "OCR image"; 39 - exec = "${pkgs.writeScript "ocr" '' 40 - ${pkgs.xfce.xfce4-screenshooter}/bin/xfce4-screenshooter -r --save /tmp/ocr-tmp.png 41 - ${pkgs.tesseract}/bin/tesseract /tmp/ocr-tmp.png | ${pkgs.xclip}/bin/xclip -sel clip 42 - rm /tmp/ocr-tmp.png 43 - ''}"; 44 - }; 45 - screenshot = { 46 - name = "Screenshot"; 47 - exec = "screenshot"; 48 - }; 49 - }; 50 - 51 - # set up env 52 - xsession.enable = true; 53 - 54 - xresources.properties = { 55 - "*.foreground" = "#95E6CB"; 56 - "*.background" = "#1F2430"; 57 - "*.cursorColor" = "#BAE67E"; 58 - # Black 59 - "*.color0" = "#1F2430"; 60 - "*.color8" = "#F28779"; 61 - # Red 62 - "*.color1" = "#A6CC70"; 63 - "*.color9" = "#FFCC66"; 64 - # Green 65 - "*.color2" = "#5CCFE6"; 66 - "*.color10" = "#F29E74"; 67 - # Yellow 68 - "*.color3" = "#77A8D9"; 69 - "*.color11" = "#5C6773"; 70 - # Blue 71 - "*.color4" = "#707A8C"; 72 - "*.color12" = "#F27983"; 73 - # Magenta 74 - "*.color5" = "#BAE67E"; 75 - "*.color13" = "#FFD580"; 76 - # Cyan 77 - "*.color6" = "#73D0FF"; 78 - "*.color14" = "#FFA759"; 79 - # White 80 - "*.color7" = "#95E6CB"; 81 - "*.color15" = "#CBCCC6"; 82 - # Bold, Italic, Underline 83 - "*.colorBD" = "#e6e1cf"; 84 - }; 85 - 86 36 # Move required config files around 87 37 xdg.enable = true; # This doesn't seem to do anything so we have below 88 38 xdg.configHome = "/home/anish/.config"; # TODO bad hardcode ··· 135 85 ".local/bin/screenshot".source = ./bin/screenshot; 136 86 ".local/bin/mpv-ify".source = ./bin/mpv-ify; 137 87 ".local/bin/bspswallow".source = ./bin/bspswallow; 138 - ".local/bin/ku".source = ./bin/ku; 139 88 ".config/bspwm/terminals".text = "Kitty"; 140 89 ".config/eww/eww.yuck".source = ./eww/eww.yuck; 141 90 ".config/eww/eww.scss".source = ./eww/eww.scss; ··· 143 92 # ".local/bin/hotplug-monitor.sh".source = ./bin/hotplug-monitor.sh; 144 93 }; 145 94 95 + xdg.desktopEntries = { 96 + ocr = { 97 + name = "OCR image"; 98 + exec = "${pkgs.writeScript "ocr" '' 99 + ${pkgs.xfce.xfce4-screenshooter}/bin/xfce4-screenshooter -r --save /tmp/ocr-tmp.png 100 + ${pkgs.tesseract}/bin/tesseract /tmp/ocr-tmp.png | ${pkgs.xclip}/bin/xclip -sel clip 101 + rm /tmp/ocr-tmp.png 102 + ''}"; 103 + }; 104 + screenshot = { 105 + name = "Screenshot"; 106 + exec = "screenshot"; 107 + }; 108 + }; 109 + 110 + 146 111 qt = { 147 112 enable = true; 148 113 platformTheme = "gtk"; 149 114 style = { name = "qt5ct-style"; }; 150 115 }; 151 116 117 + # set up env 118 + xsession.enable = true; 119 + 120 + xresources.properties = { 121 + "*.foreground" = "#95E6CB"; 122 + "*.background" = "#1F2430"; 123 + "*.cursorColor" = "#BAE67E"; 124 + # Black 125 + "*.color0" = "#1F2430"; 126 + "*.color8" = "#F28779"; 127 + # Red 128 + "*.color1" = "#A6CC70"; 129 + "*.color9" = "#FFCC66"; 130 + # Green 131 + "*.color2" = "#5CCFE6"; 132 + "*.color10" = "#F29E74"; 133 + # Yellow 134 + "*.color3" = "#77A8D9"; 135 + "*.color11" = "#5C6773"; 136 + # Blue 137 + "*.color4" = "#707A8C"; 138 + "*.color12" = "#F27983"; 139 + # Magenta 140 + "*.color5" = "#BAE67E"; 141 + "*.color13" = "#FFD580"; 142 + # Cyan 143 + "*.color6" = "#73D0FF"; 144 + "*.color14" = "#FFA759"; 145 + # White 146 + "*.color7" = "#95E6CB"; 147 + "*.color15" = "#CBCCC6"; 148 + # Bold, Italic, Underline 149 + "*.colorBD" = "#e6e1cf"; 150 + }; 151 + 152 + programs.autorandr.enable = true; 153 + services.udiskie.automount = true; 154 + 155 + services.mpris-proxy.enable = true; # bluetooth media control 156 + 152 157 # Compositor 153 158 # services.picom = { 154 159 # enable = true; ··· 170 175 # corner-radius = 3 171 176 # ''; 172 177 # }; 173 - 174 - programs.autorandr.enable = true; 175 - services.udiskie.automount = true; 176 - 177 - services.mpris-proxy.enable = true; # bluetooth media control 178 178 }