Skip to content

Commit

Permalink
crontab
Browse files Browse the repository at this point in the history
  • Loading branch information
nibazshab committed Dec 23, 2024
1 parent 422e811 commit de505bc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
17 changes: 17 additions & 0 deletions documents/linuxiss.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

本文主要记录 Arch Linux 相关的问题。内容收集自网络和 Arch Wiki,请自行甄别是否适用于其他版本的 Linux 操作系统

### crontab 定时任务

在 /var/spool/cron/crontabs/root 中写入任务,运行 `crond` 命令启动

定时规则如下所示,例如 `0 3,15 * * * sh /a.sh` 表示每天 3 点和 15 点,执行 `sh /a.sh` 命令

```console
* * * * *
- - - - -
| | | | |
| | | | +----- day of week (0 - 7) (Sunday=0 or 7)
| | | +---------- month (1 - 12)
| | +--------------- day of month (1 - 31)
| +-------------------- hour (0 - 23)
+------------------------- minute (0 - 59)
```

### Systemd 服务

系统级单元路径:
Expand Down
21 changes: 5 additions & 16 deletions documents/steam.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@

Value 公司发行的 Steam Deck 掌机使用基于 Arch Linux 所开发的 SteamOS 3 系统

## 个人资料展柜
### 个人资料展柜展示图片

### 上传精选艺术作品

在网页端上传,并在开发者模式的控制台中输入如下代码
打开网页版 Steam 页面,在 _个人资料 - 艺术作品_ 中点击 _上传艺术作品_,选中 _非游戏特定_ 后上传图片,随后打开开发者模式,在控制台中运行如下代码

```js
// 图像大小
Expand All @@ -18,23 +16,15 @@ $J('#image_width').val(1000).attr('id',''),$J('#image_height').val(1).attr('id',
v_trim=_=>{return _},$J('#title').val(' \n'+Array.from(Array(126),_=>'\t').join(''));
```

### 展柜中展示

选择 _精选艺术作品展柜_,选中刚刚上传的图片,由于隐藏了作品名称,只能看到一个不显眼的横杠,注意观察即可
在展柜中选择 _精选艺术作品展柜_,选中刚刚上传的图片即可(由于隐藏了作品名称,只能看到一个不显眼的横杠)

## 新家庭共享
### 新家庭共享

封禁连坐机制:只会封禁 _开挂者__开挂游戏的拥有者_,不会殃及家庭中的其他成员

免费游戏不会被共享

### 如何使某个游戏不共享到家庭?

在 Steam 的游戏界面上,点击 _管理_,将游戏 _标记为私密_ 即可

::: note 注
点击查看 Steam 中的 [拥有 VAC 封禁的大部分游戏](https://store.steampowered.com/search/?supportedlang=schinese%2Ctchinese%2Cjapanese%2Ckoreana%2Cthai%2Cbulgarian%2Cczech%2Cdanish%2Cgerman%2Cspanish%2Cenglish%2Cindonesian%2Citalian%2Cgreek%2Cfrench%2Clatam&category1=998&category2=8&hidef2p=1&ndl=1)
:::
依据官方 [拥有 VAC 封禁的游戏列表](https://store.steampowered.com/search/?category1=998&category2=8&hidef2p=1&ndl=1),如果不想让某个游戏共享到家庭,在 Steam 的该游戏界面上,点击 _管理_,将游戏 _标记为私密_ 即可

## Steam 令牌

Expand All @@ -44,7 +34,6 @@ v_trim=_=>{return _},$J('#title').val(' \n'+Array.from(Array(126),_=>'\t').join(

### 导出 Steam 二次验证令牌到 Bitwarden


::: tabs

@tab 方法一
Expand Down

0 comments on commit de505bc

Please sign in to comment.