diff --git a/dotdot/.xprofile b/dotdot/.xprofile index 638bad1..a8f2eed 100755 --- a/dotdot/.xprofile +++ b/dotdot/.xprofile @@ -25,8 +25,8 @@ xss-lock --transfer-sleep-lock -- i3lock-fancy --nofork & nextcloud --background & # Bluetooth utils -# blueberry-tray & -blueman-applet & +blueberry-tray & +# blueman-applet & # Auto-xrandr x-on-resize -c ~/.config/utils/auto_xrandr.sh & diff --git a/dotdot/.zshrc b/dotdot/.zshrc index c542484..2216233 100644 --- a/dotdot/.zshrc +++ b/dotdot/.zshrc @@ -44,7 +44,7 @@ function y() { export EDITOR=nvim export NVM_DIR="$HOME/.nvm" # Slows start time -# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # bun completions [ -s "/home/dqnid/.bun/_bun" ] && source "/home/dqnid/.bun/_bun" @@ -53,3 +53,7 @@ export NVM_DIR="$HOME/.nvm" export BUN_INSTALL="$HOME/.bun" export PATH="$BUN_INSTALL/bin:$PATH" export PATH="$HOME/.config/utils/:$PATH" + +# yarn +export PATH="$(yarn global bin):$PATH" +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion diff --git a/i3/config b/i3/config index fa5841c..a08d849 100644 --- a/i3/config +++ b/i3/config @@ -5,8 +5,8 @@ default_border pixel 0 default_floating_border normal smart_gaps inverse_outer -for_window [class="^.*"] border pixel 0 -gaps inner 28 +# for_window [class="^.*"] border pixel 0 +gaps inner 0 gaps outer 0 popup_during_fullscreen smart @@ -16,6 +16,9 @@ for_window [title="Pomodoro Timer"] floating enable for_window [title="Calendar02042023"] floating enable for_window [title="Music "] floating enable for_window [instance=rofi] sticky enable +for_window [instance=st] floating enable +for_window [instance=steam] floating disable +for_window [instance=blueberry] floating enable for_window [instance=eww] border pixel 0 #for_window [class="matplotlib"] floating enable #for_window [class="eww"] floating enable @@ -153,18 +156,20 @@ bindsym $mod+Shift+r restart #bindsym $mod+Shift+F12 exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -B 'Yes, exit i3' 'i3-msg exit'" #Colores -set $black #1c1f20 -set $grey #dad0b6 -set $fg-alt #888888 -set $red #c1121f -set $dark-blue #dcb476 +set $bg #262626 +set $bg-alt #222222 +set $bg-palid #323232 +set $fg #e9e0d5 +set $fg-alt #dad0b6 +set $accent #b66741 +set $warn #bc4749 - #borde #fondo #texto #indicador #hijo -client.focused $grey $grey #1c1f20 $black $grey -client.focused_inactive $grey $grey $fg-alt $black $black -client.unfocused $black $black $fg-alt $grey $black -client.urgent #333333 #900000 $red #900000 #900000 -client.placeholder $black $black $red $red #0c0c0c + #borde #fondo #texto #indicador #hijo +client.focused $bg $bg $accent $bg-atl $accent +client.focused_inactive $bg $bg $fg $bg-alt $bg-alt +client.unfocused $bg-alt $bg-alt $fg-alt $bg $bg +client.urgent $bg-palid $bg-palid $warn $warn $bg-palid +client.placeholder $bg $bg $fg $bg-atl $bg-alt client.background #ffffff diff --git a/rofi/theme.rasi b/rofi/theme.rasi index 8a765f9..9ba07e5 100644 --- a/rofi/theme.rasi +++ b/rofi/theme.rasi @@ -3,13 +3,13 @@ **/ * { highlight: bold italic; - background: #141c21; - background-alt: #4c5c68; - separatorcolor: #4c5c68; - border: #518386; - highlight: #518386; - highlight-background: #343c41; - foreground: #93a1a1; + background: #22222200; + background-alt: #292929FA; + separatorcolor: #232323; + border: #b66741; + highlight: #191919F0; + highlight-background: #b66741F0; + foreground: #dad0b6; normal-background: var(background); urgent-background: var(background); active-background: var(background); @@ -42,16 +42,16 @@ configuration { window { padding: 8px; - background-color: var(background); - border-radius: 4px; + background-color: var(background-alt); + border-radius: 0px; width: 14%; border: 0 0 4px 0; border-color: var(border); - location: northwest; - x-offset: 8px; - y-offset: 52px; + location: north; + x-offset: 0px; + y-offset: 38px; } mainbox { padding: 0; @@ -79,7 +79,7 @@ listview { element { padding: 6px ; border: 0; - border-radius: 4px; + border-radius: 2px; } element normal.normal { background-color: var(normal-background); diff --git a/starship.toml b/starship.toml index 1d5e2a8..31ae0b8 100644 --- a/starship.toml +++ b/starship.toml @@ -3,12 +3,12 @@ add_newline = false format = """ -[](color_aqua_10)\ +[](color_primary_10)\ $directory\ -[](fg:color_aqua_10 bg:color_aqua_50)\ +[](fg:color_primary_10 bg:color_primary_50)\ $git_branch\ $git_status\ -[](fg:color_aqua_50 bg:color_blue)\ +[](fg:color_primary_50 bg:color_yellow)\ $c\ $rust\ $golang\ @@ -18,7 +18,7 @@ $java\ $kotlin\ $haskell\ $python\ -[](fg:color_blue bg:color_bg3)\ +[](fg:color_yellow bg:color_bg3)\ $docker_context\ $conda\ [](fg:color_bg3 bg:color_fg1)\ @@ -29,23 +29,23 @@ $line_break$character""" palette = 'dqnid' [palettes.dqnid] -color_fg0 = '#b4b7b8' -color_fg1 = '#93a1a1' +color_fg0 = '#282828' +color_fg1 = '#eae5bf' color_bg1 = '#3c3836' -color_bg3 = '#586e75' +color_bg3 = '#464555' color_blue = '#458588' color_green = '#98971a' color_purple = '#b16286' color_red = '#cc241d' -color_yellow = '#d79921' +color_yellow = '#e9c46a' -color_aqua_10 = '#156064' -color_aqua_50 = '#246a73' -color_aqua_70 = '#368f8b' +color_primary_10 = '#e76f51' +color_primary_50 = '#ee8959' +color_primary_70 = '#e97c61' [os] disabled = false -style = "bg:color_aqua_10 fg:color_fg0" +style = "bg:color_primary_10 fg:color_fg0" [os.symbols] Windows = "󰍲" @@ -72,12 +72,12 @@ Pop = "" [username] show_always = true -style_user = "bg:color_aqua_10 fg:color_fg0" -style_root = "bg:color_aqua_10 fg:color_fg0" +style_user = "bg:color_primary_10 fg:color_fg0" +style_root = "bg:color_primary_10 fg:color_fg0" format = '[ $user ]($style)' [directory] -style = "fg:color_fg0 bg:color_aqua_10" +style = "fg:color_fg0 bg:color_primary_10" format = "[ $path ]($style)" truncation_length = 3 truncation_symbol = "…/" @@ -91,57 +91,57 @@ truncation_symbol = "…/" [git_branch] symbol = "" -style = "bg:color_aqua_50" -format = '[[ $symbol $branch ](fg:color_fg0 bg:color_aqua_50)]($style)' +style = "bg:color_primary_50" +format = '[[ $symbol $branch ](fg:color_fg0 bg:color_primary_50)]($style)' [git_status] -style = "bg:color_aqua_50" -format = '[[($all_status$ahead_behind )](fg:color_fg0 bg:color_aqua_50)]($style)' +style = "bg:color_primary_50" +format = '[[($all_status$ahead_behind )](fg:color_fg0 bg:color_primary_50)]($style)' [nodejs] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [c] symbol = " " -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [rust] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [golang] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [php] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [java] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [kotlin] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [haskell] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [python] symbol = "" -style = "bg:color_blue" -format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_blue)]($style)' +style = "bg:color_yellow" +format = '[[ $symbol( $version) ](fg:color_fg0 bg:color_yellow)]($style)' [docker_context] symbol = "" diff --git a/sxhkd/sxhkdrc b/sxhkd/sxhkdrc index 5e3e0b1..91bd1a2 100644 --- a/sxhkd/sxhkdrc +++ b/sxhkd/sxhkdrc @@ -10,9 +10,9 @@ super + Return # super + @space # dmenu_run # program launcher -alt + @space - rofi -no-config -no-lazy-grab -show drun -modi drun -theme ~/.config/rofi/theme.rasi -show-icons super + @space + rofi -no-config -no-lazy-grab -show drun -modi drun -theme ~/.config/rofi/theme.rasi -show-icons +alt + @space rofi -no-config -no-lazy-grab -show run -theme ~/.config/rofi/theme.rasi -modi # make sxhkd reload its configuration files: @@ -135,10 +135,10 @@ super + shift + b firefox --private-window # FIXME: not working -super + c - xdotool getactivewindow key ctrl+c -super + v - xdotool getactivewindow key ctrl+v +# super + c +# xdotool getactivewindow key ctrl+c +# super + v +# xdotool getactivewindow key ctrl+v super + e st -e yazi