Compare commits

...

3 Commits

Author SHA1 Message Date
ff7f782dbb Decrease screen backlight to 60% 2022-12-01 02:08:04 +01:00
fdd7290b8d Open URL by clicking on it in kitty 2022-11-30 23:43:58 +01:00
17465544df Copy nix files on init action in project-init 2022-11-30 15:08:48 +01:00
3 changed files with 7 additions and 3 deletions

View File

@@ -22,5 +22,5 @@ profile multihead-HDMI {
profile nomad { profile nomad {
output eDP-1 enable output eDP-1 enable
exec light -S 70 exec light -S 60
} }

View File

@@ -989,6 +989,9 @@ map kitty_mod+delete clear_terminal reset active
#: }}} #: }}}
# }}} # }}}
#
# Open URL by clicking on it
mouse_map left press ungrabbed,grabbed mouse_click_url
confirm_os_window_close 0 confirm_os_window_close 0

View File

@@ -52,11 +52,11 @@ fi
type=$1 type=$1
if [ "$type" = "git" ]; then if [ "$type" = "git" ]; then
copy_nix_files "flake" copy_nix_files "nix"
create_dir data create_dir data
create_dir src create_dir src
git_initialization git_initialization
direnv_integration "flake" direnv_integration "nix"
elif [ "$type" = "remote-git" ]; then elif [ "$type" = "remote-git" ]; then
touch README.org touch README.org
cp ~/Projects/devenv/LICENSE.md LICENSE.md cp ~/Projects/devenv/LICENSE.md LICENSE.md
@@ -77,6 +77,7 @@ elif [ "$type" = "src" ]; then
direnv_integration "nix" direnv_integration "nix"
elif [ "$type" = "init" ]; then elif [ "$type" = "init" ]; then
touch .project touch .project
copy_nix_files "nix"
direnv_integration "nix" direnv_integration "nix"
elif [ "$type" = "nix-ld" ]; then elif [ "$type" = "nix-ld" ]; then
copy_nix_files "nix-ld" copy_nix_files "nix-ld"