Skip to content

Commit

Permalink
Add name to the workspace 7 in I3 and fix some issue with gnome
Browse files Browse the repository at this point in the history
  • Loading branch information
kimond committed Aug 12, 2017
1 parent 4e6a963 commit 4be8ce9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion atom/config.cson
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
]
followSymlinks: false
packagesWithKeymapsDisabled: []
telemetryConsent: "no"
dartlang:
sdkLocation: "/opt/dart-sdk"
sendUsage: false
Expand Down Expand Up @@ -65,7 +66,7 @@
wakatime:
apikey: "Saved in your ~/.wakatime.cfg file"
"wakatime-hidden":
lastInit: 1489583880
lastInit: 1499864113
welcome:
showOnStartup: false
".html.php.text":
Expand Down
7 changes: 4 additions & 3 deletions i3/config
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ set $workspace3 "3: Social "
set $workspace4 "4: Music "
set $workspace5 "5: Files "
set $workspace6 "6: "
set $workspace7 "7: Games  "

# switch to workspace
bindsym $mod+1 workspace $workspace1
Expand All @@ -119,7 +120,7 @@ bindsym $mod+3 workspace $workspace3
bindsym $mod+4 workspace $workspace4
bindsym $mod+5 workspace $workspace5
bindsym $mod+6 workspace $workspace6
bindsym $mod+7 workspace 7
bindsym $mod+7 workspace $workspace7
bindsym $mod+8 workspace 8
bindsym $mod+9 workspace 9
bindsym $mod+0 workspace 10
Expand All @@ -131,7 +132,7 @@ bindsym $mod+Shift+3 move container to workspace $workspace3
bindsym $mod+Shift+4 move container to workspace $workspace4
bindsym $mod+Shift+5 move container to workspace $workspace5
bindsym $mod+Shift+6 move container to workspace $workspace6
bindsym $mod+Shift+7 move container to workspace 7
bindsym $mod+Shift+7 move container to workspace $workspace7
bindsym $mod+Shift+8 move container to workspace 8
bindsym $mod+Shift+9 move container to workspace 9
bindsym $mod+Shift+0 move container to workspace 10
Expand Down Expand Up @@ -290,7 +291,7 @@ for_window [window_role="task_dialog"] floating enable,move absolute center
exec_always --no-startup-id xrandr --output $mainDisplay --primary
exec_always --no-startup-id dunst -config ~/.config/i3/dunstrc
exec_always --no-startup-id nitrogen --restore
exec_always --no-startup-id /usr/lib/gnome-settings-daemon/gnome-settings-daemon
exec_always --no-startup-id /usr/lib/gnome-settings-daemon/gsd-xsettings
exec --no-startup-id nm-applet
exec --no-startup-id google-chrome-stable
exec --no-startup-id slack
Expand Down
8 changes: 8 additions & 0 deletions zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ fi
if [[ -d "$HOME/.gem/ruby/2.3.0/bin" ]]; then
export PATH=$PATH:"$HOME/.gem/ruby/2.3.0/bin"
fi
if [[ -d "$HOME/.anaconda3" ]]; then
export PATH=$PATH:"$HOME/.anaconda3/bin"
fi

# Cuda
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/cuda/lib64"
export CUDA_HOME=/opt/cuda/


# You may need to manually set your language environment
Expand All @@ -46,6 +53,7 @@ alias gst="git status"
alias gdi="git diff"
alias gda="git branch -a"
alias gcm="git checkout master"
alias dkc="docker-compose"

# 256 color terminal
export TERM="screen-256color"
Expand Down

0 comments on commit 4be8ce9

Please sign in to comment.