From 8480b91777f5f28db7e808339a8699b40d885b1d Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 4 Sep 2017 03:09:15 -0400 Subject: [PATCH] Remove exec-ing emacs and rofi stuff through zsh Environment variables are set better now, so this is redundant --- .config/i3/config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index a38063b..fc66405 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -28,7 +28,7 @@ set $mon2 LVDS-0 ## Keybindings! ## bindsym $mod+Return exec roxterm # start a terminal -bindsym $mod+e exec zsh -c "emacsclient -c -n" # start emacs +bindsym $mod+e exec emacsclient -c -n # start emacs bindsym $mod+Shift+e exec thunderbird # start thunderbird bindsym Mod1+Mod4+s exec /home/adam/.bin/lock.sh suspend # suspend @@ -37,7 +37,7 @@ bindsym Mod1+Control+Delete exec /home/adam/.bin/lock.sh pick # power menu bindsym $mod+p exec --no-startup-id ~/.bin/killPanel.sh # restart xfce4-panel mode "launch" { - bindsym e exec zsh -c "emacsclient -c -n"; mode "default" + bindsym e exec emacsclient -c -n; mode "default" bindsym f exec firefox; mode "default" bindsym t exec thunar; mode "default" bindsym $mod+g mode "default" @@ -47,7 +47,7 @@ mode "launch" { bindsym $mod+x mode "launch" # Rofi -set $rofiOptions -i -modi 'drun,run,sworkspace:/home/adam/.config/i3/switch_workspace.sh,mworkspace:/home/adam/.config/i3/move_to_workspace.sh,window,monitor:/home/adam/.config/i3/monitor_layout.sh' -run-command 'zsh -c {cmd}' -sidebar-mode +set $rofiOptions -i -modi 'drun,run,sworkspace:/home/adam/.config/i3/switch_workspace.sh,mworkspace:/home/adam/.config/i3/move_to_workspace.sh,window,monitor:/home/adam/.config/i3/monitor_layout.sh' -sidebar-mode bindsym $mod+space exec --no-startup-id "rofi $rofiOptions -show drun" bindsym $mod+d exec --no-startup-id "rofi $rofiOptions -show run"