diff --git a/README.md b/README.md index 13f7fd5..392b1dd 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ For my neovim config, see [here](https://git.janishutz.com/janishutz/nvim) - Fish config (with some handy aliases, based on one from ohh-my-fish) - Fastfetch config - kitty config with cursor trail +- alacritty config - notification manager uses `swaync` - Linter configs (eslint, clang-format, latexindent and more) - mpv config diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml new file mode 100644 index 0000000..a033a1f --- /dev/null +++ b/config/alacritty/alacritty.toml @@ -0,0 +1,10 @@ +[general] +import = [ + "~/.config/alacritty/dank-theme.toml" +] + +[font] +normal = { + family = "Source Code Pro", style = "Regular" +} +size = 12.0 diff --git a/config/alacritty/dank-theme.toml b/config/alacritty/dank-theme.toml new file mode 100644 index 0000000..5983d28 --- /dev/null +++ b/config/alacritty/dank-theme.toml @@ -0,0 +1,31 @@ +[colors.primary] +background = '#0e1513' +foreground = '#dde4e1' + +[colors.selection] +text = '#dde4e1' +background = '#005049' + +[colors.cursor] +text = '#0e1513' +cursor = '#82d5c9' + +[colors.normal] +black = '#0e1513' +red = '#f49c6e' +green = '#6ad571' +yellow = '#fff372' +blue = '#6bcabc' +magenta = '#1c6258' +cyan = '#82d5c9' +white = '#d2dfdd' + +[colors.bright] +black = '#808a88' +red = '#ffc09f' +green = '#a5ffab' +yellow = '#fff7a5' +blue = '#9ceadf' +magenta = '#b9fff4' +cyan = '#d2fff8' +white = '#f8fffe' diff --git a/config/hypr/hyprland/binds/launch.lua b/config/hypr/hyprland/binds/launch.lua index 5366238..f86cbfd 100644 --- a/config/hypr/hyprland/binds/launch.lua +++ b/config/hypr/hyprland/binds/launch.lua @@ -9,7 +9,7 @@ local function launcher(program) end end -hl.bind("SUPER + Return", launcher("kitty")) +hl.bind("SUPER + Return", launcher("alacritty")) hl.define_submap("launch", function() -- Librewolf @@ -21,9 +21,9 @@ hl.define_submap("launch", function() -- Discord hl.bind("d", launcher("vesktop"), { description = "Launch Discord" }) - -- Kitty - hl.bind("k", launcher("kitty"), { description = "Launch kitty" }) - hl.bind("Return", launcher("kitty"), { description = "Launch kitty" }) + -- alacritty + hl.bind("k", launcher("alacritty"), { description = "Launch alacritty" }) + hl.bind("Return", launcher("alacritty"), { description = "Launch alacritty" }) -- Filezilla hl.bind("f", launcher("filezilla"), { description = "Launch Filezilla" }) diff --git a/dms/settings.json b/dms/settings.json index 6bf9194..373e65e 100644 --- a/dms/settings.json +++ b/dms/settings.json @@ -32,7 +32,7 @@ "firstDayOfWeek": -1, "showWeekNumber": false, "calendarBackend": "auto", - "clockFormat": "auto", + "clockFormat": "24h", "showSeconds": true, "padHours12Hour": false, "useFahrenheit": false, @@ -389,19 +389,6 @@ "fadeToDpmsEnabled": true, "fadeToDpmsGracePeriod": 5, "launchPrefix": "", - "brightnessDevicePins": {}, - "wifiNetworkPins": { - "preferredWifi": [ - "mchp" - ] - }, - "bluetoothDevicePins": { - "preferredDevice": [ - "ED:A8:60:08:93:6C" - ] - }, - "audioInputDevicePins": {}, - "audioOutputDevicePins": {}, "gtkThemingEnabled": false, "qtThemingEnabled": false, "syncModeWithPortal": true, @@ -426,7 +413,7 @@ "matugenTemplateGhostty": false, "matugenTemplateKitty": true, "matugenTemplateFoot": false, - "matugenTemplateAlacritty": false, + "matugenTemplateAlacritty": true, "matugenTemplateNeovim": true, "matugenTemplateWezterm": false, "matugenTemplateDgop": true, @@ -766,6 +753,9 @@ }, "dms_notepad": { "enabled": false + }, + "dms_clipboard_search": { + "trigger": "cb" } }, "clipboardClickToPaste": false, @@ -798,5 +788,5 @@ "barInsetPaddingShared": -1, "barInsetPaddingSyncAll": false, "frameBarInsetPadding": -1, - "configVersion": 12 + "configVersion": 13 } \ No newline at end of file