Compare commits

...

7 commits

7 changed files with 30 additions and 16 deletions

View file

@ -1,7 +1,6 @@
#!/usr/bin/env bash
dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=Hyprland &
gsettings set org.gnome.desktop.wm.preferences button-layout ':' &
waybar -c ~/.config/waybar/waybar.jsonc -s ~/.config/waybar/waybar.css &
hyprwall -r &
hypridle -c ~/.config/hypr/hypridle.conf &
@ -9,8 +8,13 @@ hypridle -c ~/.config/hypr/hypridle.conf &
mako -c ~/.config/mako/mako.conf &
/usr/lib/xdg-desktop-portal -r &
nm-applet &
blueman-applet &
wvkbd-mobintl --landscape-layers landscape,landscapespecial,cyrillic -L 300 -fn "JetBrainsMono 20" -R 10 --bg 00000000 --fg 313244 --fg-sp 1e1e2e --press 1e1e2e --press-sp 181825 --text cdd6f4 --text-sp cdd6f4 --hidden &
wvkbd-mobintl --landscape-layers landscape,landscapespecial,cyrillic \
-L 300 -fn "JetBrainsMono 20" -R 10 \
--bg 00000000 --fg 313244 --fg-sp 1e1e2e \
--press 1e1e2e --press-sp 181825 \
--text cdd6f4 --text-sp cdd6f4 --hidden &
clash-verge &
bash -c "sleep 2; easyeffects --gapplication-service" &

View file

@ -1,4 +1,5 @@
exec-once = gsettings set org.gnome.desktop.interface gtk-theme "catppuccin-mocha-blue-standard+default"
exec-once = gsettings set org.gnome.desktop.wm.preferences button-layout ':'
exec-once = gsettings set org.gnome.desktop.interface icon-theme Papirus-Dark
exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
exec-once = gsettings set org.gnome.desktop.interface gtk-color-scheme 'prefer-dark'

View file

@ -2,8 +2,8 @@ source = appearance.conf
# BACKGROUND
background {
monitor =
path = ~/.config/hypr/wallpaper.png
monitor = DSI-1
path = /home/tx0/Pictures/Wallpapers/galaktika_zvezdy_nebo_temnyj_tumannost_101228_2560x1440.jpg
blur_passes = 3
contrast = 0.8916
brightness = 0.8172
@ -20,7 +20,7 @@ general {
# INPUT FIELD
input-field {
monitor = DP-1
monitor = DSI-1
size = 200, 40
outline_thickness = 2
dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8
@ -39,7 +39,7 @@ input-field {
# TIME
label {
monitor = DP-1
monitor = DSI-1
text = cmd[update:1000] echo "$(date +"%H:%M")"
color = $fg
font_size = 240
@ -51,7 +51,7 @@ label {
# USER
label {
monitor = DP-1
monitor = DSI-1
text = Enter your password
color = $fg
font_size = 14

View file

@ -1,4 +1,4 @@
chromakey_background = 30,30,46
# chromakey_background = 30,30,46
# chromakey_background = 36,36,56
plugin {
touch_gestures {
@ -7,13 +7,13 @@ plugin {
sensitivity = 4.0
# must be >= 3
workspace_swipe_fingers = 4
workspace_swipe_fingers = 3
# switching workspaces by swiping from an edge, this is separate from workspace_swipe_fingers
# and can be used at the same time
# possible values: l, r, u, or d
# to disable it set it to anything else
workspace_swipe_edge = d
workspace_swipe_edge = u
# in milliseconds
long_press_delay = 400
@ -34,12 +34,12 @@ plugin {
}
}
hyprgrass-bind = , swipe:3:u, exec, $menu
hyprgrass-bind = , swipe:3:d, togglefloating
hyprgrass-bind = , tap:3, killactive
hyprgrass-bind = , tap:2, togglefloating
hyprgrass-bind = , edge:d:u, exec, killall -34 wvkbd-mobintl
hyprgrass-bind = , edge:l:u, exec, brightnessctl set 5%+
hyprgrass-bind = , edge:l:d, exec, brightnessctl set 5%-
hyprgrass-bind = , edge:r:l, killactive
hyprgrass-bind = , edge:l:r, togglesplit
hyprgrass-bindm = , longpress:3, movewindow
hyprgrass-bindm = , longpress:2, resizewindow
hyprgrass-bindm = , longpress:2, movewindow
hyprgrass-bindm = , longpress:3, resizewindow

View file

@ -1,7 +1,7 @@
sort=-time
layer=overlay
output=DP-1
anchor=top-right
anchor=bottom-right
background-color=#121318bb
width=300
height=110

View file

@ -13,4 +13,7 @@ M = {
-- ["@comment"] = { italic = true },
-- },
}
if vim.g.neovide then
M.base46.transparency = false
end
return M

View file

@ -1,12 +1,18 @@
require "nvchad.options"
local o = vim.o
local g = vim.g
o.tabstop = 4 -- A TAB character looks like 4 spaces
o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
o.shiftwidth = 4 -- Number of spaces inserted when indenting
o.cursorlineopt ='both' -- to enable cursor line!
if g.neovide then
o.guifont = "JetBrainsMono Nerd Font Mono:h14"
g.neovide_cursor_trail_size = 0.3
end
vim.filetype.add({
extension = {
lnibuild = "bash"