Forráskód Böngészése

dev: automated commit - 2026-01-26 22:17:37

Mariano Z. 1 hete
szülő
commit
dc4148f324
2 módosított fájl, 7 hozzáadás és 6 törlés
  1. 5 4
      i3/.config/i3/config
  2. 2 2
      local-bin/.local/bin/dev-launcher

+ 5 - 4
i3/.config/i3/config

@@ -87,8 +87,7 @@ bindsym $mod+w layout toggle tabbed split
 bindsym $mod+Ctrl+e layout toggle split
 
 # Floating
-bindsym $mod+Shift+space floating toggle
-bindsym $mod+space       focus mode_toggle
+bindsym $mod+space       floating toggle
 
 # Parent container
 bindsym $mod+a focus parent
@@ -152,6 +151,7 @@ bindsym $mod+y exec --no-startup-id clipmenu -i -fn 'monospace:size=12' -nb '#19
 
 # Project launcher
 bindsym $mod+t exec ~/.local/bin/dev-launcher ~/Dev
+bindsym $mod+shift+t exec ~/.local/bin/dev-launcher --clear-cache ~/Dev
 # File manager (match niri)
 bindsym $mod+e exec --no-startup-id ~/.local/bin/i3-launch-or-focus thunar
 # StrongDM UI
@@ -189,7 +189,7 @@ bindsym $mod+minus       scratchpad show
 ###############################################################################
 for_window [class=".*"]                   border pixel 0
 for_window [instance="dropdown"]          floating enable
-for_window [instance="dropdown"]          resize set 2366 1568
+for_window [instance="dropdown"]          resize set 1800 1268
 for_window [instance="dropdown"]          move scratchpad
 for_window [instance="dropdown"]          border pixel 1
 
@@ -227,7 +227,7 @@ bindsym XF86AudioPrev  exec --no-startup-id playerctl previous
 bar {
         status_command i3status-rs ~/.config/i3status-rust/config.toml
         position top
-        font pango:JetBrainsMono Nerd Font 9
+        font pango:JetBrainsMono Nerd Font 12
         strip_workspace_numbers false
 
         colors {
@@ -271,6 +271,7 @@ exec --no-startup-id alacritty --class dropdown
 # Apps
 exec --no-startup-id easyeffects --gapplication-service
 exec --no-startup-id nm-applet
+exec --no-startup-id fastcompmgr -o 0.4 -r 12 -c -C
 # exec --no-startup-id zen-twilight
 # exec --no-startup-id thunderbird
 # exec --no-startup-id discord

+ 2 - 2
local-bin/.local/bin/dev-launcher

@@ -52,13 +52,13 @@ def find_git_repos(dev_dir, no_cache=False):
 
     if _has_fd():
         result = subprocess.run(
-            ["fd", "-H", "-t", "d", "^\\.git$", dev_dir, "-d", "3", "-0"],
+            ["fd", "-H", "-t", "d", "^\\.git$", dev_dir, "-d", "4", "-0"],
             capture_output=True,
             text=True,
         )
     else:
         result = subprocess.run(
-            ["find", dev_dir, "-maxdepth", "3", "-type", "d", "-name", ".git", "-print0"],
+            ["find", dev_dir, "-maxdepth", "4", "-type", "d", "-name", ".git", "-print0"],
             capture_output=True,
             text=True,
         )