Skip to content

Commit 299519d

Browse files
committed
files added
1 parent 5692a8d commit 299519d

File tree

8 files changed

+584
-16
lines changed

8 files changed

+584
-16
lines changed

.zshrc

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# If you come from bash you might have to change your $PATH.
2+
# export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH
3+
4+
# Path to your oh-my-zsh installation.
5+
export ZSH="$HOME/.oh-my-zsh"
6+
7+
# Set name of the theme to load --- if set to "random", it will
8+
# load a random theme each time oh-my-zsh is loaded, in which case,
9+
# to know which specific one was loaded, run: echo $RANDOM_THEME
10+
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
11+
ZSH_THEME="gnzh"
12+
13+
# Set list of themes to pick from when loading at random
14+
# Setting this variable when ZSH_THEME=random will cause zsh to load
15+
# a theme from this variable instead of looking in $ZSH/themes/
16+
# If set to an empty array, this variable will have no effect.
17+
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
18+
19+
# Uncomment the following line to use case-sensitive completion.
20+
# CASE_SENSITIVE="true"
21+
22+
# Uncomment the following line to use hyphen-insensitive completion.
23+
# Case-sensitive completion must be off. _ and - will be interchangeable.
24+
# HYPHEN_INSENSITIVE="true"
25+
26+
# Uncomment one of the following lines to change the auto-update behavior
27+
# zstyle ':omz:update' mode disabled # disable automatic updates
28+
# zstyle ':omz:update' mode auto # update automatically without asking
29+
# zstyle ':omz:update' mode reminder # just remind me to update when it's time
30+
31+
# Uncomment the following line to change how often to auto-update (in days).
32+
# zstyle ':omz:update' frequency 13
33+
34+
# Uncomment the following line if pasting URLs and other text is messed up.
35+
# DISABLE_MAGIC_FUNCTIONS="true"
36+
37+
# Uncomment the following line to disable colors in ls.
38+
# DISABLE_LS_COLORS="true"
39+
40+
# Uncomment the following line to disable auto-setting terminal title.
41+
# DISABLE_AUTO_TITLE="true"
42+
43+
# Uncomment the following line to enable command auto-correction.
44+
# ENABLE_CORRECTION="true"
45+
46+
# Uncomment the following line to display red dots whilst waiting for completion.
47+
# You can also set it to another string to have that shown instead of the default red dots.
48+
# e.g. COMPLETION_WAITING_DOTS="%F{yellow}waiting...%f"
49+
# Caution: this setting can cause issues with multiline prompts in zsh < 5.7.1 (see #5765)
50+
# COMPLETION_WAITING_DOTS="true"
51+
52+
# Uncomment the following line if you want to disable marking untracked files
53+
# under VCS as dirty. This makes repository status check for large repositories
54+
# much, much faster.
55+
# DISABLE_UNTRACKED_FILES_DIRTY="true"
56+
57+
# Uncomment the following line if you want to change the command execution time
58+
# stamp shown in the history command output.
59+
# You can set one of the optional three formats:
60+
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
61+
# or set a custom format using the strftime function format specifications,
62+
# see 'man strftime' for details.
63+
# HIST_STAMPS="mm/dd/yyyy"
64+
65+
# Would you like to use another custom folder than $ZSH/custom?
66+
# ZSH_CUSTOM=/path/to/new-custom-folder
67+
68+
# Which plugins would you like to load?
69+
# Standard plugins can be found in $ZSH/plugins/
70+
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
71+
# Example format: plugins=(rails git textmate ruby lighthouse)
72+
# Add wisely, as too many plugins slow down shell startup.
73+
plugins=(git)
74+
75+
source $ZSH/oh-my-zsh.sh
76+
77+
# User configuration
78+
79+
# export MANPATH="/usr/local/man:$MANPATH"
80+
81+
# You may need to manually set your language environment
82+
# export LANG=en_US.UTF-8
83+
84+
# Preferred editor for local and remote sessions
85+
# if [[ -n $SSH_CONNECTION ]]; then
86+
# export EDITOR='vim'
87+
# else
88+
# export EDITOR='mvim'
89+
# fi
90+
91+
# Compilation flags
92+
# export ARCHFLAGS="-arch x86_64"
93+
94+
# Set personal aliases, overriding those provided by oh-my-zsh libs,
95+
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
96+
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
97+
# For a full list of active aliases, run `alias`.
98+
#
99+
# Example aliases
100+
# alias zshconfig="mate ~/.zshrc"
101+
# alias ohmyzsh="mate ~/.oh-my-zsh"
102+
103+
#if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
104+
# exec startx
105+
#fi

dwm/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.o

dwm/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ static const unsigned int snap = 32; /* snap pixel */
99
static const int swallowfloating = 0; /* 1 means swallow floating windows by default */
1010
static const int showbar = 1; /* 0 means no bar */
1111
static const int topbar = 1; /* 0 means bottom bar */
12-
static const char *fonts[] = { "Noto Sans CJK JP:size=16", "Ubuntu Mono:size=16:antialias=true:autohint=true","SymbolsNerdFont:size=16:antialias=true:autohint=true","NotoColorEmoji:size=16:antialias=true:autohint=true", "monospace:size=10", "JetBrains Mono:size=11", "JoyPixels:pixelsize=11:antialias=true:autohint=true","SymbolsNerdFont:weight=bold:size=8", "InconsolataGo Nerd Font:style=Regular:size=8" ,"FontAwesome:pixelsize=12:antialias=true:autohint=true"};
12+
static const char *fonts[] = { "Noto Sans CJK JP:size=16", "Ubuntu Mono:size=16:antialias=true:autohint=true","SymbolsNerdFont:size=16:antialias=true:autohint=true","NotoColorEmoji:size=16:antialias=true:autohint=true", "monospace:size=10", "JetBrains Mono:size=11", "JoyPixels:pixelsize=11:antialias=true:autohint=true","SymbolsNerdFont:weight=bold:size=8", "InconsolataGo Nerd Font:style=Regular:size=8" ,"FontAwesome:pixelsize=12:antialias=true:autohint=true"};
1313
static const char dmenufont[] = "Noto Sans CJK JP:size=16";
1414
static char normbgcolor[] = "#222222";
1515
static char normbordercolor[] = "#444444";
@@ -24,7 +24,7 @@ static char *colors[][3] = {
2424
};
2525

2626
/* tagging */
27-
static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
27+
static const char *tags[] = { "", "", "", "", "", "", ""};
2828

2929

3030
/* screenshot*/

dwm/dwm

0 Bytes
Binary file not shown.

dwm/dwm.o

-112 Bytes
Binary file not shown.

libinput-gestures.conf

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Gestures 0.3.0 --> https://gitlab.com/cunidev/gestures
2+
# Manual editing might result in data loss!
3+
4+
5+
# Invalid lines
6+
7+
8+
# Unsupported lines
9+
10+
# Swipe threshold (0-100)
11+
swipe_threshold 0
12+
13+
# Gestures
14+
#D: gesture pinch out 2 zoom
15+
#D: gesture swipe left 3 left
16+
gesture swipe up 4 discord
17+
gesture swipe left 3 xdotool set_desktop --relative 1
18+
gesture swipe right 3 xdotool set_desktop --relative -- -1
19+
gesture swipe left 3 xdotool key alt+Right
20+
gesture swipe right 3 xdotool key alt+Left
21+
#gesture pinch in xdotool key control+minus
22+
#gesture pinch out xdotool key control+plus
23+

0 commit comments

Comments
 (0)