Compare commits
4 Commits
246166b23c
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2231bc79b8 | |||
| 18af1b323d | |||
| 098a789fbd | |||
| 6b25249862 |
@@ -1,31 +1,31 @@
|
||||
[colors.primary]
|
||||
background = '#10140f'
|
||||
foreground = '#e0e4db'
|
||||
background = '#f9f9ff'
|
||||
foreground = '#191c20'
|
||||
|
||||
[colors.selection]
|
||||
text = '#e0e4db'
|
||||
background = '#1b5e20'
|
||||
text = '#191c20'
|
||||
background = '#d4e3ff'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#10140f'
|
||||
cursor = '#4caf50'
|
||||
text = '#f9f9ff'
|
||||
cursor = '#3b608f'
|
||||
|
||||
[colors.normal]
|
||||
black = '#10140f'
|
||||
red = '#c96a4c'
|
||||
green = '#4daf4c'
|
||||
yellow = '#dacb52'
|
||||
blue = '#35a639'
|
||||
magenta = '#005103'
|
||||
cyan = '#4caf50'
|
||||
white = '#abb7ab'
|
||||
black = '#111318'
|
||||
red = '#872844'
|
||||
green = '#196b24'
|
||||
yellow = '#aba314'
|
||||
blue = '#396296'
|
||||
magenta = '#cde2fd'
|
||||
cyan = '#3b608f'
|
||||
white = '#262628'
|
||||
|
||||
[colors.bright]
|
||||
black = '#717b71'
|
||||
red = '#eca088'
|
||||
green = '#80d27e'
|
||||
yellow = '#fff39a'
|
||||
blue = '#63c067'
|
||||
magenta = '#89e38d'
|
||||
cyan = '#b6f4b9'
|
||||
white = '#f6fdf6'
|
||||
black = '#757779'
|
||||
red = '#b34d6b'
|
||||
green = '#379d45'
|
||||
yellow = '#b9b221'
|
||||
blue = '#4471ad'
|
||||
magenta = '#cde2fd'
|
||||
cyan = '#839bb9'
|
||||
white = '#d1d3d6'
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
;;(setq org-startup-folded t)
|
||||
(setq org-indent-indentation-per-level 2)
|
||||
(setq org-hide-emphasis-markers t)
|
||||
(setq org-agenda-files (directory-files-recursively "~/Sync/org/agenda/" "\\.org$"))
|
||||
(setq org-agenda-files (directory-files-recursively "~/sync/org/agenda/" "\\.org$"))
|
||||
(setq org-agenda-todo-ignore-scheduled 'future)
|
||||
|
||||
(require 'org-habit)
|
||||
|
||||
@@ -99,7 +99,7 @@ output "eDP-1" {
|
||||
mode "1920x1200@60"
|
||||
|
||||
// You can use integer or fractional scale, for example use 1.5 for 150% scale.
|
||||
// scale 1
|
||||
scale 1
|
||||
|
||||
// Transform allows to rotate the output counter-clockwise, valid values are:
|
||||
// normal, 90, 180, 270, flipped, flipped-90, flipped-180 and flipped-270.
|
||||
@@ -390,8 +390,8 @@ binds {
|
||||
// The allow-when-locked=true property makes them work even when the session is locked.
|
||||
// Using spawn-sh allows to pass multiple arguments together with the command.
|
||||
// "-l 1.0" limits the volume to 100%.
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1+ -l 1.0"; }
|
||||
XF86AudioLowerVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.1-"; }
|
||||
XF86AudioRaiseVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.02+ -l 1.0"; }
|
||||
XF86AudioLowerVolume allow-when-locked=true { spawn-sh "wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.02-"; }
|
||||
XF86AudioMute allow-when-locked=true { spawn-sh "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; }
|
||||
XF86AudioMicMute allow-when-locked=true { spawn-sh "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"; }
|
||||
|
||||
|
||||
@@ -5,3 +5,5 @@ SAVEHIST=10000
|
||||
|
||||
# Options to make history nicer
|
||||
setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE
|
||||
|
||||
export GTK_THEME=Yaru-dark
|
||||
|
||||
+10
-6
@@ -24,6 +24,8 @@ setopt HIST_IGNORE_DUPS HIST_IGNORE_SPACE
|
||||
# Auto capitalize
|
||||
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
||||
|
||||
export CODE_DIR="$HOME/code"
|
||||
|
||||
#######################################################
|
||||
# KEYBINDS
|
||||
#######################################################
|
||||
@@ -58,8 +60,8 @@ unset RPROMPT
|
||||
# ALIAS
|
||||
#######################################################
|
||||
|
||||
alias dot='cd ~/Code/opalfiles'
|
||||
alias ans='cd ~/Code/ansible'
|
||||
alias dot='cd $CODE_DIR/opalfiles'
|
||||
alias ans='cd $CODE_DIR/ansible'
|
||||
|
||||
alias v='nvim'
|
||||
alias vim='nvim'
|
||||
@@ -128,24 +130,26 @@ alias gcom='git commit -m'
|
||||
|
||||
alias h='history 1'
|
||||
|
||||
alias pkg='nvim ~/Code/arch-ansible/roles/packages/tasks/main.yml'
|
||||
alias pkg-aur='nvim ~/Code/arch-ansible/scripts/aur-pkg-install.sh'
|
||||
alias pkg='nvim $CODE_DIR/arch-ansible/roles/packages/tasks/main.yml'
|
||||
alias pkg-aur='nvim $CODE_DIR/arch-ansible/scripts/aur-pkg-install.sh'
|
||||
|
||||
# Wireguard
|
||||
alias wgup='nmcli connection up wg0'
|
||||
alias wgdown='nmcli connection down wg0'
|
||||
|
||||
alias history='history 0'
|
||||
|
||||
#######################################################
|
||||
# FUNCTIONS
|
||||
#######################################################
|
||||
|
||||
|
||||
apply() {
|
||||
(cd ~/Code/arch-ansible && ansible-playbook -i inventory/hosts.yml site.yml -K "$@")
|
||||
(cd $CODE_DIR/arch-ansible && ansible-playbook -i inventory/hosts.yml site.yml -K "$@")
|
||||
}
|
||||
|
||||
apply-aur() {
|
||||
(cd ~/Code/arch-ansible/scripts && bash aur-pkg-install.sh)
|
||||
(cd $CODE_DIR/arch-ansible/scripts && bash aur-pkg-install.sh)
|
||||
}
|
||||
|
||||
shred-dir() {
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
.local/share/mpd
|
||||
.config/ncmpcpp/lyrics/
|
||||
.config/zsh/.zsh_history
|
||||
.config/zsh/.zcompcache
|
||||
.config/niri/dms/
|
||||
.config/gtk-3.0/
|
||||
.config/gtk-4.0/
|
||||
@@ -20,3 +21,4 @@ flycheck-packages.el
|
||||
.config/zsh/.zcompdump
|
||||
.local/bin/claude
|
||||
.config/systemd/user/default.target.wants/
|
||||
.config/nvim/lua/
|
||||
|
||||
Reference in New Issue
Block a user