Fixes for launching terminal and misc
This commit is contained in:
parent
99b1911f98
commit
a3fd0ba7a7
4 changed files with 6 additions and 6 deletions
|
@ -125,7 +125,7 @@ alpha-step = 0.06;
|
||||||
# Fix tabbed windows
|
# Fix tabbed windows
|
||||||
opacity-rule = [
|
opacity-rule = [
|
||||||
#"95:class_g = 'xfce4-terminal' && !_NET_WM_STATE@:32a",
|
#"95:class_g = 'xfce4-terminal' && !_NET_WM_STATE@:32a",
|
||||||
"82:class_g = 'Polybar'",
|
"80:class_g = 'Polybar'",
|
||||||
"90:class_g = 'Dunst'",
|
"90:class_g = 'Dunst'",
|
||||||
"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
|
"0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
|
||||||
];
|
];
|
||||||
|
|
|
@ -102,7 +102,7 @@ bindsym $mod+KP_Enter exec $term
|
||||||
bindsym Ctrl+Mod4+t exec --no-startup-id "notify-send -a 'i3' -u normal 'You'\''re on i3, $usertitle.' 'Don'\''t try to Ctrl+Alt+T me. Use $mod+Enter like a real $usertype.'"
|
bindsym Ctrl+Mod4+t exec --no-startup-id "notify-send -a 'i3' -u normal 'You'\''re on i3, $usertitle.' 'Don'\''t try to Ctrl+Alt+T me. Use $mod+Enter like a real $usertype.'"
|
||||||
bindsym Ctrl+Mod1+t exec --no-startup-id "notify-send -a 'i3' -u normal 'You'\''re on i3, $usertitle.' 'Don'\''t try to Ctrl+Alt+T me. Use $mod+Enter like a real $usertype.'"
|
bindsym Ctrl+Mod1+t exec --no-startup-id "notify-send -a 'i3' -u normal 'You'\''re on i3, $usertitle.' 'Don'\''t try to Ctrl+Alt+T me. Use $mod+Enter like a real $usertype.'"
|
||||||
# start a terminal and execute the command `exec-with-shortcut` from your PATH in it
|
# start a terminal and execute the command `exec-with-shortcut` from your PATH in it
|
||||||
bindsym XF86Calculator exec "$termexec --zoom 3 -x bash -c 'exec-with-shortcut; zsh'"
|
bindsym XF86Calculator exec "$termexec -e bash -c 'exec-with-shortcut; zsh'"
|
||||||
|
|
||||||
# start web browser
|
# start web browser
|
||||||
set $browser TZ=UTC firefox
|
set $browser TZ=UTC firefox
|
||||||
|
@ -126,7 +126,7 @@ set $openmode "open: [f]irefox, [e]mail, [i]rc, [I]DE, [m]pd client, [M]pd serve
|
||||||
mode $openmode {
|
mode $openmode {
|
||||||
bindsym f exec firefox, mode default
|
bindsym f exec firefox, mode default
|
||||||
bindsym e exec $mailclient, mode default
|
bindsym e exec $mailclient, mode default
|
||||||
bindsym i exec quasselclient, mode default
|
bindsym i exec $termexec -e weechat, mode default
|
||||||
bindsym shift+i exec idea.sh, mode default
|
bindsym shift+i exec idea.sh, mode default
|
||||||
bindsym m exec mpdclient, mode default
|
bindsym m exec mpdclient, mode default
|
||||||
bindsym shift+m exec --no-startup-id mpd $HOME/.config/mpd/mpd.conf, mode default
|
bindsym shift+m exec --no-startup-id mpd $HOME/.config/mpd/mpd.conf, mode default
|
||||||
|
|
|
@ -17,7 +17,7 @@ fi
|
||||||
# Open terminal at specified path
|
# Open terminal at specified path
|
||||||
cmd=i3-sensible-terminal
|
cmd=i3-sensible-terminal
|
||||||
if [[ -n $path ]]; then
|
if [[ -n $path ]]; then
|
||||||
exec $cmd --default-working-directory="$path" "$@"
|
exec env -C "$path" $cmd "$@"
|
||||||
else
|
else
|
||||||
exec $cmd "$@"
|
exec $cmd "$@"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -296,11 +296,11 @@ interval = 3
|
||||||
; <ramp-signal> show a signal strength icon
|
; <ramp-signal> show a signal strength icon
|
||||||
; This overlays the actual signal strength icon over the dark "full signal" icon
|
; This overlays the actual signal strength icon over the dark "full signal" icon
|
||||||
;format-connected = %{T7}%{F#333}%{F}%{T-}%{O-18}<ramp-signal> <label-connected>
|
;format-connected = %{T7}%{F#333}%{F}%{T-}%{O-18}<ramp-signal> <label-connected>
|
||||||
format-connected = %{A:i3-sensible-terminal -x nmtui-connect:}%{A3:i3-sensible-terminal -x nmtui:}%{T7}%{F#333}%{F}%{T-}%{O-18}<ramp-signal>%{A}%{A}
|
format-connected = %{A:i3-sensible-terminal -e nmtui-connect:}%{A3:i3-sensible-terminal -e nmtui:}%{T7}%{F#333}%{F}%{T-}%{O-18}<ramp-signal>%{A}%{A}
|
||||||
format-connected-foreground = ${colors.foreground-alt}
|
format-connected-foreground = ${colors.foreground-alt}
|
||||||
label-connected = %essid%
|
label-connected = %essid%
|
||||||
|
|
||||||
format-disconnected = %{A1:i3-sensible-terminal -x nmtui-connect:}%{A3:i3-sensible-terminal -x nmtui:}<label-disconnected>%{A}%{A}
|
format-disconnected = %{A1:i3-sensible-terminal -e nmtui-connect:}%{A3:i3-sensible-terminal -e nmtui:}<label-disconnected>%{A}%{A}
|
||||||
label-disconnected =
|
label-disconnected =
|
||||||
label-disconnected-foreground = ${colors.foreground-alt}
|
label-disconnected-foreground = ${colors.foreground-alt}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue