Compare commits

...

3 Commits

Author SHA1 Message Date
kenji edfb9c49ea README: appended anki if not working 2025-11-26 17:28:39 -06:00
kenji a863bd3f1e hypr: fix test 2025-11-26 17:28:28 -06:00
kenji 90d26a6304 added tickrs 2025-11-26 17:28:18 -06:00
3 changed files with 138 additions and 0 deletions
+10
View File
@@ -38,3 +38,13 @@ Inside this directory, `.secrets` folder must be filled with the following:
vdirsyncer discover
vdirsyncer sync
```
Otherwise, modify `caldav` to your needs.
### Anki not launching
```bash
flatpak run --command=bash net.ankiweb.Anki
[📦 net.ankiweb.Anki ~]$ touch ~/.var/app/net.ankiweb.Anki/data/Anki2/gldriver6
[📦 net.ankiweb.Anki ~]$ echo software > ~/.var/app/net.ankiweb.Anki/data/Anki2/gldriver6
[📦 net.ankiweb.Anki ~]$ exit
```
+25
View File
@@ -21,3 +21,28 @@ source = ~/.config/hypr/autostart.conf
# Add any other personal Hyprland configuration below
# windowrule = workspace 5, class:qemu
# ######### Input method ##########
# See https://fcitx-im.org/wiki/Using_Fcitx_5_on_Wayland
#env = QT_IM_MODULE, fcitx
#env = XMODIFIERS, @im=fcitx
#env = SDL_IM_MODULE, fcitx
#env = GLFW_IM_MODULE, ibus
#env = INPUT_METHOD, fcitx
# ############ Wayland #############
env = ELECTRON_OZONE_PLATFORM_HINT,auto
######### Applications #########
env = XDG_DATA_DIRS,$HOME/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share
# ############ Themes #############
env = QT_QPA_PLATFORM, wayland
env = QT_QPA_PLATFORMTHEME, kde
env = XDG_MENU_PREFIX, plasma-
# ######## Wayland #########
# Tearing
# env = WLR_DRM_NO_ATOMIC, 1
# ?
# env = WLR_NO_HARDWARE_CURSORS, 1
+103
View File
@@ -0,0 +1,103 @@
---
# List of ticker symbols to start app with
symbols:
- SPY
- AMD
- NVDA
- GOOGL
- SLV
- BTC-USD
- AMZN
- AAPL
- MSFT
- TSLA
# Chart type to start app with
# Default is line
# Possible values: line, candle, kagi
chart_type: candle
# Use specified time frame when starting program and when new stocks are added
# Default is 1D
# Possible values: 1D, 1W, 1M, 3M, 6M, 1Y, 5Y
time_frame: 1D
# Interval to update data from API (seconds)
# Default is 1
update_interval: 1
# Enable pre / post market hours for graphs
enable_pre_post: true
# Hide help icon in top right
hide_help: true
# Hide previous close line on 1D chart
hide_prev_close: true
# Hide toggle block
hide_toggle: true
# Show volumes graph
show_volumes: true
# Show x-axis labels
show_x_labels: true
# Start in summary mode
summary: true
# Truncate pre market graphing to only 30 minutes prior to markets opening
trunc_pre: true
# Ticker options for Kagi charts
#
# A map of each ticker with reversal and/or price fields (both optional). If no
# entry is defined for a symbol, a default of 'close' price and 1% for 1D and 4%
# for non-1D timeframes is used. This can be updated in the GUI by pressing 'e'
#
# reversal can be supplied as a single value, or a map on time frame to give each
# time frame a different reversal amount
#
# reversal.type can be 'amount' or 'pct'
#
# price can be 'close' or 'high_low'
#
#kagi_options:
# SPY:
# reversal:
# type: amount
# value: 5.00
# price: close
# AMD:
# price: high_low
# TSLA:
# reversal:
# type: pct
# value: 0.08
# NVDA:
# reversal:
# 1D:
# type: pct
# value: 0.02
# 5Y:
# type: pct
# value: 0.10
# Apply a custom theme
#
# All colors are optional. If commented out / omitted, the color will get sourced
# from your terminal color scheme
#theme:
# background: '#403E41'
# gray: '#727072'
# profit: '#ADD977'
# loss: '#FA648A'
# text_normal: '#FCFCFA'
# text_primary: '#FFDA65'
# text_secondary: '#79DBEA'
# border_primary: '#FC9766'
# border_secondary: '#FCFCFA'
# border_axis: '#FC9766'
# highlight_focused: '#FC9766'
# highlight_unfocused: '#727072'