Compare commits
13 commits
6e11007269
...
699e015fcc
Author | SHA1 | Date | |
---|---|---|---|
|
699e015fcc | ||
|
c804f1f324 | ||
|
e2c764c20f | ||
|
8ea9f38613 | ||
|
766df12b57 | ||
|
97c6bc0b6f | ||
|
e407a7402d | ||
|
3e6fda1100 | ||
|
5814d428bb | ||
|
37f3de534d | ||
|
2764e55afa | ||
|
e2f1bfaf78 | ||
|
6e372936b1 |
|
@ -3,7 +3,7 @@
|
|||
TERM = "xterm-256color"
|
||||
|
||||
[window]
|
||||
padding = { x = 10, y = 10 }
|
||||
padding = { x = 20, y = 20 }
|
||||
dynamic_padding = true
|
||||
decorations = "Full"
|
||||
opacity = 1
|
||||
|
|
|
@ -11,77 +11,81 @@ function filesize
|
|||
end
|
||||
|
||||
function _fetch
|
||||
# if which pfetch > /dev/null 2>&1 && [ "$VSCODE_INJECTION" != "1" ]
|
||||
# export PF_INFO="ascii title os host kernel uptime memory de"
|
||||
# #export PF_ASCII="arch"
|
||||
# pfetch
|
||||
# end
|
||||
if which ufetch > /dev/null 2>&1 && [ "$VSCODE_INJECTION" != "1" ]
|
||||
ufetch
|
||||
end
|
||||
end
|
||||
|
||||
function _set_env
|
||||
if [ "$TERM" = "foot" ] || [ "$TERM" = "xterm-kitty" ]
|
||||
alias ssh="TERM=xterm-256color $(which ssh)"
|
||||
alias gg="TERM=xterm-256color $(which gg)"
|
||||
end
|
||||
set -x VIRTUAL_ENV_DISABLE_PROMPT
|
||||
set -x PF_INFO "ascii title os host kernel uptime memory de"
|
||||
set -x FZF_DEFAULT_OPTS "\
|
||||
--color=bg+:#1e1e2e,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \
|
||||
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
|
||||
--color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
|
||||
--color=selected-bg:#45475a \
|
||||
--multi"
|
||||
end
|
||||
|
||||
function _set_aliases
|
||||
if which eza > /dev/null 2>&1
|
||||
alias ls="eza --icons=auto"
|
||||
else if which exa > /dev/null 2>&1
|
||||
alias ls="exa --icons=auto"
|
||||
end
|
||||
|
||||
if which bat > /dev/null 2>&1
|
||||
alias cat="bat"
|
||||
else if which batcat > /dev/null 2>&1
|
||||
alias cat="batcat"
|
||||
end
|
||||
|
||||
if which python > /dev/null 2>&1
|
||||
alias py="python"
|
||||
end
|
||||
|
||||
if which distrobox-enter > /dev/null 2>&1
|
||||
alias denter=distrobox-enter
|
||||
end
|
||||
|
||||
if which nvim > /dev/null 2>&1
|
||||
alias v "nvim"
|
||||
alias V "sudoedit"
|
||||
set -x EDITOR nvim
|
||||
end
|
||||
|
||||
alias cdt "cd (mktemp -d)"
|
||||
alias ":q" exit
|
||||
end
|
||||
|
||||
function arm64cc-env
|
||||
export ARCH=arm64
|
||||
export hardeningDisable=all
|
||||
export CROSS_COMPILE=aarch64-linux-gnu-
|
||||
set -gx ARCH arm64
|
||||
set -gx hardeningDisable all
|
||||
set -gx CROSS_COMPILE aarch64-linux-gnu-
|
||||
end
|
||||
|
||||
if which pyenv > /dev/null 2>&1
|
||||
pyenv init - | source
|
||||
end
|
||||
|
||||
if [ "$TERM" = "foot" ] || [ "$TERM" = "xterm-kitty" ]
|
||||
alias ssh="TERM=xterm-256color $(which ssh)"
|
||||
alias gg="TERM=xterm-256color $(which gg)"
|
||||
end
|
||||
|
||||
if status is-interactive
|
||||
bind \cl 'clear; _fetch; commandline -f repaint'
|
||||
bind \cb btop
|
||||
bind \cs 'source ~/.config/fish/config.fish'
|
||||
bind \cl 'clear; _fetch; commandline -f repaint'
|
||||
bind \cb btop
|
||||
bind \cs 'source ~/.config/fish/config.fish'
|
||||
|
||||
if which eza > /dev/null 2>&1
|
||||
alias ls="eza --icons=auto"
|
||||
else if which exa > /dev/null 2>&1
|
||||
alias ls="exa --icons=auto"
|
||||
end
|
||||
if which zoxide > /dev/null 2>&1
|
||||
zoxide init --cmd cd fish | source
|
||||
end
|
||||
|
||||
if [ "$reload" = "" ]
|
||||
_fetch
|
||||
end
|
||||
|
||||
if which bat > /dev/null 2>&1
|
||||
alias cat="bat"
|
||||
else if which batcat > /dev/null 2>&1
|
||||
alias cat="batcat"
|
||||
end
|
||||
|
||||
if which python > /dev/null 2>&1
|
||||
alias py="python"
|
||||
end
|
||||
|
||||
if which distrobox-enter > /dev/null 2>&1
|
||||
alias denter=distrobox-enter
|
||||
end
|
||||
|
||||
if which nvim > /dev/null 2>&1
|
||||
alias v="nvim"
|
||||
alias edit="nvim"
|
||||
alias e="nvim"
|
||||
alias V="sudoedit"
|
||||
export EDITOR=nvim
|
||||
end
|
||||
|
||||
alias cdt="cd (mktemp -d)"
|
||||
alias ":q"=exit
|
||||
|
||||
if which zoxide > /dev/null 2>&1
|
||||
zoxide init --cmd cd fish | source
|
||||
end
|
||||
|
||||
if [ "$reload" = "" ]
|
||||
_fetch
|
||||
end
|
||||
|
||||
export VIRTUAL_ENV_DISABLE_PROMPT=0
|
||||
set reload "done"
|
||||
set reload "done"
|
||||
_set_aliases
|
||||
end
|
||||
|
||||
fish_add_path /home/timoxa0/.spicetify
|
||||
_set_env
|
||||
|
|
|
@ -12,7 +12,7 @@ bind = SUPER, Q, killactive,
|
|||
bind = SUPER, M, exit,
|
||||
bind = SUPER, C, togglefloating,
|
||||
bind = SUPER, SPACE, exec, $menu
|
||||
bind = SUPER, P, pseudo, # dwindle
|
||||
bind = SUPER, Z, pseudo, # dwindle
|
||||
bind = SUPER, X, togglesplit, # dwindle
|
||||
bind = SUPER, Home, exec, $sshot region
|
||||
bind = SUPER, Prior, exec, $sshot window
|
||||
|
|
|
@ -7,7 +7,7 @@ env = XDG_SESSION_TYPE,wayland
|
|||
env = XDG_SESSION_DESKTOP,Hyprland
|
||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||||
env = QT_QPA_PLATFORM,wayland
|
||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||||
env = QT_QPA_PLATFORMTHEME,gtk3
|
||||
env = EDITOR,nvim
|
||||
env = ELECTRON_OZONE_PLATFORM_HINT,wayland
|
||||
env = MOZ_ENABLE_WAYLAND=1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
source = colors.conf
|
||||
|
||||
$terminal = alacritty
|
||||
$fileManager = nemo
|
||||
$fileManager = nautilus -w
|
||||
$menu = ~/.cargo/bin/hyprlauncher
|
||||
$browser = zen-browser
|
||||
$discord = vesktop
|
||||
|
|
|
@ -3,8 +3,12 @@
|
|||
#
|
||||
|
||||
# Waybar
|
||||
# layerrule = blur, waybar
|
||||
# layerrule = ignorezero, waybar
|
||||
layerrule = blur, waybar
|
||||
layerrule = ignorezero, waybar
|
||||
|
||||
# Hyprlauncher
|
||||
layerrule = blur, gtk4-layer-shell
|
||||
layerrule = ignorezero, gtk4-layer-shell
|
||||
|
||||
# Mako
|
||||
layerrule = blur, notifications
|
||||
|
|
|
@ -6,20 +6,20 @@
|
|||
"theme": {
|
||||
"colors": {
|
||||
"border": "#89b4fa",
|
||||
"item_bg": "#181825",
|
||||
"item_bg_hover": "#89b4fa",
|
||||
"item_bg_selected": "#89b4fa",
|
||||
"item_bg": "#00000000",
|
||||
"item_bg_hover": "#89b4faef",
|
||||
"item_bg_selected": "#89b4faef",
|
||||
"item_description": "#bac2de",
|
||||
"item_description_selected": "#181825",
|
||||
"item_name": "#cdd6f4",
|
||||
"item_name_selected": "#1e1e2e",
|
||||
"item_path": "#a6adc8",
|
||||
"item_path_selected": "#181825",
|
||||
"search_bg": "#181825",
|
||||
"search_bg": "#181825aa",
|
||||
"search_bg_focused": "#89b4fa",
|
||||
"search_caret": "#cdd6f4",
|
||||
"search_text": "#cdd6f4",
|
||||
"window_bg": "#1e1e2e"
|
||||
"window_bg": "#1e1e2e88"
|
||||
},
|
||||
"corners": {
|
||||
"list_item": 8,
|
||||
|
@ -41,7 +41,7 @@
|
|||
}
|
||||
},
|
||||
"window": {
|
||||
"anchor": "bottom",
|
||||
"anchor": "center",
|
||||
"border_width": 3,
|
||||
"custom_navigate_keys": {
|
||||
"delete_word": "h",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[Settings]
|
||||
folder = /mnt/data/Wallpapers/unsorted
|
||||
backend = hyprpaper
|
||||
last_wallpaper = /mnt/data/Wallpapers/unsorted/galaktika_zvezdy_nebo_temnyj_tumannost_101228_2560x1440.jpg
|
||||
last_wallpaper = /mnt/data/Wallpapers/unsorted/neon-dunes-8k.jpg
|
||||
|
|
|
@ -3,10 +3,42 @@
|
|||
|
||||
---@type ChadrcConfig
|
||||
local M = {}
|
||||
|
||||
M = {
|
||||
base46 = {
|
||||
theme = "catppuccin",
|
||||
transparency = true
|
||||
},
|
||||
|
||||
ui = {
|
||||
statusline = {
|
||||
theme = "minimal",
|
||||
separator_style = "round",
|
||||
order = { "mode", "file", "git", "%=", "cwd"},
|
||||
}
|
||||
},
|
||||
|
||||
nvdash = {
|
||||
load_on_startup = true,
|
||||
header = {
|
||||
" ",
|
||||
" ▄▄ ▄ ▄▄▄▄▄▄▄ ",
|
||||
" ▄▀███▄ ▄██ █████▀ ",
|
||||
" ██▄▀███▄ ███ ",
|
||||
" ███ ▀███▄ ███ ",
|
||||
" ███ ▀██ ███ ",
|
||||
" ███ ▀ ███ ",
|
||||
" ▀██ █████▄▀█▀▄██████▄ ",
|
||||
" ▀ ▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀ ",
|
||||
" ",
|
||||
" ",
|
||||
},
|
||||
buttons = {
|
||||
{ txt = " Find File", keys = "ff", cmd = "Telescope find_files" },
|
||||
{ txt = " Recent Files", keys = "fo", cmd = "Telescope oldfiles" },
|
||||
{ txt = " Find Word", keys = "fw", cmd = "Telescope live_grep" },
|
||||
{ txt = " Exit", keys = ":q!", cmd = "q!" },
|
||||
}
|
||||
}
|
||||
-- hl_override = {
|
||||
-- Comment = { italic = true },
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Appearance]
|
||||
color_scheme_path=/home/timoxa0/.config/qt5ct/colors/Catppuccin-Mocha.conf
|
||||
custom_palette=true
|
||||
standard_dialogs=default
|
||||
standard_dialogs=gtk3
|
||||
style=Fusion
|
||||
|
||||
[Fonts]
|
||||
|
@ -24,7 +24,7 @@ underline_shortcut=1
|
|||
wheel_scroll_lines=3
|
||||
|
||||
[SettingsWindow]
|
||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x80\0\0\0\0\0\0\xe\"\0\0\x5\\\0\0\a\x80\0\0\0\0\0\0\xe\x37\0\0\x5v\0\0\0\0\x2\0\0\0\rp\0\0\a\x80\0\0\0\0\0\0\xe\"\0\0\x5\\)
|
||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\a\x80\0\0\0\0\0\0\xe\x4\0\0\x5H\0\0\a\x80\0\0\0\0\0\0\xe\x37\0\0\x5\x8a\0\0\0\0\x2\0\0\0\rp\0\0\a\x80\0\0\0\0\0\0\xe\x4\0\0\x5H)
|
||||
|
||||
[Troubleshooting]
|
||||
force_raster_widgets=1
|
||||
|
|
|
@ -20,29 +20,40 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
|
|||
set -g @plugin 'catppuccin/tmux'
|
||||
set -g @plugin 'christoomey/vim-tmux-navigator'
|
||||
set -g @plugin 'tmux-plugins/tmux-yank'
|
||||
set -g @plugin 'tmux-plugins/tmux-cpu'
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
||||
# catppuccin
|
||||
set -g @catppuccin_flavour 'mocha'
|
||||
set -g @catppuccin_window_status_style "rounded"
|
||||
set -g @catppuccin_status_background "#1e1e2e"
|
||||
set -g @catppuccin_status_left_separator " "
|
||||
set -g @catppuccin_status_right_separator ""
|
||||
set -g @catppuccin_status_fill "icon"
|
||||
set -g @catppuccin_status_connect_separator "no"
|
||||
|
||||
# status
|
||||
set -g status-right-length 100
|
||||
set -g status-left-length 100
|
||||
set -g status-left ""
|
||||
set -g status-right "#{E:@catppuccin_status_application}"
|
||||
set -agF status-right "#{E:@catppuccin_status_cpu}"
|
||||
set -g status-right ""
|
||||
set -ag status-right "#{E:@catppuccin_status_session}"
|
||||
set -ag status-right "#{E:@catppuccin_status_uptime}"
|
||||
|
||||
set -as terminal-features ",alacritty*:RGB"
|
||||
set -as terminal-features ",foot:RGB"
|
||||
set -g mouse on
|
||||
set -g default-shell /bin/fish
|
||||
set-window-option -g mode-keys vi
|
||||
|
||||
# binds
|
||||
bind-key -T copy-mode-vi v send-keys -X begin-selection
|
||||
bind-key -T copy-mode-vi C-v send-keys -X rectangle-selection
|
||||
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel
|
||||
|
||||
unbind %
|
||||
unbind '"'
|
||||
bind ']' split-window -v -c "#{pane_current_path}"
|
||||
bind '\' split-window -h -c "#{pane_current_path}"
|
||||
|
||||
bind C-l send-keys 'C-l'
|
||||
|
||||
run '~/.config/tmux/tpm/tpm'
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
{
|
||||
"discordBranch": "stable",
|
||||
"minimizeToTray": true,
|
||||
"arRPC": true,
|
||||
"arRPC": false,
|
||||
"splashColor": "rgb(205, 214, 244)",
|
||||
"splashBackground": "rgb(30, 30, 46)"
|
||||
"splashBackground": "rgb(30, 30, 46)",
|
||||
"staticTitle": true,
|
||||
"enableMenu": true,
|
||||
"splashTheming": true,
|
||||
"disableMinSize": false
|
||||
}
|
|
@ -2,10 +2,10 @@
|
|||
"autoUpdate": true,
|
||||
"autoUpdateNotification": true,
|
||||
"useQuickCss": true,
|
||||
"themeLinks": [
|
||||
"https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css"
|
||||
"themeLinks": [],
|
||||
"enabledThemes": [
|
||||
"catppuccin-mocha-blue.theme.css"
|
||||
],
|
||||
"enabledThemes": [],
|
||||
"enableReactDevtools": false,
|
||||
"frameless": false,
|
||||
"transparent": false,
|
||||
|
@ -610,6 +610,6 @@
|
|||
"authenticated": true,
|
||||
"url": "https://api.vencord.dev/",
|
||||
"settingsSync": true,
|
||||
"settingsSyncVersion": 1731730708667
|
||||
"settingsSyncVersion": 1733731663448
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -21,6 +21,7 @@
|
|||
@define-color surface2 #585b70;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface0 #313244;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color mantle #181825;
|
||||
@define-color base rgba(30, 30, 46, 0.2);
|
||||
@define-color on-accent #1e1e2e;
|
||||
@define-color mantle rgba(24, 24, 37, 0.4);
|
||||
@define-color crust #11111b;
|
||||
|
|
|
@ -12,7 +12,7 @@ window#waybar {
|
|||
/* background: @base; */
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
border-radius: 0px 0px 14px 14px;
|
||||
border-radius: 14px 14px 0px 0px;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
|
@ -34,15 +34,15 @@ window#waybar {
|
|||
}
|
||||
#workspaces button:hover {
|
||||
background-color: @lavender;
|
||||
color: @base;
|
||||
color: @on-accent;
|
||||
}
|
||||
#workspaces button.active {
|
||||
background-color: @blue;
|
||||
color: @base
|
||||
color: @on-accent;
|
||||
}
|
||||
#workspaces button.active:hover {
|
||||
background-color: @blue;
|
||||
color: @base;
|
||||
color: @on-accent;
|
||||
}
|
||||
|
||||
#custom-power, #custom-runner, #battery,
|
||||
|
@ -87,5 +87,5 @@ window#waybar {
|
|||
#clock {
|
||||
padding: 0px 10px;
|
||||
margin: 4px 5px 4px 2.5px;
|
||||
font-size: 15px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"position": "top",
|
||||
"position": "bottom",
|
||||
"height": 34,
|
||||
"width": 900,
|
||||
"width": 1000,
|
||||
"spacing": 0,
|
||||
"layer": "top",
|
||||
"margin-bottom": -15,
|
||||
"margin-top": -15,
|
||||
"modules-left": ["tray", "custom/spotify"],
|
||||
"modules-center": ["hyprland/workspaces"],
|
||||
"modules-right": ["wireplumber", "hyprland/language", "clock"],
|
||||
|
@ -69,8 +69,7 @@
|
|||
|
||||
"clock": {
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"format": "{:%H:%M}",
|
||||
"format": "{:%H:%M %b %d}",
|
||||
"timezone": "Asia/Yekaterinburg"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue