Merge branch 'master' into archtuf

This commit is contained in:
2024-10-23 21:52:00 +02:00
11 changed files with 54 additions and 36 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ tiling_drag modifier titlebar
## Syntax:
#exec [--no-startup-id] <command>
#exec_always [--no-startup-id] <command>
exec_always --no-startup-id setxkbmap us
# exec_always --no-startup-id setxkbmap us
exec_always --no-startup-id ~/.screenlayout/default.sh
exec_always --no-startup-id ~/.config/i3/scripts/i3_autostart
+3 -3
View File
@@ -19,9 +19,9 @@ set $i3_gaps_smart off
#~ Colors
set $i3_cl_col_bg #1E2128
set $i3_cl_col_fg #ABB2BF
set $i3_cl_col_in #98C379
set $i3_cl_col_afoc #5294E2
set $i3_cl_col_ifoc #62AEEF
set $i3_cl_col_in #1786e8
set $i3_cl_col_afoc #96cf6e
set $i3_cl_col_ifoc #a2cff6
set $i3_cl_col_ufoc #292d37
set $i3_cl_col_urgt #C778DD
set $i3_cl_col_phol #1E2128
+5 -7
View File
@@ -38,8 +38,8 @@ set $web_browser firefox
## -- Terminal --
bindsym $MOD+Return exec --no-startup-id $terminal
bindsym $MOD+Shift+Return exec --no-startup-id $terminal --float
bindsym $MOD+$ALT+Return exec --no-startup-id $terminal --full
# bindsym $MOD+Shift+Return exec --no-startup-id "$terminal --float"
# bindsym $MOD+$ALT+Return exec --no-startup-id "$terminal --full"
## -- GUI Apps --
bindsym $MOD+Shift+f exec --no-startup-id $file_manager
@@ -47,10 +47,8 @@ bindsym $MOD+Shift+e exec --no-startup-id $text_editor
bindsym $MOD+Shift+w exec --no-startup-id $web_browser
## -- CLI Apps --
bindsym $ALT+Control+v exec --no-startup-id "$alacritty -e vim"
bindsym $ALT+Control+r exec --no-startup-id "$alacritty -e ranger"
bindsym $ALT+Control+h exec --no-startup-id "$alacritty -e htop"
bindsym $ALT+Control+m exec --no-startup-id $music_player
bindsym $MOD+Shift+Return exec --no-startup-id "$terminal --float -e tmux new-session nvim"
# bindsym $MOD+Control+h exec --no-startup-id "$terminal -e tmux new-session htop"
## -- Rofi Applets --
bindsym $MOD+p exec --no-startup-id $rofi_applets/rofi_launcher -dpi 1
@@ -78,7 +76,7 @@ bindsym XF86AudioStop exec --no-startup-id "mpc stop"
bindsym Print exec --no-startup-id "$screenshot --now"
bindsym Control+Print exec --no-startup-id "$screenshot --in5"
# bindsym Shift+Print exec --no-startup-id "$screenshot --in10"
bindsym Shift+Print exec --no-startup-id $rofi_applets/rofi_screenshot
bindsym Shift+Print exec --no-startup-id $rofi_applets/rofi_screenshot
bindsym Control+Shift+Print exec --no-startup-id "$screenshot --win"
bindsym $MOD+Print exec --no-startup-id "$screenshot --area"
+5 -3
View File
@@ -9,12 +9,14 @@ DIR="$HOME/.config/i3"
CONFIG="$DIR/alacritty/alacritty.toml"
if [ "$1" == "--float" ]; then
alacritty --class 'alacritty-float,alacritty-float' --config-file "$CONFIG"
shift
alacritty --class 'alacritty-float,alacritty-float' --config-file "$CONFIG" $@
elif [ "$1" == "--full" ]; then
shift
alacritty --class 'Fullscreen,Fullscreen' --config-file "$CONFIG" \
-o window.startup_mode=fullscreen \
window.padding.x=30 window.padding.y=30 \
window.opacity=0.95 font.size=14
window.opacity=0.95 font.size=14 $@
else
alacritty --config-file "$CONFIG"
alacritty --config-file "$CONFIG" $@
fi