diff --git a/.config/nvim/fnl/settings/neo-tree.fnl b/.config/nvim/fnl/settings/neo-tree.fnl index 1a8aa31..0da5a1e 100644 --- a/.config/nvim/fnl/settings/neo-tree.fnl +++ b/.config/nvim/fnl/settings/neo-tree.fnl @@ -45,7 +45,7 @@ _ (do (exec! [silent !file -bL --mime `(.. "'" quoted_path "'") - | grep -qv "'" ^text\\|^inode\\|^application/json "'"]) + | grep -qv "^text\\|^inode\\|^application/json"]) (if (= vim.v.shell_error 1) ((. (require :neo-tree.sources.filesystem.commands) :open_with_window_picker) state) (exec! [silent diff --git a/.config/sway/config b/.config/sway/config index fa990d1..65a1385 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -21,23 +21,26 @@ set $term kitty # set $menu dmenu_path | dmenu | xargs swaymsg exec -- set $menu rofi -no-levenshtein-sort -color-enabled -show run\ -run-command "zsh -i -c '{cmd}'" | xargs swaymsg exec -- -set $srclocker swaylock -c 222222 -u -i eDP-1:~/wallpapers/radiance.png\ - -i DP-5:~/wallpapers/hornet.jpg -i DP-4:~/wallpapers/knight.jpg +#set $srclocker swaylock -c 222222 -u -i eDP-1:~/wallpapers/radiance.png\ +# -i DP-5:~/wallpapers/hornet.jpg -i DP-4:~/wallpapers/knight.jpg ### Output configuration # # Default wallpaper (more resolutions are available in /usr/share/backgrounds/sway/) # output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill output * pos 1920 0 res 1920 1080 -#output eDP-1 pos 0 300 res 3840 2160 scale 1 -output eDP-1 pos 0 300 res 3840 2160 -output "Goldstar Company Ltd M2080D 0x00000101" pos 1920 0 res 1920 1080 -#output "Dell Inc. DELL U2717D JXRPT83GAHKS" pos 3840 0 res 2560 1440 -output "Dell Inc. DELL U2717D JXRPT83GAHKS" pos 1920 0 res 2560 1440 -#output "Dell Inc. DELL U2717D JXRPT83GAHKS" pos 1920 0 res 1920 1080 -output HDMI-A-3 pos 1920 0 res 1920 1080 -output * bg ~/wallpapers/filianore-u.jpg fill -output "Beihai Century Joint Innovation Technology Co.,Ltd MD49DQHD-2 0000000000000" pos 1920 0 res 5120 1440 +output eDP-1 { + pos 0 0 + res 2256 1504 + scale 1.5 + bg "~/wallpapers/priscilla.png" fill +} +output "Beihai Century Joint Innovation Technology Co.,Ltd MD49DQHD-2 0000000000000" { + pos 1504 0 + res 5120 1440 + bg "~/wallpapers/ranni.png" fill +} + focus output eDP-1 bindswitch --reload --locked lid:on output eDP-1 disable @@ -86,7 +89,7 @@ input "*" { xkb_variant latin9 } -input "1739:0:Synaptics_TM3276-031" { +input "2362:628:PIXA3854:00_093A:0274_Touchpad" { tap enabled natural_scroll enabled } @@ -258,7 +261,7 @@ bindsym Ctrl+Alt+l exec $srclocker bar { position top pango_markup enabled - font pango:DejaVu Sans Mono, FontAwesome 10 + font pango:DejaVuSansM Nerd Font Mono, FontAwesome 10 # When the status_command prints a new line to stdout, swaybar updates. # The default just shows the current date and time. @@ -290,7 +293,11 @@ include /etc/sway/config.d/* # Assignments assign [class="discord"] workspace 3 assign [class="Spotify"] workspace 3 -# for_window [class="Spotify"] opacity 0.8 + +for_window [class="Spotify"] { + floating enable + sticky enable +} for_window [app_id="boop-gtk"] floating enable #exec redshift -O 4500 -m wayland @@ -304,7 +311,10 @@ for_window [class="Tor Browser"] floating enable for_window [class="steam_proton"] floating enable -for_window [app_id="mpv"] floating enable +for_window [app_id="mpv"] { + floating enable + sticky enable +} for_window [app_id="kitty-scratch"] { border pixel 1 diff --git a/.config/waybar/style.css b/.config/waybar/style.css index b6c8ddc..0115cff 100644 --- a/.config/waybar/style.css +++ b/.config/waybar/style.css @@ -1,5 +1,5 @@ * { - font-family: DejaVu Sans Mono, devicons, "Font Awesome 6 Free"; + font-family: "DejaVu Sans Mono", "Font Awesome 6 Free"; font-size: 13px; } diff --git a/.gitmodules b/.gitmodules index f2345a2..98d7b61 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule ".config/nvim/solarized.nvim"] path = .config/nvim/themes/solarized.nvim - url = ssh://git@git.rhiobet.sh:42424/rhiobet/solarized.nvim.git + url = https://git.rhiobet.sh/rhiobet/solarized.nvim.git diff --git a/.zshrc b/.zshrc index 2b6a521..ded3482 100644 --- a/.zshrc +++ b/.zshrc @@ -38,6 +38,9 @@ eval $(thefuck --alias) #alias discord="export GDK_BACKEND=wayland && discord-canary" +export MAVEN_OPTS="-Xmx2048m" +export _JAVA_AWT_WM_NONREPARENTING=1 + # >>> mamba initialize >>> # !! Contents within this block are managed by 'mamba init' !! export MAMBA_EXE="/usr/bin/micromamba"; diff --git a/wallpapers/filianore-u.jpg b/wallpapers/filianore-u.jpg deleted file mode 100644 index 155de9d..0000000 Binary files a/wallpapers/filianore-u.jpg and /dev/null differ diff --git a/wallpapers/filianore.jpg b/wallpapers/filianore.jpg deleted file mode 100644 index fe2a97b..0000000 Binary files a/wallpapers/filianore.jpg and /dev/null differ diff --git a/wallpapers/hornet.jpg b/wallpapers/hornet.jpg deleted file mode 100644 index 7d0c4cd..0000000 Binary files a/wallpapers/hornet.jpg and /dev/null differ diff --git a/wallpapers/knight.jpg b/wallpapers/knight.jpg deleted file mode 100644 index f34260d..0000000 Binary files a/wallpapers/knight.jpg and /dev/null differ diff --git a/wallpapers/priscilla.png b/wallpapers/priscilla.png new file mode 100644 index 0000000..c05a9fa Binary files /dev/null and b/wallpapers/priscilla.png differ diff --git a/wallpapers/radiance.png b/wallpapers/radiance.png deleted file mode 100644 index b0178ac..0000000 Binary files a/wallpapers/radiance.png and /dev/null differ diff --git a/wallpapers/ranni.png b/wallpapers/ranni.png new file mode 100644 index 0000000..1e50d71 Binary files /dev/null and b/wallpapers/ranni.png differ