Compare commits
10
Commits
2dcbd80842
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
76cafd8bc7 | ||
|
|
a7c4dc8407 | ||
|
|
42c44aec68 | ||
|
|
2fd2d691fd | ||
|
|
96d3086885 | ||
|
|
699473d7b5 | ||
|
|
a5686ccee0 | ||
|
|
dcb2b320eb | ||
|
|
dc10b3dfb3 | ||
|
|
79036dce2c |
@@ -0,0 +1,101 @@
|
|||||||
|
# Setup after pulling (Arch)
|
||||||
|
|
||||||
|
Everything needed to bring the Cursor Dark theme up on a machine that has just
|
||||||
|
pulled these changes.
|
||||||
|
|
||||||
|
## 1. Packages
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sudo pacman -S --needed papirus-icon-theme ttf-nerd-fonts-symbols-mono
|
||||||
|
```
|
||||||
|
|
||||||
|
| Package | Why |
|
||||||
|
| --- | --- |
|
||||||
|
| `papirus-icon-theme` | rofi, dunst and the GTK configs all reference `Papirus-Dark` |
|
||||||
|
| `ttf-nerd-fonts-symbols-mono` | the tmux status bar uses powerline separators (U+E0B0–E0B3), and `kitty.conf` maps that range to `Symbols Nerd Font Mono` |
|
||||||
|
|
||||||
|
Not in the repos: **Berkeley Mono** (`kitty.conf`) and **Hack JBM Ligatured**
|
||||||
|
(waybar, rofi, hyprlock) are installed by hand.
|
||||||
|
|
||||||
|
## 2. Deploy
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cd ~/.dotfiles
|
||||||
|
stow fish kitty tmux nvim hypr waybar rofi dunst gtktheme
|
||||||
|
```
|
||||||
|
|
||||||
|
> The README suggests `stow *`, which now also picks up `SETUP.md`.
|
||||||
|
> Use `stow */` or an explicit list.
|
||||||
|
|
||||||
|
## 3. Reload
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# fish - close every running fish session BEFORE pulling (see notes)
|
||||||
|
exec fish
|
||||||
|
|
||||||
|
# tmux - plugins now bootstrap themselves, no prefix+I needed
|
||||||
|
tmux kill-server && tmux
|
||||||
|
|
||||||
|
# nvim - installs vscode.nvim, drops everforest
|
||||||
|
nvim --headless "+Lazy! sync" +qa
|
||||||
|
|
||||||
|
# desktop
|
||||||
|
hyprctl reload
|
||||||
|
killall -SIGUSR2 waybar
|
||||||
|
killall dunst # respawns via dbus
|
||||||
|
```
|
||||||
|
|
||||||
|
kitty: `ctrl+shift+F5` to reload, or restart it. rofi has no daemon.
|
||||||
|
|
||||||
|
## 4. GTK theme
|
||||||
|
|
||||||
|
The configs are set to `Orchis-Dark-Compact` (Material Design, accent `#1A73E8`).
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sudo pacman -S orchis-theme xdg-desktop-portal-gtk
|
||||||
|
```
|
||||||
|
|
||||||
|
libadwaita ignores `gtk-theme-name`, so GTK4 apps also need the portal settings
|
||||||
|
and Orchis' own GTK4 stylesheet linked in:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
||||||
|
gsettings set org.gnome.desktop.interface icon-theme 'Papirus-Dark'
|
||||||
|
gsettings set org.gnome.desktop.interface gtk-theme 'Orchis-Dark-Compact'
|
||||||
|
|
||||||
|
mkdir -p ~/.config/gtk-4.0
|
||||||
|
ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/gtk.css ~/.config/gtk-4.0/gtk.css
|
||||||
|
ln -sf /usr/share/themes/Orchis-Dark-Compact/gtk-4.0/assets ~/.config/gtk-4.0/assets
|
||||||
|
```
|
||||||
|
|
||||||
|
`nwg-look` can do the symlink step for you — `nwg/.config/nwg-look/config` already
|
||||||
|
has `export-gtk4-symlinks: true`. Set the gsettings values above first, then run
|
||||||
|
`nwg-look` and hit Apply; it writes `.gtkrc-2.0`, both `settings.ini` files and the
|
||||||
|
GTK4 symlinks from those values.
|
||||||
|
|
||||||
|
### Window buttons
|
||||||
|
|
||||||
|
Both `settings.ini` files set `gtk-decoration-layout=close,minimize,maximize:`
|
||||||
|
— everything left of the `:` sits on the **left**, which is macOS placement and
|
||||||
|
order. That is client-side decoration, so it is all Hyprland apps use.
|
||||||
|
|
||||||
|
Orchis' `--tweaks macos` is **not** useful here: it only replaces `xfwm4` and
|
||||||
|
`metacity-1` assets (Xfce / Marco window managers) and touches no GTK CSS, so it
|
||||||
|
would change nothing under Hyprland — and it requires building from source,
|
||||||
|
giving up the packaged theme. Circular red/yellow/green buttons are not
|
||||||
|
available from Orchis for GTK client-side decorations.
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
- **fish universal variables.** The colours live in `fish/.config/fish/fish_variables`,
|
||||||
|
which fish rewrites from memory whenever any universal variable changes. Close
|
||||||
|
running fish sessions before pulling so an old session can't write the previous
|
||||||
|
palette back over it.
|
||||||
|
- **`cat` is broken on Arch.** `config.fish` defines `cat` as `batcat …`, which is
|
||||||
|
the Debian binary name. Arch's `bat` package installs `/usr/bin/bat`. Either
|
||||||
|
`sudo pacman -S bat` and rename the call, or add an alias.
|
||||||
|
- **nwg-look overwrites GTK config.** It regenerates `.gtkrc-2.0` and the
|
||||||
|
`settings.ini` files. Run it *before* editing these by hand, or re-apply after.
|
||||||
|
- **`gtktheme/.gtkrc-2.0` line 4** includes `/home/n0x/.gtkrc-2.0.mine`, a stale
|
||||||
|
path from a previous username. Harmless, but dead.
|
||||||
|
- **`~/.tmux/plugins/nord-tmux`** is no longer used or tracked. Safe to delete.
|
||||||
@@ -69,3 +69,5 @@ application/x-xz=xarchiver.desktop
|
|||||||
application/x-lzma=xarchiver.desktop
|
application/x-lzma=xarchiver.desktop
|
||||||
application/x-iso9660-image=xarchiver.desktop
|
application/x-iso9660-image=xarchiver.desktop
|
||||||
application/vnd.rar=xarchiver.desktop
|
application/vnd.rar=xarchiver.desktop
|
||||||
|
x-scheme-handler/wootwoot=wootility.desktop
|
||||||
|
x-scheme-handler/web+wootwoot=wootility.desktop
|
||||||
|
|||||||
@@ -95,7 +95,8 @@
|
|||||||
frame_width = 2
|
frame_width = 2
|
||||||
|
|
||||||
# Defines color of the frame around the notification window.
|
# Defines color of the frame around the notification window.
|
||||||
frame_color = "#A7C080"
|
# Cursor Dark: neutral by default, overridden per urgency below.
|
||||||
|
frame_color = "#2b2b2b"
|
||||||
|
|
||||||
# Size of gap to display between notifications - requires a compositor.
|
# Size of gap to display between notifications - requires a compositor.
|
||||||
# If value is greater than 0, separator_height will be ignored and a border
|
# If value is greater than 0, separator_height will be ignored and a border
|
||||||
@@ -201,7 +202,7 @@
|
|||||||
enable_recursive_icon_lookup = true
|
enable_recursive_icon_lookup = true
|
||||||
|
|
||||||
# Set icon theme (only used for recursive icon lookup)
|
# Set icon theme (only used for recursive icon lookup)
|
||||||
icon_theme = Nordzy-green-dark
|
icon_theme = Papirus-Dark
|
||||||
# You can also set multiple icon themes, with the leftmost one being used first.
|
# You can also set multiple icon themes, with the leftmost one being used first.
|
||||||
# icon_theme = "Adwaita, breeze"
|
# icon_theme = "Adwaita, breeze"
|
||||||
|
|
||||||
@@ -313,23 +314,27 @@
|
|||||||
[urgency_low]
|
[urgency_low]
|
||||||
# IMPORTANT: colors have to be defined in quotation marks.
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
# Otherwise the "#" and following would be interpreted as a comment.
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
background = "#2E383C"
|
background = "#181818"
|
||||||
foreground = "#D3C6AA"
|
foreground = "#9d9d9d"
|
||||||
|
frame_color = "#2b2b2b"
|
||||||
timeout = 10
|
timeout = 10
|
||||||
# Icon for notifications with low urgency, uncomment to enable
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|
||||||
[urgency_normal]
|
[urgency_normal]
|
||||||
background = "#2E383C"
|
background = "#181818"
|
||||||
foreground = "#D3C6AA"
|
foreground = "#cccccc"
|
||||||
|
frame_color = "#2472c8"
|
||||||
timeout = 10
|
timeout = 10
|
||||||
# Icon for notifications with normal urgency, uncomment to enable
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|
||||||
[urgency_critical]
|
[urgency_critical]
|
||||||
background = "#900000"
|
# #5a1d1d is VS Code's error-validation background, so it stays in-family
|
||||||
|
# while still reading as alarming.
|
||||||
|
background = "#5a1d1d"
|
||||||
foreground = "#ffffff"
|
foreground = "#ffffff"
|
||||||
frame_color = "#ff0000"
|
frame_color = "#f14c4c"
|
||||||
timeout = 0
|
timeout = 0
|
||||||
# Icon for notifications with critical urgency, uncomment to enable
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
#icon = /path/to/icon
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||
# This file contains fish universal variable definitions.
|
# This file contains fish universal variable definitions.
|
||||||
# VERSION: 3.0
|
# VERSION: 3.0
|
||||||
SETUVAR --export BROWSER:wslview
|
|
||||||
SETUVAR --export COMPOSE_BAKE:true
|
SETUVAR --export COMPOSE_BAKE:true
|
||||||
SETUVAR --export DISPLAY:\x3a0
|
SETUVAR --export DISPLAY:\x3a0
|
||||||
SETUVAR --export EDITOR:nvim
|
SETUVAR --export EDITOR:nvim
|
||||||
SETUVAR --export PYENV_ROOT:/home/tfoerster/\x2epyenv
|
|
||||||
SETUVAR --export VISUAL:nvim
|
SETUVAR --export VISUAL:nvim
|
||||||
SETUVAR --export _JAVA_AWT_WM_NONREPARENTING:1
|
SETUVAR --export _JAVA_AWT_WM_NONREPARENTING:1
|
||||||
SETUVAR __fish_initialized:3800
|
|
||||||
SETUVAR fish_color_autosuggestion:666666
|
SETUVAR fish_color_autosuggestion:666666
|
||||||
SETUVAR fish_color_cancel:\x2dr
|
SETUVAR fish_color_cancel:\x2dr
|
||||||
SETUVAR fish_color_command:569CD6
|
SETUVAR fish_color_command:569CD6
|
||||||
@@ -33,10 +30,9 @@ SETUVAR fish_color_selection:E5E5E5\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3d264
|
|||||||
SETUVAR fish_color_status:F14C4C
|
SETUVAR fish_color_status:F14C4C
|
||||||
SETUVAR fish_color_user:9CDCFE
|
SETUVAR fish_color_user:9CDCFE
|
||||||
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
||||||
SETUVAR fish_key_bindings:fish_default_key_bindings
|
|
||||||
SETUVAR fish_pager_color_completion:normal
|
SETUVAR fish_pager_color_completion:normal
|
||||||
SETUVAR fish_pager_color_description:9D9D9D
|
SETUVAR fish_pager_color_description:9D9D9D
|
||||||
SETUVAR fish_pager_color_prefix:569CD6\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
SETUVAR fish_pager_color_prefix:569CD6\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||||
SETUVAR fish_pager_color_progress:E5E5E5\x1e\x2d\x2dbackground\x3d264F78
|
SETUVAR fish_pager_color_progress:E5E5E5\x1e\x2d\x2dbackground\x3d264F78
|
||||||
SETUVAR fish_pager_color_selected_background:\x2d\x2dbackground\x3d264F78
|
SETUVAR fish_pager_color_selected_background:\x2d\x2dbackground\x3d264F78
|
||||||
SETUVAR fish_user_paths:/home/tfoerster/\x2eopencode/bin\x1e/home/tfoerster/\x2elocal/bin
|
SETUVAR fish_user_paths:/home/n0x/\x2ecargo/bin\x1e/home/n0x/\x2elocal/bin
|
||||||
|
|||||||
@@ -48,3 +48,5 @@
|
|||||||
ll = !git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
|
ll = !git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(auto)%d%C(reset)' --all
|
||||||
s = status
|
s = status
|
||||||
unstage = reset HEAD --
|
unstage = reset HEAD --
|
||||||
|
[advice]
|
||||||
|
addIgnoredFile = false
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[Settings]
|
[Settings]
|
||||||
gtk-theme-name=Everforest-Teal-Dark
|
gtk-theme-name=Orchis-Dark-Compact
|
||||||
gtk-icon-theme-name=Everforest-Light
|
gtk-icon-theme-name=Papirus-Dark
|
||||||
gtk-font-name=Noto Sans 11
|
gtk-font-name=Noto Sans 11
|
||||||
gtk-cursor-theme-name=default
|
gtk-cursor-theme-name=default
|
||||||
gtk-cursor-theme-size=24
|
gtk-cursor-theme-size=24
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[Settings]
|
[Settings]
|
||||||
gtk-theme-name=Everforest-Teal-Dark
|
gtk-theme-name=Orchis-Dark-Compact
|
||||||
gtk-icon-theme-name=Everforest-Light
|
gtk-icon-theme-name=Papirus-Dark
|
||||||
gtk-font-name=Noto Sans 11
|
gtk-font-name=Noto Sans 11
|
||||||
gtk-cursor-theme-name=default
|
gtk-cursor-theme-name=default
|
||||||
gtk-cursor-theme-size=24
|
gtk-cursor-theme-size=24
|
||||||
|
|||||||
+2
-2
@@ -2,8 +2,8 @@
|
|||||||
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
|
# Any customization should be done in ~/.gtkrc-2.0.mine instead.
|
||||||
|
|
||||||
include "/home/n0x/.gtkrc-2.0.mine"
|
include "/home/n0x/.gtkrc-2.0.mine"
|
||||||
gtk-theme-name="Everforest-Teal-Dark"
|
gtk-theme-name="Orchis-Dark-Compact"
|
||||||
gtk-icon-theme-name="Everforest-Light"
|
gtk-icon-theme-name="Papirus-Dark"
|
||||||
gtk-font-name="Noto Sans 11"
|
gtk-font-name="Noto Sans 11"
|
||||||
gtk-cursor-theme-name="default"
|
gtk-cursor-theme-name="default"
|
||||||
gtk-cursor-theme-size=24
|
gtk-cursor-theme-size=24
|
||||||
|
|||||||
@@ -7,8 +7,9 @@ hl.config({
|
|||||||
gaps_out = 10,
|
gaps_out = 10,
|
||||||
border_size = 2,
|
border_size = 2,
|
||||||
col = {
|
col = {
|
||||||
active_border = { colors = { "rgba(7fbbb3ee)", "rgba(a7c080ee)" }, angle = 45 },
|
-- Cursor Dark: accent blue gradient, neutral dark inactive
|
||||||
inactive_border = "rgba(384b55aa)",
|
active_border = { colors = { "rgba(2472c8ee)", "rgba(3b8eeaee)" }, angle = 45 },
|
||||||
|
inactive_border = "rgba(2b2b2baa)",
|
||||||
},
|
},
|
||||||
resize_on_border = false,
|
resize_on_border = false,
|
||||||
allow_tearing = false,
|
allow_tearing = false,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
background {
|
background {
|
||||||
monitor =
|
monitor =
|
||||||
path = $HOME/.config/hypr/wp.png
|
path = $HOME/.config/hypr/wp.png
|
||||||
color = rgba(59,66,82,1)
|
color = rgba(24,24,24,1)
|
||||||
|
|
||||||
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
|
# all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations
|
||||||
blur_size = 5
|
blur_size = 5
|
||||||
@@ -20,9 +20,9 @@ input-field {
|
|||||||
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
|
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
|
||||||
dots_spacing = 1.00 # Scale of dots' absolute size, 0.0 - 1.0
|
dots_spacing = 1.00 # Scale of dots' absolute size, 0.0 - 1.0
|
||||||
dots_center = true
|
dots_center = true
|
||||||
outer_color = rgba(59,66,82,1)
|
outer_color = rgba(36,114,200,1)
|
||||||
inner_color = rgba(59,66,82,1)
|
inner_color = rgba(43,43,43,1)
|
||||||
font_color = rgba(235,203,139,1)
|
font_color = rgba(204,204,204,1)
|
||||||
fade_on_empty = true
|
fade_on_empty = true
|
||||||
placeholder_text = <i>Password...</i> # Text rendered in the input box when it's empty.
|
placeholder_text = <i>Password...</i> # Text rendered in the input box when it's empty.
|
||||||
hide_input = false
|
hide_input = false
|
||||||
@@ -56,7 +56,7 @@ label {
|
|||||||
label {
|
label {
|
||||||
monitor =
|
monitor =
|
||||||
text = cmd[update:1000] echo "<b><big> $(date +"%d %b") </big></b>"
|
text = cmd[update:1000] echo "<b><big> $(date +"%d %b") </big></b>"
|
||||||
color =rgb(163,190,140)
|
color =rgb(59,142,234)
|
||||||
font_size = 16
|
font_size = 16
|
||||||
font_family = HackJBMLigatured-Regular 10
|
font_family = HackJBMLigatured-Regular 10
|
||||||
position = 0, -160
|
position = 0, -160
|
||||||
@@ -66,7 +66,7 @@ label {
|
|||||||
label {
|
label {
|
||||||
monitor =
|
monitor =
|
||||||
text = cmd[update:1000] echo "<b><big> $(date +"%A") </big></b>"
|
text = cmd[update:1000] echo "<b><big> $(date +"%A") </big></b>"
|
||||||
color =rgb(163,190,140)
|
color =rgb(59,142,234)
|
||||||
font_size = 16
|
font_size = 16
|
||||||
font_family = HackJBMLigatured-Regular 10
|
font_family = HackJBMLigatured-Regular 10
|
||||||
position = 0, -180
|
position = 0, -180
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 22 MiB |
@@ -18,7 +18,7 @@
|
|||||||
"nvim-web-devicons": { "branch": "master", "commit": "2ae6958df7ced50baac5035cec0c15799eedfbf7" },
|
"nvim-web-devicons": { "branch": "master", "commit": "2ae6958df7ced50baac5035cec0c15799eedfbf7" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
|
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
|
||||||
"presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" },
|
"presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" },
|
||||||
"rustaceanvim": { "branch": "main", "commit": "e9c5aaba16fead831379d5f44617547a90b913c7" },
|
"rustaceanvim": { "branch": "master", "commit": "e9c5aaba16fead831379d5f44617547a90b913c7" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
||||||
"vim-bbye": { "branch": "master", "commit": "25ef93ac5a87526111f43e5110675032dbcacf56" },
|
"vim-bbye": { "branch": "master", "commit": "25ef93ac5a87526111f43e5110675032dbcacf56" },
|
||||||
"vim-floaterm": { "branch": "master", "commit": "bb4ba7952e906408e1f83b215f55ffe57efcade6" },
|
"vim-floaterm": { "branch": "master", "commit": "bb4ba7952e906408e1f83b215f55ffe57efcade6" },
|
||||||
|
|||||||
@@ -8,12 +8,13 @@ window {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Inner bar container, surrounds buttons */
|
/* Inner bar container, surrounds buttons */
|
||||||
|
/* Cursor Dark: #181818 panel, #cccccc outline */
|
||||||
#inner-box {
|
#inner-box {
|
||||||
background-color: rgba (59, 66, 82, 1);
|
background-color: rgba (24, 24, 24, 1);
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
border-color: rgba (216, 222, 233, 0.7);
|
border-color: rgba (204, 204, 204, 0.7);
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 10px
|
margin: 10px
|
||||||
}
|
}
|
||||||
@@ -31,5 +32,5 @@ button {
|
|||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: rgba (216, 222, 233, 0.1)
|
background-color: rgba (204, 204, 204, 0.1)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,5 +3,8 @@
|
|||||||
"export-gtkrc-20": true,
|
"export-gtkrc-20": true,
|
||||||
"export-index-theme": true,
|
"export-index-theme": true,
|
||||||
"export-xsettingsd": true,
|
"export-xsettingsd": true,
|
||||||
"export-gtk4-symlinks": true
|
"export-gtk4-symlinks": true,
|
||||||
|
"flatpak-export-gtk-theme-override": false,
|
||||||
|
"flatpak-export-icon-theme-override": false,
|
||||||
|
"flatpak-install-current-gtk-theme": false
|
||||||
}
|
}
|
||||||
@@ -6,20 +6,21 @@ configuration {
|
|||||||
modi: "combi,run,drun";
|
modi: "combi,run,drun";
|
||||||
|
|
||||||
show-icons: true;
|
show-icons: true;
|
||||||
icon-theme: "Nordzy-green-dark";
|
icon-theme: "Papirus-Dark";
|
||||||
}
|
}
|
||||||
|
|
||||||
@theme "/dev/null"
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
/* Cursor Dark */
|
||||||
* {
|
* {
|
||||||
bgdark: #272E33;
|
bgdark: #181818;
|
||||||
bgalt: #3C4841;
|
bgalt: #2b2b2b;
|
||||||
bggreen: #56635F;
|
bgraised: #313131;
|
||||||
fg0: #A7C080;
|
fg0: #cccccc;
|
||||||
fgalt: #4f5b58;
|
fgalt: #6e6e6e;
|
||||||
|
|
||||||
accent-color: #A7C080;
|
accent-color: #2472c8;
|
||||||
urgent-color: #DBBC7F;
|
urgent-color: #e2c08d;
|
||||||
|
|
||||||
font: "Roboto 12";
|
font: "Roboto 12";
|
||||||
|
|
||||||
@@ -32,7 +33,7 @@ configuration {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element selected {
|
element selected {
|
||||||
text-color: @bgalt;
|
text-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window {
|
||||||
@@ -49,7 +50,7 @@ mainbox {
|
|||||||
|
|
||||||
inputbar {
|
inputbar {
|
||||||
background-color: @bgalt;
|
background-color: @bgalt;
|
||||||
border-color: @bggreen;
|
border-color: @bgraised;
|
||||||
|
|
||||||
border: 2px;
|
border: 2px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@@ -60,7 +61,7 @@ inputbar {
|
|||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
text-color: @fg0;
|
text-color: @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
entry {
|
entry {
|
||||||
@@ -71,8 +72,8 @@ entry {
|
|||||||
message {
|
message {
|
||||||
margin: 12px 0 0;
|
margin: 12px 0 0;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border-color: @bggreen;
|
border-color: @bgraised;
|
||||||
background-color: @bggreen;
|
background-color: @bgraised;
|
||||||
}
|
}
|
||||||
|
|
||||||
textbox {
|
textbox {
|
||||||
@@ -96,15 +97,15 @@ element {
|
|||||||
}
|
}
|
||||||
|
|
||||||
element normal active {
|
element normal active {
|
||||||
text-color: @fg0;
|
text-color: @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
element alternate active {
|
element alternate active {
|
||||||
text-color: @fg0;
|
text-color: @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
element selected normal, element selected active {
|
element selected normal, element selected active {
|
||||||
background-color: @fg0;
|
background-color: @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
element-icon {
|
element-icon {
|
||||||
|
|||||||
@@ -10,36 +10,36 @@
|
|||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": ["hyprland/workspaces","hyprland/window"],
|
"modules-left": ["hyprland/workspaces","hyprland/window"],
|
||||||
"modules-center": ["clock"],
|
"modules-center": ["clock"],
|
||||||
"modules-right": ["pulseaudio", "backlight", "network", "battery", "cpu", "memory", "tray"],
|
"modules-right": ["pulseaudio", "network", "cpu", "memory", "tray"],
|
||||||
|
|
||||||
// Modules configuration
|
// Modules configuration
|
||||||
|
|
||||||
// "hyprland/workspaces": {
|
|
||||||
// "disable-scroll": true,
|
|
||||||
// //"all-outputs": true,
|
|
||||||
// "on-click": "activate",
|
|
||||||
// "format": "{icon}",
|
|
||||||
// "format-icons": {
|
|
||||||
// "empty": "",
|
|
||||||
// //"default": "",
|
|
||||||
// "default": "",
|
|
||||||
// "active": "",
|
|
||||||
// }
|
|
||||||
// },
|
|
||||||
|
|
||||||
"hyprland/workspaces": {
|
"hyprland/workspaces": {
|
||||||
"format": "{name}",
|
"disable-scroll": true,
|
||||||
"persistent_workspaces": {
|
//"all-outputs": true,
|
||||||
"1": [],
|
"on-click": "activate",
|
||||||
"2": [],
|
"format": "{icon}",
|
||||||
"3": [],
|
"format-icons": {
|
||||||
"4": [],
|
"empty": "",
|
||||||
"5": []
|
//"default": "",
|
||||||
},
|
"default": "",
|
||||||
"all-outputs": true,
|
"active": "",
|
||||||
"active-only": false,
|
}
|
||||||
"sort-by-number": true
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// "hyprland/workspaces": {
|
||||||
|
// "format": "{name}",
|
||||||
|
// "persistent_workspaces": {
|
||||||
|
// "1": [],
|
||||||
|
// "2": [],
|
||||||
|
// "3": [],
|
||||||
|
// "4": [],
|
||||||
|
// "5": []
|
||||||
|
// },
|
||||||
|
// "all-outputs": true,
|
||||||
|
// "active-only": false,
|
||||||
|
// "sort-by-number": true
|
||||||
|
// },
|
||||||
"keyboard-state": {
|
"keyboard-state": {
|
||||||
"numlock": false,
|
"numlock": false,
|
||||||
"capslock": false,
|
"capslock": false,
|
||||||
@@ -93,7 +93,6 @@
|
|||||||
"bat": "BAT2"
|
"bat": "BAT2"
|
||||||
},
|
},
|
||||||
"network": {
|
"network": {
|
||||||
"interface": "wlo1", // (Optional) To force the use of this interface
|
|
||||||
"format-wifi": "{essid} ",
|
"format-wifi": "{essid} ",
|
||||||
"format-ethernet": "{ipaddr}/{cidr} ",
|
"format-ethernet": "{ipaddr}/{cidr} ",
|
||||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
"tooltip-format": "{ifname} via {gwaddr} ",
|
||||||
@@ -124,13 +123,13 @@
|
|||||||
"tooltip": false,
|
"tooltip": false,
|
||||||
"format": "{} {icon}",
|
"format": "{} {icon}",
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"notification": "<span foreground='red'><sup></sup></span> ",
|
"notification": "<span foreground='#f14c4c'><sup></sup></span> ",
|
||||||
"none": "",
|
"none": "",
|
||||||
"dnd-notification": "<span foreground='red'><sup></sup></span> ",
|
"dnd-notification": "<span foreground='#f14c4c'><sup></sup></span> ",
|
||||||
"dnd-none": "",
|
"dnd-none": "",
|
||||||
"inhibited-notification": "<span foreground='red'><sup></sup></span> ",
|
"inhibited-notification": "<span foreground='#f14c4c'><sup></sup></span> ",
|
||||||
"inhibited-none": "",
|
"inhibited-none": "",
|
||||||
"dnd-inhibited-notification": "<span foreground='red'><sup></sup></span> ",
|
"dnd-inhibited-notification": "<span foreground='#f14c4c'><sup></sup></span> ",
|
||||||
"dnd-inhibited-none": ""
|
"dnd-inhibited-none": ""
|
||||||
},
|
},
|
||||||
"return-type": "json",
|
"return-type": "json",
|
||||||
@@ -149,6 +148,13 @@
|
|||||||
},
|
},
|
||||||
"exec-if": "which waybar-updates",
|
"exec-if": "which waybar-updates",
|
||||||
"exec": "waybar-updates --interval-seconds 5 --network-interval-seconds 300"
|
"exec": "waybar-updates --interval-seconds 5 --network-interval-seconds 300"
|
||||||
|
},
|
||||||
|
"idle_inhibitor": {
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"activated": "",
|
||||||
|
"deactivated": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
@define-color bg_dim #1e2326;
|
/* Cursor Dark */
|
||||||
@define-color bg0 #272e33;
|
@define-color bg_dim #141414;
|
||||||
@define-color bg2 #374145;
|
@define-color bg0 #181818;
|
||||||
@define-color fg #D3C6AA;
|
@define-color bg2 #2b2b2b;
|
||||||
@define-color red #E67E80;
|
@define-color fg #cccccc;
|
||||||
@define-color blue #7fbbb3;
|
@define-color red #f14c4c;
|
||||||
@define-color orange #e69875;
|
@define-color blue #3b8eea;
|
||||||
@define-color bg4 #495156;
|
@define-color orange #e2c08d;
|
||||||
|
@define-color bg4 #2472c8;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
transition: none;
|
transition: none;
|
||||||
@@ -37,6 +38,8 @@
|
|||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
background-color: @bg4;
|
background-color: @bg4;
|
||||||
|
/* @fg on the accent blue is too low-contrast to read */
|
||||||
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
|
|||||||
@@ -13,3 +13,53 @@ map J zoom out
|
|||||||
map i recolor
|
map i recolor
|
||||||
map p print
|
map p print
|
||||||
map g goto top
|
map g goto top
|
||||||
|
|
||||||
|
# ==========================
|
||||||
|
# === Cursor Dark ===
|
||||||
|
# ==========================
|
||||||
|
# bg #181818 | raised #2b2b2b | popup #202020 | text #cccccc
|
||||||
|
# accent #2472c8 | selection #264f78
|
||||||
|
|
||||||
|
# Chrome
|
||||||
|
set default-bg "#181818"
|
||||||
|
set default-fg "#cccccc"
|
||||||
|
set statusbar-bg "#2b2b2b"
|
||||||
|
set statusbar-fg "#cccccc"
|
||||||
|
set inputbar-bg "#181818"
|
||||||
|
set inputbar-fg "#cccccc"
|
||||||
|
set render-loading-bg "#181818"
|
||||||
|
set render-loading-fg "#9d9d9d"
|
||||||
|
|
||||||
|
# Notifications. Error/warning backgrounds are VS Code's input-validation
|
||||||
|
# colors, so the error tint matches dunst's critical notifications.
|
||||||
|
set notification-bg "#2b2b2b"
|
||||||
|
set notification-fg "#cccccc"
|
||||||
|
set notification-error-bg "#5a1d1d"
|
||||||
|
set notification-error-fg "#ffffff"
|
||||||
|
set notification-warning-bg "#352a05"
|
||||||
|
set notification-warning-fg "#ffffff"
|
||||||
|
|
||||||
|
# Completion and index reuse the popup/selection colors from nvim
|
||||||
|
set completion-bg "#202020"
|
||||||
|
set completion-fg "#cccccc"
|
||||||
|
set completion-group-bg "#181818"
|
||||||
|
set completion-group-fg "#9d9d9d"
|
||||||
|
set completion-highlight-bg "#264f78"
|
||||||
|
set completion-highlight-fg "#ffffff"
|
||||||
|
set index-bg "#181818"
|
||||||
|
set index-fg "#cccccc"
|
||||||
|
set index-active-bg "#264f78"
|
||||||
|
set index-active-fg "#ffffff"
|
||||||
|
|
||||||
|
# Search: every match subtle, the current one in the accent blue
|
||||||
|
set highlight-color "#264f78"
|
||||||
|
set highlight-active-color "#2472c8"
|
||||||
|
|
||||||
|
# Render the document itself dark; 'i' (mapped above) toggles it back off.
|
||||||
|
# Despite the names, lightcolor is what LIGHT areas become (the page
|
||||||
|
# background) and darkcolor is what DARK areas become (the text).
|
||||||
|
set recolor true
|
||||||
|
set recolor-lightcolor "#181818"
|
||||||
|
set recolor-darkcolor "#cccccc"
|
||||||
|
# Keep colored figures and links recognisable instead of crushing them to mono
|
||||||
|
set recolor-keephue true
|
||||||
|
|||||||
Reference in New Issue
Block a user