This commit is contained in:
RealStickman 2020-09-28 11:04:55 +02:00
commit ef0eece85e
6 changed files with 23 additions and 7 deletions

View File

@ -109,5 +109,4 @@ ex ()
}
#execute stuff
#neofetch
fish
neofetch

View File

@ -345,9 +345,10 @@ mode "resize" {
bindsym $mod+w mode "$layout"
set $layout full (f)
set $layout full (f), work (w)
mode "$layout" {
bindsym f exec --no-startup-id bash $HOME/.config/i3/scripts/layout-default.sh
bindsym w exec --no-startup-id bash $HOME/.config/i3/scripts/layout-work.sh
bindsym Return mode "default"
bindsym Escape mode "default"
@ -563,7 +564,7 @@ for_window [title="^Terminator Preferences$"] floating enable
for_window [window_role="pop-up"] floating enable
for_window [window_role="^Preferences$"] floating enable
for_window [window_role="setup"] floating enable
for_window [title="Microsoft Teams Notification"] floating enable
#####################################################################################################################
################# variety for your wallpapers #################

View File

@ -0,0 +1,13 @@
#!/bin/bash
i3-msg 'workspace 1; exec termite'
i3-msg 'workspace 2; layout tabbed; exec firefox'
i3-msg 'workspace 2; layout tabbed; exec thunderbird'
i3-msg 'workspace 2; layout tabbed; exec slack'
i3-msg 'workspace 2; layout tabbed; exec teams'
i3-msg 'mode "default"'

View File

@ -6,7 +6,7 @@ type = internal/xwindow
; %title%
; Default: %title%
label = %title%
label-maxlen = 50
label-maxlen = 100
format-foreground = ${colors.foreground}
format-background = ${colors.background}
format-background = ${colors.background}

View File

@ -23,7 +23,7 @@ HoldPkg = pacman glibc
Architecture = auto
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
IgnorePkg = ungoogled-chromium
IgnorePkg = ungoogled-chromium packettracer
#IgnoreGroup =
#NoUpgrade =

View File

@ -2,3 +2,6 @@
# redetects PulseAudio outputs
pacmd unload-module module-udev-detect && pacmd load-module module-udev-detect
# Git pull
bash "$HOME/scripts/git-pull.sh"