moving all my dotfiles to this repo
This commit is contained in:
commit
4e0bb467e1
29 changed files with 8158 additions and 0 deletions
78
.bashrc
Normal file
78
.bashrc
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
# ----- START THEME -----
|
||||||
|
RESTORE='\033[0m'
|
||||||
|
PURPLE='\033[00;35m'
|
||||||
|
LRED='\033[01;31m'
|
||||||
|
LGREEN='\033[01;32m'
|
||||||
|
LBLUE='\033[01;34m'
|
||||||
|
LCYAN='\033[01;36m'
|
||||||
|
|
||||||
|
virtual_env() {
|
||||||
|
if [ -n "$VIRTUAL_ENV" ]; then
|
||||||
|
echo "(${VIRTUAL_ENV##*/})"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
}
|
||||||
|
|
||||||
|
parse_git_branch() {
|
||||||
|
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
|
||||||
|
}
|
||||||
|
|
||||||
|
export VIRTUAL_ENV_DISABLE_PROMPT=1
|
||||||
|
export PS1="${TITLEBAR}┌─${LRED}\$(virtual_env)${RESTORE}[${LCYAN}\u${RESTORE}@${LBLUE}\h${RESTORE}][\w]${PURPLE}\$(parse_git_branch)${RESTORE}\n└─▶ "
|
||||||
|
# ----- END THEME -----
|
||||||
|
|
||||||
|
export VISUAL=vim
|
||||||
|
export EDITOR="$VISUAL"
|
||||||
|
|
||||||
|
#generic
|
||||||
|
alias ls='ls --color=auto'
|
||||||
|
alias grep='grep --color=auto'
|
||||||
|
alias hg='history | grep'
|
||||||
|
alias pg='ps aux | grep'
|
||||||
|
alias k9='kill -9'
|
||||||
|
|
||||||
|
# git
|
||||||
|
alias gs="git status"
|
||||||
|
alias gc="git commit -m"
|
||||||
|
alias ga="git add"
|
||||||
|
alias gcc="git checkout -b"
|
||||||
|
|
||||||
|
alias activate="source venv/bin/activate"
|
||||||
|
|
||||||
|
alias dmenu="dmenu -nf '#BBBBBB' -nb '#3A515D' -sb '#83C092' -sf '#000000' -fn 'monospace-16'"
|
||||||
|
|
||||||
|
alias dotfiles='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'
|
||||||
|
|
||||||
|
# PYWAL ---------------------
|
||||||
|
# Import colorscheme from 'wal' asynchronously
|
||||||
|
# & # Run the process in the background.
|
||||||
|
# ( ) # Hide shell job control messages.
|
||||||
|
# Not supported in the "fish" shell.
|
||||||
|
alias wal="wal -o $HOME/.config/wal/done.sh"
|
||||||
|
(cat ~/.cache/wal/sequences &)
|
||||||
|
|
||||||
|
# Alternative (blocks terminal for 0-3ms)
|
||||||
|
cat ~/.cache/wal/sequences
|
||||||
|
|
||||||
|
# To add support for TTYs this line can be optionally added.
|
||||||
|
source ~/.cache/wal/colors-tty.sh
|
||||||
|
|
||||||
|
|
||||||
|
export NVM_DIR="$HOME/.nvm"
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
# pnpm
|
||||||
|
export PNPM_HOME="/home/dominic/.local/share/pnpm"
|
||||||
|
case ":$PATH:" in
|
||||||
|
*":$PNPM_HOME:"*) ;;
|
||||||
|
*) export PATH="$PNPM_HOME:$PATH" ;;
|
||||||
|
esac
|
||||||
|
# pnpm end
|
||||||
|
|
||||||
|
# Created by `pipx` on 2025-11-23 18:01:25
|
||||||
|
export PATH="$PATH:/home/dominic/.local/bin"
|
||||||
|
|
||||||
|
GTK_IM_MODULE=fcitx
|
||||||
|
QT_IM_MODULE=fcitx
|
||||||
|
XMODIFIERS=@im=fcitx
|
||||||
1
.config/dunst/dunstrc
Symbolic link
1
.config/dunst/dunstrc
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
/home/dominic/.cache/wal/dunstrc
|
||||||
3740
.config/fcitx5/conf/cached_layouts
Normal file
3740
.config/fcitx5/conf/cached_layouts
Normal file
File diff suppressed because it is too large
Load diff
31
.config/fcitx5/conf/keyboard.conf
Normal file
31
.config/fcitx5/conf/keyboard.conf
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
# Page size
|
||||||
|
PageSize=5
|
||||||
|
# Enable emoji in hint
|
||||||
|
EnableEmoji=True
|
||||||
|
# Enable emoji in quickphrase
|
||||||
|
EnableQuickPhraseEmoji=True
|
||||||
|
# Choose key modifier
|
||||||
|
Choose Modifier=Alt
|
||||||
|
# Enable hint by default
|
||||||
|
EnableHintByDefault=False
|
||||||
|
# Use new compose behavior
|
||||||
|
UseNewComposeBehavior=True
|
||||||
|
# Type special characters with long press
|
||||||
|
EnableLongPress=False
|
||||||
|
|
||||||
|
[PrevCandidate]
|
||||||
|
0=Shift+Tab
|
||||||
|
|
||||||
|
[NextCandidate]
|
||||||
|
0=Tab
|
||||||
|
|
||||||
|
[Hint Trigger]
|
||||||
|
0=Control+Alt+H
|
||||||
|
|
||||||
|
[One Time Hint Trigger]
|
||||||
|
0=Control+Alt+J
|
||||||
|
|
||||||
|
[LongPressBlocklist]
|
||||||
|
0=konsole
|
||||||
|
1=org.kde.konsole
|
||||||
|
|
||||||
13
.config/fcitx5/conf/mozc.conf
Normal file
13
.config/fcitx5/conf/mozc.conf
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
# Initial Mode
|
||||||
|
InitialMode=Hiragana
|
||||||
|
# Shared Input State
|
||||||
|
InputState="Follow Global Configuration"
|
||||||
|
# Vertical candidate list
|
||||||
|
Vertical=True
|
||||||
|
# Expand Usage (Requires vertical candidate list)
|
||||||
|
ExpandMode="On Focus"
|
||||||
|
# Fix embedded preedit cursor at the beginning of the preedit
|
||||||
|
PreeditCursorPositionAtBeginning=False
|
||||||
|
# Hotkey to expand usage
|
||||||
|
ExpandKey=Control+Alt+H
|
||||||
|
|
||||||
3
.config/fcitx5/conf/notifications.conf
Normal file
3
.config/fcitx5/conf/notifications.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Hidden Notifications
|
||||||
|
HiddenNotifications=
|
||||||
|
|
||||||
3
.config/fcitx5/conf/xim.conf
Normal file
3
.config/fcitx5/conf/xim.conf
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Use On The Spot Style (Needs restarting)
|
||||||
|
UseOnTheSpot=True
|
||||||
|
|
||||||
83
.config/fcitx5/config
Normal file
83
.config/fcitx5/config
Normal file
|
|
@ -0,0 +1,83 @@
|
||||||
|
[Hotkey]
|
||||||
|
# Enumerate when holding modifier of Toggle key
|
||||||
|
EnumerateWithTriggerKeys=True
|
||||||
|
# Enumerate Input Method Forward
|
||||||
|
EnumerateForwardKeys=
|
||||||
|
# Enumerate Input Method Backward
|
||||||
|
EnumerateBackwardKeys=
|
||||||
|
# Skip first input method while enumerating
|
||||||
|
EnumerateSkipFirst=False
|
||||||
|
# Time limit in milliseconds for triggering modifier key shortcuts
|
||||||
|
ModifierOnlyKeyTimeout=250
|
||||||
|
|
||||||
|
[Hotkey/TriggerKeys]
|
||||||
|
0=Alt+space
|
||||||
|
1=Zenkaku_Hankaku
|
||||||
|
2=Hangul
|
||||||
|
|
||||||
|
[Hotkey/ActivateKeys]
|
||||||
|
0=Hangul_Hanja
|
||||||
|
|
||||||
|
[Hotkey/DeactivateKeys]
|
||||||
|
0=Hangul_Romaja
|
||||||
|
|
||||||
|
[Hotkey/AltTriggerKeys]
|
||||||
|
0=Shift_L
|
||||||
|
|
||||||
|
[Hotkey/EnumerateGroupForwardKeys]
|
||||||
|
0=Super+space
|
||||||
|
|
||||||
|
[Hotkey/EnumerateGroupBackwardKeys]
|
||||||
|
0=Shift+Super+space
|
||||||
|
|
||||||
|
[Hotkey/PrevPage]
|
||||||
|
0=Up
|
||||||
|
|
||||||
|
[Hotkey/NextPage]
|
||||||
|
0=Down
|
||||||
|
|
||||||
|
[Hotkey/PrevCandidate]
|
||||||
|
0=Shift+Tab
|
||||||
|
|
||||||
|
[Hotkey/NextCandidate]
|
||||||
|
0=Tab
|
||||||
|
|
||||||
|
[Hotkey/TogglePreedit]
|
||||||
|
0=Control+Alt+P
|
||||||
|
|
||||||
|
[Behavior]
|
||||||
|
# Active By Default
|
||||||
|
ActiveByDefault=False
|
||||||
|
# Reset state on Focus In
|
||||||
|
resetStateWhenFocusIn=All
|
||||||
|
# Share Input State
|
||||||
|
ShareInputState=No
|
||||||
|
# Show preedit in application
|
||||||
|
PreeditEnabledByDefault=True
|
||||||
|
# Show Input Method Information when switch input method
|
||||||
|
ShowInputMethodInformation=True
|
||||||
|
# Show Input Method Information when changing focus
|
||||||
|
showInputMethodInformationWhenFocusIn=False
|
||||||
|
# Show compact input method information
|
||||||
|
CompactInputMethodInformation=True
|
||||||
|
# Show first input method information
|
||||||
|
ShowFirstInputMethodInformation=True
|
||||||
|
# Default page size
|
||||||
|
DefaultPageSize=5
|
||||||
|
# Override XKB Option
|
||||||
|
OverrideXkbOption=False
|
||||||
|
# Custom XKB Option
|
||||||
|
CustomXkbOption=
|
||||||
|
# Force Enabled Addons
|
||||||
|
EnabledAddons=
|
||||||
|
# Force Disabled Addons
|
||||||
|
DisabledAddons=
|
||||||
|
# Preload input method to be used by default
|
||||||
|
PreloadInputMethod=True
|
||||||
|
# Allow input method in the password field
|
||||||
|
AllowInputMethodForPassword=False
|
||||||
|
# Show preedit text when typing password
|
||||||
|
ShowPreeditForPassword=False
|
||||||
|
# Interval of saving user data in minutes
|
||||||
|
AutoSavePeriod=30
|
||||||
|
|
||||||
23
.config/fcitx5/profile
Normal file
23
.config/fcitx5/profile
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
[Groups/0]
|
||||||
|
# Group Name
|
||||||
|
Name=Default
|
||||||
|
# Layout
|
||||||
|
Default Layout=us
|
||||||
|
# Default Input Method
|
||||||
|
DefaultIM=mozc
|
||||||
|
|
||||||
|
[Groups/0/Items/0]
|
||||||
|
# Name
|
||||||
|
Name=keyboard-us
|
||||||
|
# Layout
|
||||||
|
Layout=
|
||||||
|
|
||||||
|
[Groups/0/Items/1]
|
||||||
|
# Name
|
||||||
|
Name=mozc
|
||||||
|
# Layout
|
||||||
|
Layout=
|
||||||
|
|
||||||
|
[GroupOrder]
|
||||||
|
0=Default
|
||||||
|
|
||||||
51
.config/ghostty/config
Normal file
51
.config/ghostty/config
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
# This is the configuration file for Ghostty.
|
||||||
|
#
|
||||||
|
# This template file has been automatically created at the following
|
||||||
|
# path since Ghostty couldn't find any existing config files on your system:
|
||||||
|
#
|
||||||
|
# /home/dominic/.config/ghostty/config
|
||||||
|
#
|
||||||
|
# The template does not set any default options, since Ghostty ships
|
||||||
|
# with sensible defaults for all options. Users should only need to set
|
||||||
|
# options that they want to change from the default.
|
||||||
|
#
|
||||||
|
# Run `ghostty +show-config --default --docs` to view a list of
|
||||||
|
# all available config options and their default values.
|
||||||
|
#
|
||||||
|
# Additionally, each config option is also explained in detail
|
||||||
|
# on Ghostty's website, at https://ghostty.org/docs/config.
|
||||||
|
|
||||||
|
# Config syntax crash course
|
||||||
|
# ==========================
|
||||||
|
# # The config file consists of simple key-value pairs,
|
||||||
|
# # separated by equals signs.
|
||||||
|
# font-family = Iosevka
|
||||||
|
# window-padding-x = 2
|
||||||
|
#
|
||||||
|
# # Spacing around the equals sign does not matter.
|
||||||
|
# # All of these are identical:
|
||||||
|
# key=value
|
||||||
|
# key= value
|
||||||
|
# key =value
|
||||||
|
# key = value
|
||||||
|
#
|
||||||
|
# # Any line beginning with a # is a comment. It's not possible to put
|
||||||
|
# # a comment after a config option, since it would be interpreted as a
|
||||||
|
# # part of the value. For example, this will have a value of "#123abc":
|
||||||
|
# background = #123abc
|
||||||
|
#
|
||||||
|
# # Empty values are used to reset config keys to default.
|
||||||
|
# key =
|
||||||
|
#
|
||||||
|
# # Some config options have unique syntaxes for their value,
|
||||||
|
# # which is explained in the docs for that config option.
|
||||||
|
# # Just for example:
|
||||||
|
# resize-overlay-duration = 4s 200ms
|
||||||
|
#
|
||||||
|
background-opacity = 0.8
|
||||||
|
window-decoration = false
|
||||||
|
font-size = 14
|
||||||
|
term = kitty
|
||||||
|
app-notifications = no-clipboard-copy
|
||||||
|
window-inherit-working-directory = false
|
||||||
|
working-directory = home
|
||||||
9
.config/git/README.md
Normal file
9
.config/git/README.md
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Overview
|
||||||
|
|
||||||
|
Repo contains a git hook to check if the string `breakpoint` exists in any file you have staged for a commit. If the string does exist, it will provide a warning and not let you complete the commit. This is useful for python developers who are heavy offenders of commiting breakpoints (aka me).
|
||||||
|
|
||||||
|
# How To
|
||||||
|
|
||||||
|
1. clone this repo, preferably in ~/.config/
|
||||||
|
2. add the path to this repo to your git hooks path: `git config --global core.hooksPath ~/.config/git/hooks/`
|
||||||
|
3. that's it
|
||||||
11
.config/git/hooks/pre-commit
Executable file
11
.config/git/hooks/pre-commit
Executable file
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if git diff --cached --name-only --diff-filter=ACMR | xargs grep -nH 'breakpoint'
|
||||||
|
then
|
||||||
|
echo "You have breakpoints in your code, remove them before committing!"
|
||||||
|
echo "If you want to bypass this run git commit --no-verify -m 'msg'"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
1
.config/i3
Submodule
1
.config/i3
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 5c67555704481f74ae4254836adc275ac5356959
|
||||||
1
.config/i3blocks
Submodule
1
.config/i3blocks
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit cbcf6dacae02d2c2111924aa0afebdb6c2a51ea6
|
||||||
1
.config/nvim
Submodule
1
.config/nvim
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit e30125dfafee57250f151a92255e627537069329
|
||||||
6
.config/retroarch/config/FFmpeg/FFmpeg.opt
Normal file
6
.config/retroarch/config/FFmpeg/FFmpeg.opt
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
ffmpeg_color_space = "auto"
|
||||||
|
ffmpeg_fft_multisample = "1x"
|
||||||
|
ffmpeg_fft_resolution = "1280x720"
|
||||||
|
ffmpeg_hw_decoder = "off"
|
||||||
|
ffmpeg_sw_decoder_threads = "auto"
|
||||||
|
ffmpeg_temporal_interp = "disabled"
|
||||||
85
.config/retroarch/config/Flycast/Flycast.opt
Normal file
85
.config/retroarch/config/Flycast/Flycast.opt
Normal file
|
|
@ -0,0 +1,85 @@
|
||||||
|
reicast_allow_service_buttons = "disabled"
|
||||||
|
reicast_alpha_sorting = "per-triangle (normal)"
|
||||||
|
reicast_analog_stick_deadzone = "15%"
|
||||||
|
reicast_anisotropic_filtering = "4"
|
||||||
|
reicast_auto_skip_frame = "disabled"
|
||||||
|
reicast_broadcast = "NTSC"
|
||||||
|
reicast_cable_type = "TV (Composite)"
|
||||||
|
reicast_custom_textures = "disabled"
|
||||||
|
reicast_dc_32mb_mod = "disabled"
|
||||||
|
reicast_dcnet = "disabled"
|
||||||
|
reicast_delay_frame_swapping = "enabled"
|
||||||
|
reicast_detect_vsync_swap_interval = "disabled"
|
||||||
|
reicast_device_port1_slot1 = "VMU"
|
||||||
|
reicast_device_port1_slot2 = "Purupuru"
|
||||||
|
reicast_device_port2_slot1 = "VMU"
|
||||||
|
reicast_device_port2_slot2 = "Purupuru"
|
||||||
|
reicast_device_port3_slot1 = "VMU"
|
||||||
|
reicast_device_port3_slot2 = "Purupuru"
|
||||||
|
reicast_device_port4_slot1 = "VMU"
|
||||||
|
reicast_device_port4_slot2 = "Purupuru"
|
||||||
|
reicast_digital_triggers = "disabled"
|
||||||
|
reicast_dump_textures = "disabled"
|
||||||
|
reicast_emulate_bba = "disabled"
|
||||||
|
reicast_emulate_framebuffer = "disabled"
|
||||||
|
reicast_enable_dsp = "enabled"
|
||||||
|
reicast_enable_rttb = "disabled"
|
||||||
|
reicast_fix_upscale_bleeding_edge = "enabled"
|
||||||
|
reicast_fog = "enabled"
|
||||||
|
reicast_force_freeplay = "enabled"
|
||||||
|
reicast_frame_skipping = "disabled"
|
||||||
|
reicast_gdrom_fast_loading = "disabled"
|
||||||
|
reicast_hle_bios = "disabled"
|
||||||
|
reicast_internal_resolution = "640x480"
|
||||||
|
reicast_language = "English"
|
||||||
|
reicast_lightgun1_crosshair = "disabled"
|
||||||
|
reicast_lightgun2_crosshair = "disabled"
|
||||||
|
reicast_lightgun3_crosshair = "disabled"
|
||||||
|
reicast_lightgun4_crosshair = "disabled"
|
||||||
|
reicast_lightgun_crosshair_size_scaling = "100%"
|
||||||
|
reicast_mipmapping = "enabled"
|
||||||
|
reicast_native_depth_interpolation = "disabled"
|
||||||
|
reicast_network_output = "disabled"
|
||||||
|
reicast_oit_abuffer_size = "512MB"
|
||||||
|
reicast_oit_layers = "32"
|
||||||
|
reicast_per_content_vmus = "disabled"
|
||||||
|
reicast_pvr2_filtering = "disabled"
|
||||||
|
reicast_region = "USA"
|
||||||
|
reicast_screen_rotation = "horizontal"
|
||||||
|
reicast_sh4clock = "200"
|
||||||
|
reicast_show_lightgun_settings = "disabled"
|
||||||
|
reicast_show_vmu_screen_settings = "disabled"
|
||||||
|
reicast_texture_filtering = "0"
|
||||||
|
reicast_texupscale = "1"
|
||||||
|
reicast_texupscale_max_filtered_texture_size = "256"
|
||||||
|
reicast_threaded_rendering = "enabled"
|
||||||
|
reicast_trigger_deadzone = "0%"
|
||||||
|
reicast_upnp = "enabled"
|
||||||
|
reicast_vmu1_pixel_off_color = "DEFAULT_OFF 01"
|
||||||
|
reicast_vmu1_pixel_on_color = "DEFAULT_ON 00"
|
||||||
|
reicast_vmu1_screen_display = "disabled"
|
||||||
|
reicast_vmu1_screen_opacity = "100%"
|
||||||
|
reicast_vmu1_screen_position = "Upper Left"
|
||||||
|
reicast_vmu1_screen_size_mult = "1x"
|
||||||
|
reicast_vmu2_pixel_off_color = "DEFAULT_OFF 01"
|
||||||
|
reicast_vmu2_pixel_on_color = "DEFAULT_ON 00"
|
||||||
|
reicast_vmu2_screen_display = "disabled"
|
||||||
|
reicast_vmu2_screen_opacity = "100%"
|
||||||
|
reicast_vmu2_screen_position = "Upper Right"
|
||||||
|
reicast_vmu2_screen_size_mult = "1x"
|
||||||
|
reicast_vmu3_pixel_off_color = "DEFAULT_OFF 01"
|
||||||
|
reicast_vmu3_pixel_on_color = "DEFAULT_ON 00"
|
||||||
|
reicast_vmu3_screen_display = "disabled"
|
||||||
|
reicast_vmu3_screen_opacity = "100%"
|
||||||
|
reicast_vmu3_screen_position = "Lower Left"
|
||||||
|
reicast_vmu3_screen_size_mult = "1x"
|
||||||
|
reicast_vmu4_pixel_off_color = "DEFAULT_OFF 01"
|
||||||
|
reicast_vmu4_pixel_on_color = "DEFAULT_ON 00"
|
||||||
|
reicast_vmu4_screen_display = "disabled"
|
||||||
|
reicast_vmu4_screen_opacity = "100%"
|
||||||
|
reicast_vmu4_screen_position = "Lower Right"
|
||||||
|
reicast_vmu4_screen_size_mult = "1x"
|
||||||
|
reicast_vmu_sound = "disabled"
|
||||||
|
reicast_volume_modifier_enable = "enabled"
|
||||||
|
reicast_widescreen_cheats = "disabled"
|
||||||
|
reicast_widescreen_hack = "disabled"
|
||||||
24
.config/retroarch/config/Mesen/Mesen.opt
Normal file
24
.config/retroarch/config/Mesen/Mesen.opt
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
mesen_aspect_ratio = "Auto"
|
||||||
|
mesen_audio_sample_rate = "48000"
|
||||||
|
mesen_controllerturbospeed = "Fast"
|
||||||
|
mesen_disable_noise_mode_flag = "disabled"
|
||||||
|
mesen_fake_stereo = "disabled"
|
||||||
|
mesen_fdsautoinsertdisk = "disabled"
|
||||||
|
mesen_fdsfastforwardload = "disabled"
|
||||||
|
mesen_hdpacks = "enabled"
|
||||||
|
mesen_mute_triangle_ultrasonic = "enabled"
|
||||||
|
mesen_nospritelimit = "disabled"
|
||||||
|
mesen_ntsc_filter = "Disabled"
|
||||||
|
mesen_overclock = "None"
|
||||||
|
mesen_overclock_type = "Before NMI (Recommended)"
|
||||||
|
mesen_overscan_down = "None"
|
||||||
|
mesen_overscan_left = "None"
|
||||||
|
mesen_overscan_right = "None"
|
||||||
|
mesen_overscan_up = "None"
|
||||||
|
mesen_palette = "Default"
|
||||||
|
mesen_ramstate = "All 0s (Default)"
|
||||||
|
mesen_reduce_dmc_popping = "enabled"
|
||||||
|
mesen_region = "Auto"
|
||||||
|
mesen_screenrotation = "None"
|
||||||
|
mesen_shift_buttons_clockwise = "disabled"
|
||||||
|
mesen_swap_duty_cycle = "disabled"
|
||||||
40
.config/retroarch/config/Snes9x/Snes9x.opt
Normal file
40
.config/retroarch/config/Snes9x/Snes9x.opt
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
snes9x_aspect = "4:3"
|
||||||
|
snes9x_audio_interpolation = "gaussian"
|
||||||
|
snes9x_blargg = "disabled"
|
||||||
|
snes9x_block_invalid_vram_access = "enabled"
|
||||||
|
snes9x_echo_buffer_hack = "disabled"
|
||||||
|
snes9x_gfx_clip = "enabled"
|
||||||
|
snes9x_gfx_transp = "enabled"
|
||||||
|
snes9x_hires_blend = "disabled"
|
||||||
|
snes9x_justifier1_color = "Blue"
|
||||||
|
snes9x_justifier1_crosshair = "4"
|
||||||
|
snes9x_justifier2_color = "Pink"
|
||||||
|
snes9x_justifier2_crosshair = "4"
|
||||||
|
snes9x_layer_1 = "enabled"
|
||||||
|
snes9x_layer_2 = "enabled"
|
||||||
|
snes9x_layer_3 = "enabled"
|
||||||
|
snes9x_layer_4 = "enabled"
|
||||||
|
snes9x_layer_5 = "enabled"
|
||||||
|
snes9x_lightgun_mode = "Lightgun"
|
||||||
|
snes9x_overclock_cycles = "disabled"
|
||||||
|
snes9x_overclock_superfx = "100%"
|
||||||
|
snes9x_overscan = "enabled"
|
||||||
|
snes9x_randomize_memory = "disabled"
|
||||||
|
snes9x_reduce_sprite_flicker = "disabled"
|
||||||
|
snes9x_region = "auto"
|
||||||
|
snes9x_rifle_color = "White"
|
||||||
|
snes9x_rifle_crosshair = "2"
|
||||||
|
snes9x_show_advanced_av_settings = "disabled"
|
||||||
|
snes9x_show_lightgun_settings = "disabled"
|
||||||
|
snes9x_sndchan_volume_1 = "100"
|
||||||
|
snes9x_sndchan_volume_2 = "100"
|
||||||
|
snes9x_sndchan_volume_3 = "100"
|
||||||
|
snes9x_sndchan_volume_4 = "100"
|
||||||
|
snes9x_sndchan_volume_5 = "100"
|
||||||
|
snes9x_sndchan_volume_6 = "100"
|
||||||
|
snes9x_sndchan_volume_7 = "100"
|
||||||
|
snes9x_sndchan_volume_8 = "100"
|
||||||
|
snes9x_superscope_color = "White"
|
||||||
|
snes9x_superscope_crosshair = "2"
|
||||||
|
snes9x_superscope_reverse_buttons = "disabled"
|
||||||
|
snes9x_up_down_allowed = "disabled"
|
||||||
3339
.config/retroarch/retroarch.cfg
Normal file
3339
.config/retroarch/retroarch.cfg
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
Binary file not shown.
19
.config/rofi/config.rasi
Normal file
19
.config/rofi/config.rasi
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
configuration {
|
||||||
|
modes: [ combi ];
|
||||||
|
combi-modes: [ window, drun, run, ssh ];
|
||||||
|
drun-display-format: "{name}";
|
||||||
|
}
|
||||||
|
|
||||||
|
@import "~/.cache/wal/colors-rofi-dark"
|
||||||
|
|
||||||
|
|
||||||
|
element {
|
||||||
|
orientation: horizontal;
|
||||||
|
children: [ element-text, element-icon ];
|
||||||
|
spacing: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
lines: 10;
|
||||||
|
columns: 1;
|
||||||
|
}
|
||||||
55
.config/tmux/tmux.conf
Normal file
55
.config/tmux/tmux.conf
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
bind-key -T copy-mode-vi v send -X begin-selection
|
||||||
|
bind-key -T copy-mode-vi V send -X select-line
|
||||||
|
set -s copy-command 'xclip -in -selection clipboard'
|
||||||
|
bind-key -T copy-mode-vi y send -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
|
||||||
|
|
||||||
|
# split panes using | and -
|
||||||
|
bind | split-window -h
|
||||||
|
bind - split-window -v
|
||||||
|
unbind '"'
|
||||||
|
unbind %
|
||||||
|
|
||||||
|
# reload config file (change file location to your the tmux.conf you want to use)
|
||||||
|
bind r source-file $HOME/.config/tmux/tmux.conf
|
||||||
|
|
||||||
|
# switch panes using Alt-arrow without prefix
|
||||||
|
bind -n M-Left select-pane -L
|
||||||
|
bind -n M-Right select-pane -R
|
||||||
|
bind -n M-Up select-pane -U
|
||||||
|
bind -n M-Down select-pane -D
|
||||||
|
|
||||||
|
# Enable mouse control (clickable windows, panes, resizable panes)
|
||||||
|
set -g mouse on
|
||||||
|
|
||||||
|
# panes
|
||||||
|
set -g pane-border-style 'fg=red'
|
||||||
|
set -g pane-active-border-style 'fg=yellow'
|
||||||
|
|
||||||
|
# statusbar
|
||||||
|
set -g status-position bottom
|
||||||
|
set -g status-justify left
|
||||||
|
set -g status-style 'fg=red'
|
||||||
|
|
||||||
|
set -g status-left ''
|
||||||
|
set -g status-left-length 10
|
||||||
|
|
||||||
|
set -g status-right-style 'fg=black bg=green'
|
||||||
|
set -g status-right '%Y-%m-%d %H:%M '
|
||||||
|
set -g status-right-length 50
|
||||||
|
|
||||||
|
setw -g window-status-current-style 'fg=black bg=green'
|
||||||
|
setw -g window-status-current-format ' #I #W #F '
|
||||||
|
|
||||||
|
setw -g window-status-style 'fg=green bg=black'
|
||||||
|
setw -g window-status-format ' #I #[fg=white]#W #[fg=yellow]#F '
|
||||||
|
|
||||||
|
setw -g window-status-bell-style 'fg=yellow bg=red bold'
|
||||||
|
|
||||||
|
# messages
|
||||||
|
set -g message-style 'fg=yellow bg=red bold'
|
||||||
|
|
||||||
|
set-option -g allow-passthrough on
|
||||||
|
set -g default-terminal "screen-256color"
|
||||||
|
set -as terminal-features ",xterm-256color:RGB"
|
||||||
|
|
||||||
12
.config/wal/done.sh
Executable file
12
.config/wal/done.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
mkdir -p "${HOME}/.config/dunst"
|
||||||
|
ln -sf "${HOME}/.cache/wal/dunstrc" "${HOME}/.config/dunst/dunstrc"
|
||||||
|
|
||||||
|
pkill dunst
|
||||||
|
dunst &
|
||||||
|
|
||||||
|
sleep 2
|
||||||
|
export DISPLAY=:0.0
|
||||||
|
|
||||||
|
notify-send "wallpaper updated!"
|
||||||
460
.config/wal/templates/dunstrc
Normal file
460
.config/wal/templates/dunstrc
Normal file
|
|
@ -0,0 +1,460 @@
|
||||||
|
|
||||||
|
# See dunst(5) for all configuration options
|
||||||
|
#
|
||||||
|
[global]
|
||||||
|
### Display ###
|
||||||
|
|
||||||
|
# Which monitor should the notifications be displayed on.
|
||||||
|
monitor = 0
|
||||||
|
|
||||||
|
# Display notification on focused monitor. Possible modes are:
|
||||||
|
# mouse: follow mouse pointer
|
||||||
|
# keyboard: follow window with keyboard focus
|
||||||
|
# none: don't follow anything
|
||||||
|
#
|
||||||
|
# "keyboard" needs a window manager that exports the
|
||||||
|
# _NET_ACTIVE_WINDOW property.
|
||||||
|
# This should be the case for almost all modern window managers.
|
||||||
|
#
|
||||||
|
# If this option is set to mouse or keyboard, the monitor option
|
||||||
|
# will be ignored.
|
||||||
|
follow = none
|
||||||
|
|
||||||
|
### Geometry ###
|
||||||
|
|
||||||
|
# dynamic width from 0 to 300
|
||||||
|
# width = (0, 300)
|
||||||
|
# constant width of 300
|
||||||
|
width = 300
|
||||||
|
|
||||||
|
# The maximum height of a single notification, excluding the frame.
|
||||||
|
height = 300
|
||||||
|
|
||||||
|
# Position the notification in the top right corner
|
||||||
|
origin = bottom-right
|
||||||
|
|
||||||
|
# Offset from the origin
|
||||||
|
offset = 10x50
|
||||||
|
|
||||||
|
# Scale factor. It is auto-detected if value is 0.
|
||||||
|
scale = 0
|
||||||
|
|
||||||
|
# Maximum number of notification (0 means no limit)
|
||||||
|
notification_limit = 20
|
||||||
|
|
||||||
|
### Progress bar ###
|
||||||
|
|
||||||
|
# Turn on the progess bar. It appears when a progress hint is passed with
|
||||||
|
# for example dunstify -h int:value:12
|
||||||
|
progress_bar = true
|
||||||
|
|
||||||
|
# Set the progress bar height. This includes the frame, so make sure
|
||||||
|
# it's at least twice as big as the frame width.
|
||||||
|
progress_bar_height = 10
|
||||||
|
|
||||||
|
# Set the frame width of the progress bar
|
||||||
|
progress_bar_frame_width = 1
|
||||||
|
|
||||||
|
# Set the minimum width for the progress bar
|
||||||
|
progress_bar_min_width = 150
|
||||||
|
|
||||||
|
# Set the maximum width for the progress bar
|
||||||
|
progress_bar_max_width = 300
|
||||||
|
|
||||||
|
# Corner radius for the progress bar. 0 disables rounded corners.
|
||||||
|
progress_bar_corner_radius = 0
|
||||||
|
|
||||||
|
# Corner radius for the icon image.
|
||||||
|
icon_corner_radius = 0
|
||||||
|
|
||||||
|
# Show how many messages are currently hidden (because of
|
||||||
|
# notification_limit).
|
||||||
|
indicate_hidden = yes
|
||||||
|
|
||||||
|
# The transparency of the window. Range: [0; 100].
|
||||||
|
# This option will only work if a compositing window manager is
|
||||||
|
# present (e.g. xcompmgr, compiz, etc.). (X11 only)
|
||||||
|
transparency = 35
|
||||||
|
|
||||||
|
# Draw a line of "separator_height" pixel height between two
|
||||||
|
# notifications.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# If gap_size is greater than 0, this setting will be ignored.
|
||||||
|
separator_height = 2
|
||||||
|
|
||||||
|
# Padding between text and separator.
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# Horizontal padding.
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
|
# Padding between text and icon.
|
||||||
|
text_icon_padding = 0
|
||||||
|
|
||||||
|
# Defines width in pixels of frame around the notification window.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
frame_width = 0
|
||||||
|
|
||||||
|
# Defines color of the frame around the notification window.
|
||||||
|
frame_color = "#000000"
|
||||||
|
|
||||||
|
# Size of gap to display between notifications - requires a compositor.
|
||||||
|
# If value is greater than 0, separator_height will be ignored and a border
|
||||||
|
# of size frame_width will be drawn around each notification instead.
|
||||||
|
# Click events on gaps do not currently propagate to applications below.
|
||||||
|
gap_size = 0
|
||||||
|
|
||||||
|
# Define a color for the separator.
|
||||||
|
# possible values are:
|
||||||
|
# * auto: dunst tries to find a color fitting to the background;
|
||||||
|
# * foreground: use the same color as the foreground;
|
||||||
|
# * frame: use the same color as the frame;
|
||||||
|
# * anything else will be interpreted as a X color.
|
||||||
|
separator_color = frame
|
||||||
|
|
||||||
|
# Sort messages by urgency.
|
||||||
|
sort = yes
|
||||||
|
|
||||||
|
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||||
|
# for longer than idle_threshold seconds.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# A client can set the 'transient' hint to bypass this. See the rules
|
||||||
|
# section for how to disable this if necessary
|
||||||
|
# idle_threshold = 120
|
||||||
|
|
||||||
|
### Text ###
|
||||||
|
|
||||||
|
font = Monospace 14
|
||||||
|
|
||||||
|
# The spacing between lines. If the height is smaller than the
|
||||||
|
# font height, it will get raised to the font height.
|
||||||
|
line_height = 0
|
||||||
|
|
||||||
|
# Possible values are:
|
||||||
|
# full: Allow a small subset of html markup in notifications:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough</s>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# For a complete reference see
|
||||||
|
# <https://docs.gtk.org/Pango/pango_markup.html>.
|
||||||
|
#
|
||||||
|
# strip: This setting is provided for compatibility with some broken
|
||||||
|
# clients that send markup even though it's not enabled on the
|
||||||
|
# server. Dunst will try to strip the markup but the parsing is
|
||||||
|
# simplistic so using this option outside of matching rules for
|
||||||
|
# specific applications *IS GREATLY DISCOURAGED*.
|
||||||
|
#
|
||||||
|
# no: Disable markup parsing, incoming notifications will be treated as
|
||||||
|
# plain text. Dunst will not advertise that it has the body-markup
|
||||||
|
# capability if this is set as a global setting.
|
||||||
|
#
|
||||||
|
# It's important to note that markup inside the format option will be parsed
|
||||||
|
# regardless of what this is set to.
|
||||||
|
markup = full
|
||||||
|
|
||||||
|
# The format of the message. Possible variables are:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
# %n progress value if set without any extra characters
|
||||||
|
# %% Literal %
|
||||||
|
# Markup is allowed
|
||||||
|
format = "<b>%s</b>\n%b"
|
||||||
|
|
||||||
|
# Alignment of message text.
|
||||||
|
# Possible values are "left", "center" and "right".
|
||||||
|
alignment = left
|
||||||
|
|
||||||
|
# Vertical alignment of message text and icon.
|
||||||
|
# Possible values are "top", "center" and "bottom".
|
||||||
|
vertical_alignment = center
|
||||||
|
|
||||||
|
# Show age of message if message is older than show_age_threshold
|
||||||
|
# seconds.
|
||||||
|
# Set to -1 to disable.
|
||||||
|
show_age_threshold = 60
|
||||||
|
|
||||||
|
# Specify where to make an ellipsis in long lines.
|
||||||
|
# Possible values are "start", "middle" and "end".
|
||||||
|
ellipsize = middle
|
||||||
|
|
||||||
|
# Ignore newlines '\n' in notifications.
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
# Stack together notifications with the same content
|
||||||
|
stack_duplicates = true
|
||||||
|
|
||||||
|
# Hide the count of stacked notifications with the same content
|
||||||
|
hide_duplicate_count = false
|
||||||
|
|
||||||
|
# Display indicators for URLs (U) and actions (A).
|
||||||
|
show_indicators = yes
|
||||||
|
|
||||||
|
### Icons ###
|
||||||
|
|
||||||
|
# Recursive icon lookup. You can set a single theme, instead of having to
|
||||||
|
# define all lookup paths.
|
||||||
|
enable_recursive_icon_lookup = true
|
||||||
|
|
||||||
|
# Set icon theme (only used for recursive icon lookup)
|
||||||
|
icon_theme = Adwaita
|
||||||
|
# You can also set multiple icon themes, with the leftmost one being used first.
|
||||||
|
# icon_theme = "Adwaita, breeze"
|
||||||
|
|
||||||
|
# Align icons left/right/top/off
|
||||||
|
icon_position = left
|
||||||
|
|
||||||
|
# Scale small icons up to this size, set to 0 to disable. Helpful
|
||||||
|
# for e.g. small files or high-dpi screens. In case of conflict,
|
||||||
|
# max_icon_size takes precedence over this.
|
||||||
|
min_icon_size = 32
|
||||||
|
|
||||||
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
|
max_icon_size = 128
|
||||||
|
|
||||||
|
# Paths to default icons (only neccesary when not using recursive icon lookup)
|
||||||
|
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
|
||||||
|
|
||||||
|
### History ###
|
||||||
|
|
||||||
|
# Should a notification popped up from history be sticky or timeout
|
||||||
|
# as if it would normally do.
|
||||||
|
sticky_history = yes
|
||||||
|
|
||||||
|
# Maximum amount of notifications kept in history
|
||||||
|
history_length = 20
|
||||||
|
|
||||||
|
### Misc/Advanced ###
|
||||||
|
|
||||||
|
# dmenu path.
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
|
# Browser for opening urls in context menu.
|
||||||
|
browser = /usr/bin/xdg-open
|
||||||
|
|
||||||
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
|
always_run_script = true
|
||||||
|
|
||||||
|
# Define the title of the windows spawned by dunst
|
||||||
|
title = Dunst
|
||||||
|
|
||||||
|
# Define the class of the windows spawned by dunst
|
||||||
|
class = Dunst
|
||||||
|
|
||||||
|
# Define the corner radius of the notification window
|
||||||
|
# in pixel size. If the radius is 0, you have no rounded
|
||||||
|
# corners.
|
||||||
|
# The radius will be automatically lowered if it exceeds half of the
|
||||||
|
# notification height to avoid clipping text and/or icons.
|
||||||
|
corner_radius = 10
|
||||||
|
|
||||||
|
# Ignore the dbus closeNotification message.
|
||||||
|
# Useful to enforce the timeout set by dunst configuration. Without this
|
||||||
|
# parameter, an application may close the notification sent before the
|
||||||
|
# user defined timeout.
|
||||||
|
ignore_dbusclose = false
|
||||||
|
|
||||||
|
### Wayland ###
|
||||||
|
# These settings are Wayland-specific. They have no effect when using X11
|
||||||
|
|
||||||
|
# Uncomment this if you want to let notications appear under fullscreen
|
||||||
|
# applications (default: overlay)
|
||||||
|
# layer = top
|
||||||
|
|
||||||
|
# Set this to true to use X11 output on Wayland.
|
||||||
|
force_xwayland = false
|
||||||
|
|
||||||
|
### Legacy
|
||||||
|
|
||||||
|
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||||
|
# This setting is provided for compatibility with older nVidia drivers that
|
||||||
|
# do not support RandR and using it on systems that support RandR is highly
|
||||||
|
# discouraged.
|
||||||
|
#
|
||||||
|
# By enabling this setting dunst will not be able to detect when a monitor
|
||||||
|
# is connected or disconnected which might break follow mode if the screen
|
||||||
|
# layout changes.
|
||||||
|
force_xinerama = false
|
||||||
|
|
||||||
|
### mouse
|
||||||
|
|
||||||
|
# Defines list of actions for each mouse event
|
||||||
|
# Possible values are:
|
||||||
|
# * none: Don't do anything.
|
||||||
|
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
||||||
|
# such action, open the context menu.
|
||||||
|
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
||||||
|
# ones, open the context menu.
|
||||||
|
# * close_current: Close current notification.
|
||||||
|
# * close_all: Close all notifications.
|
||||||
|
# * context: Open context menu for the notification.
|
||||||
|
# * context_all: Open context menu for all notifications.
|
||||||
|
# These values can be strung together for each mouse event, and
|
||||||
|
# will be executed in sequence.
|
||||||
|
mouse_left_click = close_current
|
||||||
|
mouse_middle_click = do_action, close_current
|
||||||
|
mouse_right_click = close_all
|
||||||
|
|
||||||
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
|
# to have a consistent behaviour across releases.
|
||||||
|
[experimental]
|
||||||
|
# Calculate the dpi to use on a per-monitor basis.
|
||||||
|
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||||
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
|
# using the resolution and physical size. This might be useful in setups
|
||||||
|
# where there are multiple screens with very different dpi values.
|
||||||
|
per_monitor_dpi = false
|
||||||
|
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
|
background = "{background}"
|
||||||
|
foreground = "{foreground}"
|
||||||
|
timeout = 10
|
||||||
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "{background}"
|
||||||
|
foreground = "{foreground}"
|
||||||
|
timeout = 10
|
||||||
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "{background}"
|
||||||
|
foreground = "{foreground}"
|
||||||
|
frame_color = "#ff0000"
|
||||||
|
timeout = 0
|
||||||
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
|
#default_icon = /path/to/icon
|
||||||
|
|
||||||
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
|
# override settings for certain messages.
|
||||||
|
#
|
||||||
|
# Messages can be matched by
|
||||||
|
# appname (discouraged, see desktop_entry)
|
||||||
|
# body
|
||||||
|
# category
|
||||||
|
# desktop_entry
|
||||||
|
# icon
|
||||||
|
# match_transient
|
||||||
|
# msg_urgency
|
||||||
|
# stack_tag
|
||||||
|
# summary
|
||||||
|
#
|
||||||
|
# and you can override the
|
||||||
|
# background
|
||||||
|
# foreground
|
||||||
|
# format
|
||||||
|
# frame_color
|
||||||
|
# fullscreen
|
||||||
|
# new_icon
|
||||||
|
# set_stack_tag
|
||||||
|
# set_transient
|
||||||
|
# set_category
|
||||||
|
# timeout
|
||||||
|
# urgency
|
||||||
|
# icon_position
|
||||||
|
# skip_display
|
||||||
|
# history_ignore
|
||||||
|
# action_name
|
||||||
|
# word_wrap
|
||||||
|
# ellipsize
|
||||||
|
# alignment
|
||||||
|
# hide_text
|
||||||
|
#
|
||||||
|
# Shell-like globbing will get expanded.
|
||||||
|
#
|
||||||
|
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
||||||
|
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
||||||
|
# the desktop-entry won't get localized.
|
||||||
|
#
|
||||||
|
# SCRIPTING
|
||||||
|
# You can specify a script that gets run when the rule matches by
|
||||||
|
# setting the "script" option.
|
||||||
|
# The script will be called as follows:
|
||||||
|
# script appname summary body icon urgency
|
||||||
|
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||||
|
#
|
||||||
|
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||||
|
# to find fitting options for rules.
|
||||||
|
|
||||||
|
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
||||||
|
# client
|
||||||
|
#[transient_disable]
|
||||||
|
# match_transient = yes
|
||||||
|
# set_transient = no
|
||||||
|
#
|
||||||
|
# Make the handling of transient notifications more strict by making them not
|
||||||
|
# be placed in history.
|
||||||
|
#[transient_history_ignore]
|
||||||
|
# match_transient = yes
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
# fullscreen values
|
||||||
|
# show: show the notifications, regardless if there is a fullscreen window opened
|
||||||
|
# delay: displays the new notification, if there is no fullscreen window active
|
||||||
|
# If the notification is already drawn, it won't get undrawn.
|
||||||
|
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
||||||
|
# withdrawn from screen again and will get delayed like a new notification
|
||||||
|
#[fullscreen_delay_everything]
|
||||||
|
# fullscreen = delay
|
||||||
|
#[fullscreen_show_critical]
|
||||||
|
# msg_urgency = critical
|
||||||
|
# fullscreen = show
|
||||||
|
|
||||||
|
#[espeak]
|
||||||
|
# summary = "*"
|
||||||
|
# script = dunst_espeak.sh
|
||||||
|
|
||||||
|
#[script-test]
|
||||||
|
# summary = "*script*"
|
||||||
|
# script = dunst_test.sh
|
||||||
|
|
||||||
|
#[ignore]
|
||||||
|
# # This notification will not be displayed
|
||||||
|
# summary = "foobar"
|
||||||
|
# skip_display = true
|
||||||
|
|
||||||
|
#[history-ignore]
|
||||||
|
# # This notification will not be saved in history
|
||||||
|
# summary = "foobar"
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
#[skip-display]
|
||||||
|
# # This notification will not be displayed, but will be included in the history
|
||||||
|
# summary = "foobar"
|
||||||
|
# skip_display = yes
|
||||||
|
|
||||||
|
#[signed_on]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = "*signed on*"
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[signed_off]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *signed off*
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[says]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *says*
|
||||||
|
# urgency = critical
|
||||||
|
#
|
||||||
|
#[twitter]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *twitter.com*
|
||||||
|
# urgency = normal
|
||||||
|
#
|
||||||
|
#[stack-volumes]
|
||||||
|
# appname = "some_volume_notifiers"
|
||||||
|
# set_stack_tag = "volume"
|
||||||
|
#
|
||||||
|
# vim: ft=cfg
|
||||||
48
.nethackrc
Normal file
48
.nethackrc
Normal file
|
|
@ -0,0 +1,48 @@
|
||||||
|
#OPTIONS=tile_file:tile32.bmp,tile_width:32,tile_height:32
|
||||||
|
OPTIONS=windowtype:curses
|
||||||
|
OPTIONS=symset:curses
|
||||||
|
|
||||||
|
OPTIONS=catname:maomao
|
||||||
|
OPTIONS=dogname:baowao
|
||||||
|
OPTIONS=fruit:Cockmeat Sandwich On Foccacia bar
|
||||||
|
OPTIONS=hilite_pile
|
||||||
|
OPTIONS=hilite_status:TRUE
|
||||||
|
OPTIONS=showexp
|
||||||
|
OPTIONS=showscore
|
||||||
|
OPTIONS=hitpointbar
|
||||||
|
OPTIONS=role:wizard
|
||||||
|
OPTIONS=race:human
|
||||||
|
OPTIONS=boulder:0
|
||||||
|
OPTIONS=msghistory:60
|
||||||
|
OPTIONS=msg_window:full
|
||||||
|
OPTIONS=perm_invent
|
||||||
|
OPTIONS=autopickup,pickup_types:?!/$="
|
||||||
|
|
||||||
|
OPTIONS=menucolors
|
||||||
|
MENUCOLOR="blessed"=green
|
||||||
|
MENUCOLOR="holy"=yellow
|
||||||
|
MENUCOLOR="cursed"=red
|
||||||
|
MENUCOLOR="uncursed"=cyan
|
||||||
|
MENUCOLOR="unholy"=brown
|
||||||
|
MENUCOLOR="cursed * (being worn)"=red&underline
|
||||||
|
|
||||||
|
OPTIONS=statushilites
|
||||||
|
OPTION=hilite_status: hitpoints/<30%/red/normal
|
||||||
|
OPTION=hilite_status: strength/down/red/up/green
|
||||||
|
OPTION=hilite_status: dexterity/down/red/up/green
|
||||||
|
OPTION=hilite_status: constitution/down/red/up/green
|
||||||
|
OPTION=hilite_status: intelligence/down/red/up/green
|
||||||
|
OPTION=hilite_status: wisdom/down/red/up/green
|
||||||
|
OPTION=hilite_status: charisma/down/red/up/green
|
||||||
|
OPTION=hilite_status: gold/down/red/up/green
|
||||||
|
OPTION=hilite_status: armor-class/down/green/up/red
|
||||||
|
OPTION=hilite_status: hitpoints-max/down/red/up/green
|
||||||
|
OPTION=hilite_status: power-max/down/red/up/green
|
||||||
|
OPTION=hilite_status: experience-level/down/red/up/green
|
||||||
|
OPTION=hilite_status: hunger/0/red/normal
|
||||||
|
OPTION=hilite_status: hunger/2/yellow/normal
|
||||||
|
OPTION=hilite_status: hunger/3/red/underline
|
||||||
|
OPTION=hilite_status: hunger/4/red/normal
|
||||||
|
OPTION=hilite_status: hunger/5/red/underline
|
||||||
|
OPTION=hilite_status: hunger/6/red/underline
|
||||||
|
|
||||||
12
.xinitrc
Executable file
12
.xinitrc
Executable file
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
/usr/bin/pipewire &
|
||||||
|
/usr/bin/pipewire-alsa &
|
||||||
|
/usr/bin/pipewire-pulse &
|
||||||
|
/usr/bin/wireplumber &
|
||||||
|
|
||||||
|
export GTK_IM_MODULE=fcitx
|
||||||
|
export QT_IM_MODULE=fcitx
|
||||||
|
export XMODIFIERS=@im=fcitx
|
||||||
|
fcitx5 -d
|
||||||
|
|
||||||
|
exec i3
|
||||||
9
.xsession
Normal file
9
.xsession
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
/usr/bin/pipewire &
|
||||||
|
/usr/bin/pipewire-alsa &
|
||||||
|
/usr/bin/pipewire-pulse &
|
||||||
|
/usr/bin/wireplumber &
|
||||||
|
|
||||||
|
export GTK_IM_MODULE=fcitx
|
||||||
|
export QT_IM_MODULE=fcitx
|
||||||
|
export XMODIFIERS=@im=fcitx
|
||||||
|
fcitx5 -d
|
||||||
Loading…
Reference in a new issue