From c81fabc0efc268a2e345c8ac9640f76a520b7394 Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado <55825613+luevano@users.noreply.github.com> Date: Thu, 19 Nov 2020 09:29:19 -0700 Subject: Fix window spawnings --- .config/i3/config | 17 ++++++++++------- .profile | 4 ++++ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index 3f4b625..5f6f65b 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -24,8 +24,11 @@ font pango:monospace 10 set $read --no-startup-id $READER set $rstbar pkill -RTMIN+1 $STATUSBAR set $music --no-startup-id spotify + # set $music --no-startup-id $MUSIC set $msgs --no-startup-id telegram-desktop + # set $msgs --no-startup-id $MSGCHAT set $ss --no-startup-id flameshot + # set $ss --no-startup-id $SSMGR set $sspath "$HOME/pix/ss/" ## Colors from ~/.Xresources. # set_from_resource $bg background @@ -76,13 +79,13 @@ font pango:monospace 10 # WS5 assign [class="vlc"] $ws5 # WS6 - # assign [class="Google-chrome"] $ws6 + assign [class="Google-chrome"] $ws6 # WS7 - # assign [class="TelegramDesktop"] $ws7 + assign [class="TelegramDesktop"] $ws7 # WS8 # WS9 # WS10 - # assign [class="Spotify"] $ws10 + for_window [class="Spotify"] move to workspace $ws10 ## Window properties for windows. for_window [class="Yad"] floating enable for_window [class="mogli"] floating enable @@ -145,10 +148,10 @@ client.background $c15 ## Apps. bindsym $mod+Return exec $term bindsym $mod+Delete exec $term -e htop - bindsym $mod+Shift+w workspace $ws6; exec $ibwsr - bindsym $mod+Shift+f workspace $ws4; exec $term -e $fmgr - bindsym $mod+m workspace $ws10; exec $music - bindsym $mod+Shift+m workspace $ws7; exec $msgs + bindsym $mod+Shift+w exec $ibwsr + bindsym $mod+Shift+f workspace $ws4 exec $term -e $fmgr + bindsym $mod+m exec $music + bindsym $mod+Shift+m exec $msgs # Screenshots. bindsym Print exec $ss gui bindsym $mod+Print exec $ss full -c diff --git a/.profile b/.profile index a8304db..b3cc1c8 100644 --- a/.profile +++ b/.profile @@ -12,6 +12,10 @@ export BROWSER="google-chrome-stable" export READER="zathura" export FILE="ranger" export STATUSBAR="i3blocks" +export MUSIC="spotify" +export MAILMGR="thunderbird" +export MSGCHAT="telegram-desktop" +export SSMGR="flameshot" ## ~/ cleanup. export ZDOTDIR="$HOME/.config/zsh" -- cgit v1.2.3-54-g00ecf