Remove exec-ing emacs and rofi stuff through zsh

Environment variables are set better now, so this is redundant
This commit is contained in:
Adam Goldsmith 2017-09-04 03:09:15 -04:00
parent 6f555b6e1e
commit 8480b91777
1 changed files with 3 additions and 3 deletions

View File

@ -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"